plugin

package
v0.13.6 Latest Latest
Warning

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

Go to latest
Published: Apr 2, 2024 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ActionType_name = map[int32]string{
		0: "GENERATE_ACTION",
		1: "KEEP_ACTION",
		2: "CREATE_ACTION",
		3: "DELETE_ACTION",
		4: "UPDATE_ACTION",
	}
	ActionType_value = map[string]int32{
		"GENERATE_ACTION": 0,
		"KEEP_ACTION":     1,
		"CREATE_ACTION":   2,
		"DELETE_ACTION":   3,
		"UPDATE_ACTION":   4,
	}
)

Enum value maps for ActionType.

View Source
var (
	TypeKind_name = map[int32]string{
		0:  "UNKNOWN_TYPE",
		1:  "DOUBLE_TYPE",
		2:  "FLOAT_TYPE",
		3:  "INT64_TYPE",
		4:  "UINT64_TYPE",
		5:  "INT32_TYPE",
		6:  "FIXED64_TYPE",
		7:  "FIXED32_TYPE",
		8:  "BOOL_TYPE",
		9:  "STRING_TYPE",
		10: "GROUP_TYPE",
		11: "MESSAGE_TYPE",
		12: "BYTES_TYPE",
		13: "UINT32_TYPE",
		14: "ENUM_TYPE",
		15: "SFIXED32_TYPE",
		16: "SFIXED64_TYPE",
		17: "SINT32_TYPE",
		18: "SINT64_TYPE",
	}
	TypeKind_value = map[string]int32{
		"UNKNOWN_TYPE":  0,
		"DOUBLE_TYPE":   1,
		"FLOAT_TYPE":    2,
		"INT64_TYPE":    3,
		"UINT64_TYPE":   4,
		"INT32_TYPE":    5,
		"FIXED64_TYPE":  6,
		"FIXED32_TYPE":  7,
		"BOOL_TYPE":     8,
		"STRING_TYPE":   9,
		"GROUP_TYPE":    10,
		"MESSAGE_TYPE":  11,
		"BYTES_TYPE":    12,
		"UINT32_TYPE":   13,
		"ENUM_TYPE":     14,
		"SFIXED32_TYPE": 15,
		"SFIXED64_TYPE": 16,
		"SINT32_TYPE":   17,
		"SINT64_TYPE":   18,
	}
)

Enum value maps for TypeKind.

View Source
var (
	ProtoCodeGeneratorResponse_Feature_name = map[int32]string{
		0: "FEATURE_NONE",
		1: "FEATURE_PROTO3_OPTIONAL",
		2: "FEATURE_SUPPORTS_EDITIONS",
	}
	ProtoCodeGeneratorResponse_Feature_value = map[string]int32{
		"FEATURE_NONE":              0,
		"FEATURE_PROTO3_OPTIONAL":   1,
		"FEATURE_SUPPORTS_EDITIONS": 2,
	}
)

Enum value maps for ProtoCodeGeneratorResponse_Feature.

View Source
var (
	ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic_name = map[int32]string{
		0: "NONE",
		1: "SET",
		2: "ALIAS",
	}
	ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic_value = map[string]int32{
		"NONE":  0,
		"SET":   1,
		"ALIAS": 2,
	}
)

Enum value maps for ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic.

View Source
var File_grpc_federation_generator_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ActionType

type ActionType int32
const (
	ActionType_GENERATE_ACTION ActionType = 0
	ActionType_KEEP_ACTION     ActionType = 1
	ActionType_CREATE_ACTION   ActionType = 2
	ActionType_DELETE_ACTION   ActionType = 3
	ActionType_UPDATE_ACTION   ActionType = 4
)

func (ActionType) Descriptor

func (ActionType) Descriptor() protoreflect.EnumDescriptor

func (ActionType) Enum

func (x ActionType) Enum() *ActionType

func (ActionType) EnumDescriptor deprecated

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

Deprecated: Use ActionType.Descriptor instead.

func (ActionType) Number

func (x ActionType) Number() protoreflect.EnumNumber

func (ActionType) String

func (x ActionType) String() string

func (ActionType) Type

type Argument

type Argument struct {
	Name  string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Type  *Type  `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value *Value `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
	// contains filtered or unexported fields
}

func (*Argument) CloneMessageVT

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

func (*Argument) CloneVT

func (m *Argument) CloneVT() *Argument

func (*Argument) Descriptor deprecated

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

Deprecated: Use Argument.ProtoReflect.Descriptor instead.

func (*Argument) EqualMessageVT

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

func (*Argument) EqualVT

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

func (*Argument) GetName

func (x *Argument) GetName() string

func (*Argument) GetType

func (x *Argument) GetType() *Type

func (*Argument) GetValue

func (x *Argument) GetValue() *Value

func (*Argument) MarshalToSizedBufferVT

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

func (*Argument) MarshalToSizedBufferVTStrict

func (m *Argument) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Argument) MarshalToVT

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

func (*Argument) MarshalToVTStrict

func (m *Argument) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Argument) MarshalVT

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

func (*Argument) MarshalVTStrict

func (m *Argument) MarshalVTStrict() (dAtA []byte, err error)

func (*Argument) ProtoMessage

func (*Argument) ProtoMessage()

func (*Argument) ProtoReflect

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

func (*Argument) Reset

func (x *Argument) Reset()

func (*Argument) SizeVT

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

func (*Argument) String

func (x *Argument) String() string

func (*Argument) UnmarshalVT

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

func (*Argument) UnmarshalVTUnsafe

func (m *Argument) UnmarshalVTUnsafe(dAtA []byte) error

type AutoBindField

type AutoBindField struct {
	VariableDefinitionId string `protobuf:"bytes,1,opt,name=variable_definition_id,json=variableDefinitionId,proto3" json:"variable_definition_id,omitempty"`
	FieldId              string `protobuf:"bytes,2,opt,name=field_id,json=fieldId,proto3" json:"field_id,omitempty"`
	// contains filtered or unexported fields
}

func (*AutoBindField) CloneMessageVT

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

func (*AutoBindField) CloneVT

func (m *AutoBindField) CloneVT() *AutoBindField

func (*AutoBindField) Descriptor deprecated

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

Deprecated: Use AutoBindField.ProtoReflect.Descriptor instead.

func (*AutoBindField) EqualMessageVT

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

func (*AutoBindField) EqualVT

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

func (*AutoBindField) GetFieldId

func (x *AutoBindField) GetFieldId() string

func (*AutoBindField) GetVariableDefinitionId

func (x *AutoBindField) GetVariableDefinitionId() string

func (*AutoBindField) MarshalToSizedBufferVT

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

func (*AutoBindField) MarshalToSizedBufferVTStrict

func (m *AutoBindField) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*AutoBindField) MarshalToVT

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

func (*AutoBindField) MarshalToVTStrict

func (m *AutoBindField) MarshalToVTStrict(dAtA []byte) (int, error)

func (*AutoBindField) MarshalVT

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

func (*AutoBindField) MarshalVTStrict

func (m *AutoBindField) MarshalVTStrict() (dAtA []byte, err error)

func (*AutoBindField) ProtoMessage

func (*AutoBindField) ProtoMessage()

func (*AutoBindField) ProtoReflect

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

func (*AutoBindField) Reset

func (x *AutoBindField) Reset()

func (*AutoBindField) SizeVT

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

func (*AutoBindField) String

func (x *AutoBindField) String() string

func (*AutoBindField) UnmarshalVT

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

func (*AutoBindField) UnmarshalVTUnsafe

func (m *AutoBindField) UnmarshalVTUnsafe(dAtA []byte) error

type BadRequest

type BadRequest struct {
	FieldViolations []*BadRequestFieldViolation `protobuf:"bytes,1,rep,name=field_violations,json=fieldViolations,proto3" json:"field_violations,omitempty"`
	// contains filtered or unexported fields
}

func (*BadRequest) CloneMessageVT

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

func (*BadRequest) CloneVT

func (m *BadRequest) CloneVT() *BadRequest

func (*BadRequest) Descriptor deprecated

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

Deprecated: Use BadRequest.ProtoReflect.Descriptor instead.

func (*BadRequest) EqualMessageVT

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

func (*BadRequest) EqualVT

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

func (*BadRequest) GetFieldViolations

func (x *BadRequest) GetFieldViolations() []*BadRequestFieldViolation

func (*BadRequest) MarshalToSizedBufferVT

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

func (*BadRequest) MarshalToSizedBufferVTStrict

func (m *BadRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*BadRequest) MarshalToVT

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

func (*BadRequest) MarshalToVTStrict

func (m *BadRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*BadRequest) MarshalVT

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

func (*BadRequest) MarshalVTStrict

func (m *BadRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*BadRequest) ProtoMessage

func (*BadRequest) ProtoMessage()

func (*BadRequest) ProtoReflect

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

func (*BadRequest) Reset

func (x *BadRequest) Reset()

func (*BadRequest) SizeVT

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

func (*BadRequest) String

func (x *BadRequest) String() string

func (*BadRequest) UnmarshalVT

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

func (*BadRequest) UnmarshalVTUnsafe

func (m *BadRequest) UnmarshalVTUnsafe(dAtA []byte) error

type BadRequestFieldViolation

type BadRequestFieldViolation struct {
	Field       *CELValue `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
	Description *CELValue `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*BadRequestFieldViolation) CloneMessageVT

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

func (*BadRequestFieldViolation) CloneVT

func (*BadRequestFieldViolation) Descriptor deprecated

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

Deprecated: Use BadRequestFieldViolation.ProtoReflect.Descriptor instead.

func (*BadRequestFieldViolation) EqualMessageVT

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

func (*BadRequestFieldViolation) EqualVT

func (*BadRequestFieldViolation) GetDescription

func (x *BadRequestFieldViolation) GetDescription() *CELValue

func (*BadRequestFieldViolation) GetField

func (x *BadRequestFieldViolation) GetField() *CELValue

func (*BadRequestFieldViolation) MarshalToSizedBufferVT

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

func (*BadRequestFieldViolation) MarshalToSizedBufferVTStrict

func (m *BadRequestFieldViolation) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*BadRequestFieldViolation) MarshalToVT

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

func (*BadRequestFieldViolation) MarshalToVTStrict

func (m *BadRequestFieldViolation) MarshalToVTStrict(dAtA []byte) (int, error)

func (*BadRequestFieldViolation) MarshalVT

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

func (*BadRequestFieldViolation) MarshalVTStrict

func (m *BadRequestFieldViolation) MarshalVTStrict() (dAtA []byte, err error)

func (*BadRequestFieldViolation) ProtoMessage

func (*BadRequestFieldViolation) ProtoMessage()

func (*BadRequestFieldViolation) ProtoReflect

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

func (*BadRequestFieldViolation) Reset

func (x *BadRequestFieldViolation) Reset()

func (*BadRequestFieldViolation) SizeVT

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

func (*BadRequestFieldViolation) String

func (x *BadRequestFieldViolation) String() string

func (*BadRequestFieldViolation) UnmarshalVT

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

func (*BadRequestFieldViolation) UnmarshalVTUnsafe

func (m *BadRequestFieldViolation) UnmarshalVTUnsafe(dAtA []byte) error

type CELFunction

type CELFunction struct {
	Name       string  `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Id         string  `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Args       []*Type `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"`
	Return     *Type   `protobuf:"bytes,4,opt,name=return,proto3" json:"return,omitempty"`
	ReceiverId string  `protobuf:"bytes,5,opt,name=receiver_id,json=receiverId,proto3" json:"receiver_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CELFunction) CloneMessageVT

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

func (*CELFunction) CloneVT

func (m *CELFunction) CloneVT() *CELFunction

func (*CELFunction) Descriptor deprecated

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

Deprecated: Use CELFunction.ProtoReflect.Descriptor instead.

func (*CELFunction) EqualMessageVT

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

func (*CELFunction) EqualVT

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

func (*CELFunction) GetArgs

func (x *CELFunction) GetArgs() []*Type

func (*CELFunction) GetId

func (x *CELFunction) GetId() string

func (*CELFunction) GetName

func (x *CELFunction) GetName() string

func (*CELFunction) GetReceiverId

func (x *CELFunction) GetReceiverId() string

func (*CELFunction) GetReturn

func (x *CELFunction) GetReturn() *Type

func (*CELFunction) MarshalToSizedBufferVT

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

func (*CELFunction) MarshalToSizedBufferVTStrict

func (m *CELFunction) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CELFunction) MarshalToVT

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

func (*CELFunction) MarshalToVTStrict

func (m *CELFunction) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CELFunction) MarshalVT

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

func (*CELFunction) MarshalVTStrict

func (m *CELFunction) MarshalVTStrict() (dAtA []byte, err error)

func (*CELFunction) ProtoMessage

func (*CELFunction) ProtoMessage()

func (*CELFunction) ProtoReflect

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

func (*CELFunction) Reset

func (x *CELFunction) Reset()

func (*CELFunction) SizeVT

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

func (*CELFunction) String

func (x *CELFunction) String() string

func (*CELFunction) UnmarshalVT

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

func (*CELFunction) UnmarshalVTUnsafe

func (m *CELFunction) UnmarshalVTUnsafe(dAtA []byte) error

type CELPlugin

type CELPlugin struct {
	Id          string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string         `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Description string         `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	Functions   []*CELFunction `protobuf:"bytes,4,rep,name=functions,proto3" json:"functions,omitempty"`
	// contains filtered or unexported fields
}

func (*CELPlugin) CloneMessageVT

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

func (*CELPlugin) CloneVT

func (m *CELPlugin) CloneVT() *CELPlugin

func (*CELPlugin) Descriptor deprecated

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

Deprecated: Use CELPlugin.ProtoReflect.Descriptor instead.

func (*CELPlugin) EqualMessageVT

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

func (*CELPlugin) EqualVT

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

func (*CELPlugin) GetDescription

func (x *CELPlugin) GetDescription() string

func (*CELPlugin) GetFunctions

func (x *CELPlugin) GetFunctions() []*CELFunction

func (*CELPlugin) GetId

func (x *CELPlugin) GetId() string

func (*CELPlugin) GetName

func (x *CELPlugin) GetName() string

func (*CELPlugin) MarshalToSizedBufferVT

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

func (*CELPlugin) MarshalToSizedBufferVTStrict

func (m *CELPlugin) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CELPlugin) MarshalToVT

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

func (*CELPlugin) MarshalToVTStrict

func (m *CELPlugin) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CELPlugin) MarshalVT

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

func (*CELPlugin) MarshalVTStrict

func (m *CELPlugin) MarshalVTStrict() (dAtA []byte, err error)

func (*CELPlugin) ProtoMessage

func (*CELPlugin) ProtoMessage()

func (*CELPlugin) ProtoReflect

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

func (*CELPlugin) Reset

func (x *CELPlugin) Reset()

func (*CELPlugin) SizeVT

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

func (*CELPlugin) String

func (x *CELPlugin) String() string

func (*CELPlugin) UnmarshalVT

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

func (*CELPlugin) UnmarshalVTUnsafe

func (m *CELPlugin) UnmarshalVTUnsafe(dAtA []byte) error

type CELValue

type CELValue struct {
	Expr string `protobuf:"bytes,1,opt,name=expr,proto3" json:"expr,omitempty"`
	Out  *Type  `protobuf:"bytes,2,opt,name=out,proto3" json:"out,omitempty"`
	// contains filtered or unexported fields
}

func (*CELValue) CloneMessageVT

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

func (*CELValue) CloneVT

func (m *CELValue) CloneVT() *CELValue

func (*CELValue) Descriptor deprecated

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

Deprecated: Use CELValue.ProtoReflect.Descriptor instead.

func (*CELValue) EqualMessageVT

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

func (*CELValue) EqualVT

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

func (*CELValue) GetExpr

func (x *CELValue) GetExpr() string

func (*CELValue) GetOut

func (x *CELValue) GetOut() *Type

func (*CELValue) MarshalToSizedBufferVT

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

func (*CELValue) MarshalToSizedBufferVTStrict

func (m *CELValue) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CELValue) MarshalToVT

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

func (*CELValue) MarshalToVTStrict

func (m *CELValue) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CELValue) MarshalVT

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

func (*CELValue) MarshalVTStrict

func (m *CELValue) MarshalVTStrict() (dAtA []byte, err error)

func (*CELValue) ProtoMessage

func (*CELValue) ProtoMessage()

func (*CELValue) ProtoReflect

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

func (*CELValue) Reset

func (x *CELValue) Reset()

func (*CELValue) SizeVT

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

func (*CELValue) String

func (x *CELValue) String() string

func (*CELValue) UnmarshalVT

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

func (*CELValue) UnmarshalVTUnsafe

func (m *CELValue) UnmarshalVTUnsafe(dAtA []byte) error

type CallExpr

type CallExpr struct {
	MethodId string               `protobuf:"bytes,1,opt,name=method_id,json=methodId,proto3" json:"method_id,omitempty"`
	Request  *Request             `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty"`
	Timeout  *durationpb.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	Retry    *RetryPolicy         `protobuf:"bytes,4,opt,name=retry,proto3" json:"retry,omitempty"`
	Errors   []*GRPCError         `protobuf:"bytes,5,rep,name=errors,proto3" json:"errors,omitempty"`
	// contains filtered or unexported fields
}

func (*CallExpr) CloneMessageVT

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

func (*CallExpr) CloneVT

func (m *CallExpr) CloneVT() *CallExpr

func (*CallExpr) Descriptor deprecated

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

Deprecated: Use CallExpr.ProtoReflect.Descriptor instead.

func (*CallExpr) EqualMessageVT

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

func (*CallExpr) EqualVT

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

func (*CallExpr) GetErrors added in v0.13.0

func (x *CallExpr) GetErrors() []*GRPCError

func (*CallExpr) GetMethodId

func (x *CallExpr) GetMethodId() string

func (*CallExpr) GetRequest

func (x *CallExpr) GetRequest() *Request

func (*CallExpr) GetRetry

func (x *CallExpr) GetRetry() *RetryPolicy

func (*CallExpr) GetTimeout

func (x *CallExpr) GetTimeout() *durationpb.Duration

func (*CallExpr) MarshalToSizedBufferVT

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

func (*CallExpr) MarshalToSizedBufferVTStrict

func (m *CallExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CallExpr) MarshalToVT

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

func (*CallExpr) MarshalToVTStrict

func (m *CallExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CallExpr) MarshalVT

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

func (*CallExpr) MarshalVTStrict

func (m *CallExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*CallExpr) ProtoMessage

func (*CallExpr) ProtoMessage()

func (*CallExpr) ProtoReflect

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

func (*CallExpr) Reset

func (x *CallExpr) Reset()

func (*CallExpr) SizeVT

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

func (*CallExpr) String

func (x *CallExpr) String() string

func (*CallExpr) UnmarshalVT

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

func (*CallExpr) UnmarshalVTUnsafe

func (m *CallExpr) UnmarshalVTUnsafe(dAtA []byte) error

type CodeGeneratorRequest

type CodeGeneratorRequest struct {
	Type                  ActionType                         `protobuf:"varint,1,opt,name=type,proto3,enum=grpc.federation.generator.plugin.ActionType" json:"type,omitempty"`
	ProtoPath             string                             `protobuf:"bytes,2,opt,name=proto_path,json=protoPath,proto3" json:"proto_path,omitempty"`
	OutDir                string                             `protobuf:"bytes,3,opt,name=out_dir,json=outDir,proto3" json:"out_dir,omitempty"`
	Files                 []*ProtoCodeGeneratorResponse_File `protobuf:"bytes,4,rep,name=files,proto3" json:"files,omitempty"`
	GrpcFederationFileIds []string                           `` /* 128-byte string literal not displayed */
	Reference             *Reference                         `protobuf:"bytes,6,opt,name=reference,proto3" json:"reference,omitempty"`
	// contains filtered or unexported fields
}

CodeGeneratorRequest.

func (*CodeGeneratorRequest) CloneMessageVT

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

func (*CodeGeneratorRequest) CloneVT

func (*CodeGeneratorRequest) Descriptor deprecated

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

Deprecated: Use CodeGeneratorRequest.ProtoReflect.Descriptor instead.

func (*CodeGeneratorRequest) EqualMessageVT

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

func (*CodeGeneratorRequest) EqualVT

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

func (*CodeGeneratorRequest) GetFiles

func (*CodeGeneratorRequest) GetGrpcFederationFileIds

func (x *CodeGeneratorRequest) GetGrpcFederationFileIds() []string

func (*CodeGeneratorRequest) GetOutDir

func (x *CodeGeneratorRequest) GetOutDir() string

func (*CodeGeneratorRequest) GetProtoPath

func (x *CodeGeneratorRequest) GetProtoPath() string

func (*CodeGeneratorRequest) GetReference

func (x *CodeGeneratorRequest) GetReference() *Reference

func (*CodeGeneratorRequest) GetType

func (x *CodeGeneratorRequest) GetType() ActionType

func (*CodeGeneratorRequest) MarshalToSizedBufferVT

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

func (*CodeGeneratorRequest) MarshalToSizedBufferVTStrict

func (m *CodeGeneratorRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CodeGeneratorRequest) MarshalToVT

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

func (*CodeGeneratorRequest) MarshalToVTStrict

func (m *CodeGeneratorRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CodeGeneratorRequest) MarshalVT

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

func (*CodeGeneratorRequest) MarshalVTStrict

func (m *CodeGeneratorRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*CodeGeneratorRequest) ProtoMessage

func (*CodeGeneratorRequest) ProtoMessage()

func (*CodeGeneratorRequest) ProtoReflect

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

func (*CodeGeneratorRequest) Reset

func (x *CodeGeneratorRequest) Reset()

func (*CodeGeneratorRequest) SizeVT

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

func (*CodeGeneratorRequest) String

func (x *CodeGeneratorRequest) String() string

func (*CodeGeneratorRequest) UnmarshalVT

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

func (*CodeGeneratorRequest) UnmarshalVTUnsafe

func (m *CodeGeneratorRequest) UnmarshalVTUnsafe(dAtA []byte) error

type ConcurrentVariableDefinitionGroup

type ConcurrentVariableDefinitionGroup struct {
	Starts []string `protobuf:"bytes,1,rep,name=starts,proto3" json:"starts,omitempty"`
	End    string   `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*ConcurrentVariableDefinitionGroup) CloneMessageVT

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

func (*ConcurrentVariableDefinitionGroup) CloneVT

func (*ConcurrentVariableDefinitionGroup) Descriptor deprecated

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

Deprecated: Use ConcurrentVariableDefinitionGroup.ProtoReflect.Descriptor instead.

func (*ConcurrentVariableDefinitionGroup) EqualMessageVT

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

func (*ConcurrentVariableDefinitionGroup) EqualVT

func (*ConcurrentVariableDefinitionGroup) GetEnd

func (*ConcurrentVariableDefinitionGroup) GetStarts

func (x *ConcurrentVariableDefinitionGroup) GetStarts() []string

func (*ConcurrentVariableDefinitionGroup) MarshalToSizedBufferVT

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

func (*ConcurrentVariableDefinitionGroup) MarshalToSizedBufferVTStrict

func (m *ConcurrentVariableDefinitionGroup) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ConcurrentVariableDefinitionGroup) MarshalToVT

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

func (*ConcurrentVariableDefinitionGroup) MarshalToVTStrict

func (m *ConcurrentVariableDefinitionGroup) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ConcurrentVariableDefinitionGroup) MarshalVT

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

func (*ConcurrentVariableDefinitionGroup) MarshalVTStrict

func (m *ConcurrentVariableDefinitionGroup) MarshalVTStrict() (dAtA []byte, err error)

func (*ConcurrentVariableDefinitionGroup) ProtoMessage

func (*ConcurrentVariableDefinitionGroup) ProtoMessage()

func (*ConcurrentVariableDefinitionGroup) ProtoReflect

func (*ConcurrentVariableDefinitionGroup) Reset

func (*ConcurrentVariableDefinitionGroup) SizeVT

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

func (*ConcurrentVariableDefinitionGroup) String

func (*ConcurrentVariableDefinitionGroup) UnmarshalVT

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

func (*ConcurrentVariableDefinitionGroup) UnmarshalVTUnsafe

func (m *ConcurrentVariableDefinitionGroup) UnmarshalVTUnsafe(dAtA []byte) error

type ConstValue

type ConstValue struct {
	Type   *Type    `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Double *float64 `protobuf:"fixed64,4,opt,name=double,proto3,oneof" json:"double,omitempty"`
	// repeated double literal values.
	Doubles []float64 `protobuf:"fixed64,5,rep,packed,name=doubles,proto3" json:"doubles,omitempty"`
	// float literal value.
	Float *float32 `protobuf:"fixed32,6,opt,name=float,proto3,oneof" json:"float,omitempty"`
	// repeated float literal values.
	Floats []float32 `protobuf:"fixed32,7,rep,packed,name=floats,proto3" json:"floats,omitempty"`
	// int32 literal value.
	Int32 *int32 `protobuf:"varint,8,opt,name=int32,proto3,oneof" json:"int32,omitempty"`
	// repeated int32 literal values.
	Int32S []int32 `protobuf:"varint,9,rep,packed,name=int32s,proto3" json:"int32s,omitempty"`
	// int64 literal value.
	Int64 *int64 `protobuf:"varint,10,opt,name=int64,proto3,oneof" json:"int64,omitempty"`
	// repeated int64 literal values.
	Int64S []int64 `protobuf:"varint,11,rep,packed,name=int64s,proto3" json:"int64s,omitempty"`
	// uint32 literal value.
	Uint32 *uint32 `protobuf:"varint,12,opt,name=uint32,proto3,oneof" json:"uint32,omitempty"`
	// repeated uint32 literal values.
	Uint32S []uint32 `protobuf:"varint,13,rep,packed,name=uint32s,proto3" json:"uint32s,omitempty"`
	// uint64 literal value.
	Uint64 *uint64 `protobuf:"varint,14,opt,name=uint64,proto3,oneof" json:"uint64,omitempty"`
	// repeated uint64 literal values.
	Uint64S []uint64 `protobuf:"varint,15,rep,packed,name=uint64s,proto3" json:"uint64s,omitempty"`
	// sint32 literal value.
	Sint32 *int32 `protobuf:"zigzag32,16,opt,name=sint32,proto3,oneof" json:"sint32,omitempty"`
	// repeated sint32 literal values.
	Sint32S []int32 `protobuf:"zigzag32,17,rep,packed,name=sint32s,proto3" json:"sint32s,omitempty"`
	// sint64 literal value.
	Sint64 *int64 `protobuf:"zigzag64,18,opt,name=sint64,proto3,oneof" json:"sint64,omitempty"`
	// repeated sint64 literal values.
	Sint64S []int64 `protobuf:"zigzag64,19,rep,packed,name=sint64s,proto3" json:"sint64s,omitempty"`
	// fixed32 literal value.
	Fixed32 *uint32 `protobuf:"fixed32,20,opt,name=fixed32,proto3,oneof" json:"fixed32,omitempty"`
	// repeated fixed32 literal values.
	Fixed32S []uint32 `protobuf:"fixed32,21,rep,packed,name=fixed32s,proto3" json:"fixed32s,omitempty"`
	// fixed64 literal value.
	Fixed64 *uint64 `protobuf:"fixed64,22,opt,name=fixed64,proto3,oneof" json:"fixed64,omitempty"`
	// repeated fixed64 literal values.
	Fixed64S []uint64 `protobuf:"fixed64,23,rep,packed,name=fixed64s,proto3" json:"fixed64s,omitempty"`
	// sfixed32 literal value.
	Sfixed32 *int32 `protobuf:"fixed32,24,opt,name=sfixed32,proto3,oneof" json:"sfixed32,omitempty"`
	// repeated sfixed32 literal values.
	Sfixed32S []int32 `protobuf:"fixed32,25,rep,packed,name=sfixed32s,proto3" json:"sfixed32s,omitempty"`
	// sfixed64 literal value.
	Sfixed64 *int64 `protobuf:"fixed64,26,opt,name=sfixed64,proto3,oneof" json:"sfixed64,omitempty"`
	// repeated sfixed64 literal values.
	Sfixed64S []int64 `protobuf:"fixed64,27,rep,packed,name=sfixed64s,proto3" json:"sfixed64s,omitempty"`
	// bool literal value.
	Bool *bool `protobuf:"varint,28,opt,name=bool,proto3,oneof" json:"bool,omitempty"`
	// repeated bool literal values.
	Bools []bool `protobuf:"varint,29,rep,packed,name=bools,proto3" json:"bools,omitempty"`
	// string literal value.
	String_ *string `protobuf:"bytes,30,opt,name=string,proto3,oneof" json:"string,omitempty"`
	// repeated string literal values.
	Strings []string `protobuf:"bytes,31,rep,name=strings,proto3" json:"strings,omitempty"`
	// bytes literal value.
	ByteString []byte `protobuf:"bytes,32,opt,name=byte_string,json=byteString,proto3,oneof" json:"byte_string,omitempty"`
	// repeated bytes literal values.
	ByteStrings [][]byte `protobuf:"bytes,33,rep,name=byte_strings,json=byteStrings,proto3" json:"byte_strings,omitempty"`
	// message literal value.
	Message *MessageValue `protobuf:"bytes,34,opt,name=message,proto3,oneof" json:"message,omitempty"`
	// repeated message literal values.
	Messages []*MessageValue `protobuf:"bytes,35,rep,name=messages,proto3" json:"messages,omitempty"`
	// enum literal value.
	Enum *string `protobuf:"bytes,36,opt,name=enum,proto3,oneof" json:"enum,omitempty"`
	// repeated enum literal values.
	Enums []string `protobuf:"bytes,37,rep,name=enums,proto3" json:"enums,omitempty"`
	// env literal value.
	Env *string `protobuf:"bytes,38,opt,name=env,proto3,oneof" json:"env,omitempty"`
	// repeated env literal values.
	Envs []string `protobuf:"bytes,39,rep,name=envs,proto3" json:"envs,omitempty"`
	// contains filtered or unexported fields
}

func (*ConstValue) CloneMessageVT

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

func (*ConstValue) CloneVT

func (m *ConstValue) CloneVT() *ConstValue

func (*ConstValue) Descriptor deprecated

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

Deprecated: Use ConstValue.ProtoReflect.Descriptor instead.

func (*ConstValue) EqualMessageVT

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

func (*ConstValue) EqualVT

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

func (*ConstValue) GetBool

func (x *ConstValue) GetBool() bool

func (*ConstValue) GetBools

func (x *ConstValue) GetBools() []bool

func (*ConstValue) GetByteString

func (x *ConstValue) GetByteString() []byte

func (*ConstValue) GetByteStrings

func (x *ConstValue) GetByteStrings() [][]byte

func (*ConstValue) GetDouble

func (x *ConstValue) GetDouble() float64

func (*ConstValue) GetDoubles

func (x *ConstValue) GetDoubles() []float64

func (*ConstValue) GetEnum

func (x *ConstValue) GetEnum() string

func (*ConstValue) GetEnums

func (x *ConstValue) GetEnums() []string

func (*ConstValue) GetEnv

func (x *ConstValue) GetEnv() string

func (*ConstValue) GetEnvs

func (x *ConstValue) GetEnvs() []string

func (*ConstValue) GetFixed32

func (x *ConstValue) GetFixed32() uint32

func (*ConstValue) GetFixed32S

func (x *ConstValue) GetFixed32S() []uint32

func (*ConstValue) GetFixed64

func (x *ConstValue) GetFixed64() uint64

func (*ConstValue) GetFixed64S

func (x *ConstValue) GetFixed64S() []uint64

func (*ConstValue) GetFloat

func (x *ConstValue) GetFloat() float32

func (*ConstValue) GetFloats

func (x *ConstValue) GetFloats() []float32

func (*ConstValue) GetInt32

func (x *ConstValue) GetInt32() int32

func (*ConstValue) GetInt32S

func (x *ConstValue) GetInt32S() []int32

func (*ConstValue) GetInt64

func (x *ConstValue) GetInt64() int64

func (*ConstValue) GetInt64S

func (x *ConstValue) GetInt64S() []int64

func (*ConstValue) GetMessage

func (x *ConstValue) GetMessage() *MessageValue

func (*ConstValue) GetMessages

func (x *ConstValue) GetMessages() []*MessageValue

func (*ConstValue) GetSfixed32

func (x *ConstValue) GetSfixed32() int32

func (*ConstValue) GetSfixed32S

func (x *ConstValue) GetSfixed32S() []int32

func (*ConstValue) GetSfixed64

func (x *ConstValue) GetSfixed64() int64

func (*ConstValue) GetSfixed64S

func (x *ConstValue) GetSfixed64S() []int64

func (*ConstValue) GetSint32

func (x *ConstValue) GetSint32() int32

func (*ConstValue) GetSint32S

func (x *ConstValue) GetSint32S() []int32

func (*ConstValue) GetSint64

func (x *ConstValue) GetSint64() int64

func (*ConstValue) GetSint64S

func (x *ConstValue) GetSint64S() []int64

func (*ConstValue) GetString_

func (x *ConstValue) GetString_() string

func (*ConstValue) GetStrings

func (x *ConstValue) GetStrings() []string

func (*ConstValue) GetType

func (x *ConstValue) GetType() *Type

func (*ConstValue) GetUint32

func (x *ConstValue) GetUint32() uint32

func (*ConstValue) GetUint32S

func (x *ConstValue) GetUint32S() []uint32

func (*ConstValue) GetUint64

func (x *ConstValue) GetUint64() uint64

func (*ConstValue) GetUint64S

func (x *ConstValue) GetUint64S() []uint64

func (*ConstValue) MarshalToSizedBufferVT

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

func (*ConstValue) MarshalToSizedBufferVTStrict

func (m *ConstValue) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ConstValue) MarshalToVT

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

func (*ConstValue) MarshalToVTStrict

func (m *ConstValue) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ConstValue) MarshalVT

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

func (*ConstValue) MarshalVTStrict

func (m *ConstValue) MarshalVTStrict() (dAtA []byte, err error)

func (*ConstValue) ProtoMessage

func (*ConstValue) ProtoMessage()

func (*ConstValue) ProtoReflect

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

func (*ConstValue) Reset

func (x *ConstValue) Reset()

func (*ConstValue) SizeVT

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

func (*ConstValue) String

func (x *ConstValue) String() string

func (*ConstValue) UnmarshalVT

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

func (*ConstValue) UnmarshalVTUnsafe

func (m *ConstValue) UnmarshalVTUnsafe(dAtA []byte) error

type Enum

type Enum struct {
	Id        string    `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string    `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	ValueIds  []string  `protobuf:"bytes,3,rep,name=value_ids,json=valueIds,proto3" json:"value_ids,omitempty"`
	MessageId string    `protobuf:"bytes,4,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	FileId    string    `protobuf:"bytes,5,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	Rule      *EnumRule `protobuf:"bytes,6,opt,name=rule,proto3" json:"rule,omitempty"`
	// contains filtered or unexported fields
}

func (*Enum) CloneMessageVT

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

func (*Enum) CloneVT

func (m *Enum) CloneVT() *Enum

func (*Enum) Descriptor deprecated

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

Deprecated: Use Enum.ProtoReflect.Descriptor instead.

func (*Enum) EqualMessageVT

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

func (*Enum) EqualVT

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

func (*Enum) GetFileId

func (x *Enum) GetFileId() string

func (*Enum) GetId

func (x *Enum) GetId() string

func (*Enum) GetMessageId

func (x *Enum) GetMessageId() string

func (*Enum) GetName

func (x *Enum) GetName() string

func (*Enum) GetRule

func (x *Enum) GetRule() *EnumRule

func (*Enum) GetValueIds

func (x *Enum) GetValueIds() []string

func (*Enum) MarshalToSizedBufferVT

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

func (*Enum) MarshalToSizedBufferVTStrict

func (m *Enum) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Enum) MarshalToVT

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

func (*Enum) MarshalToVTStrict

func (m *Enum) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Enum) MarshalVT

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

func (*Enum) MarshalVTStrict

func (m *Enum) MarshalVTStrict() (dAtA []byte, err error)

func (*Enum) ProtoMessage

func (*Enum) ProtoMessage()

func (*Enum) ProtoReflect

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

func (*Enum) Reset

func (x *Enum) Reset()

func (*Enum) SizeVT

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

func (*Enum) String

func (x *Enum) String() string

func (*Enum) UnmarshalVT

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

func (*Enum) UnmarshalVTUnsafe

func (m *Enum) UnmarshalVTUnsafe(dAtA []byte) error

type EnumRule

type EnumRule struct {
	AliasId string `protobuf:"bytes,1,opt,name=alias_id,json=aliasId,proto3" json:"alias_id,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumRule) CloneMessageVT

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

func (*EnumRule) CloneVT

func (m *EnumRule) CloneVT() *EnumRule

func (*EnumRule) Descriptor deprecated

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

Deprecated: Use EnumRule.ProtoReflect.Descriptor instead.

func (*EnumRule) EqualMessageVT

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

func (*EnumRule) EqualVT

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

func (*EnumRule) GetAliasId

func (x *EnumRule) GetAliasId() string

func (*EnumRule) MarshalToSizedBufferVT

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

func (*EnumRule) MarshalToSizedBufferVTStrict

func (m *EnumRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*EnumRule) MarshalToVT

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

func (*EnumRule) MarshalToVTStrict

func (m *EnumRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*EnumRule) MarshalVT

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

func (*EnumRule) MarshalVTStrict

func (m *EnumRule) MarshalVTStrict() (dAtA []byte, err error)

func (*EnumRule) ProtoMessage

func (*EnumRule) ProtoMessage()

func (*EnumRule) ProtoReflect

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

func (*EnumRule) Reset

func (x *EnumRule) Reset()

func (*EnumRule) SizeVT

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

func (*EnumRule) String

func (x *EnumRule) String() string

func (*EnumRule) UnmarshalVT

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

func (*EnumRule) UnmarshalVTUnsafe

func (m *EnumRule) UnmarshalVTUnsafe(dAtA []byte) error

type EnumValue

type EnumValue struct {
	Id     string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Value  string         `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	EnumId string         `protobuf:"bytes,3,opt,name=enum_id,json=enumId,proto3" json:"enum_id,omitempty"`
	Rule   *EnumValueRule `protobuf:"bytes,4,opt,name=rule,proto3" json:"rule,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumValue) CloneMessageVT

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

func (*EnumValue) CloneVT

func (m *EnumValue) CloneVT() *EnumValue

func (*EnumValue) Descriptor deprecated

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

Deprecated: Use EnumValue.ProtoReflect.Descriptor instead.

func (*EnumValue) EqualMessageVT

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

func (*EnumValue) EqualVT

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

func (*EnumValue) GetEnumId

func (x *EnumValue) GetEnumId() string

func (*EnumValue) GetId

func (x *EnumValue) GetId() string

func (*EnumValue) GetRule

func (x *EnumValue) GetRule() *EnumValueRule

func (*EnumValue) GetValue

func (x *EnumValue) GetValue() string

func (*EnumValue) MarshalToSizedBufferVT

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

func (*EnumValue) MarshalToSizedBufferVTStrict

func (m *EnumValue) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*EnumValue) MarshalToVT

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

func (*EnumValue) MarshalToVTStrict

func (m *EnumValue) MarshalToVTStrict(dAtA []byte) (int, error)

func (*EnumValue) MarshalVT

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

func (*EnumValue) MarshalVTStrict

func (m *EnumValue) MarshalVTStrict() (dAtA []byte, err error)

func (*EnumValue) ProtoMessage

func (*EnumValue) ProtoMessage()

func (*EnumValue) ProtoReflect

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

func (*EnumValue) Reset

func (x *EnumValue) Reset()

func (*EnumValue) SizeVT

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

func (*EnumValue) String

func (x *EnumValue) String() string

func (*EnumValue) UnmarshalVT

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

func (*EnumValue) UnmarshalVTUnsafe

func (m *EnumValue) UnmarshalVTUnsafe(dAtA []byte) error

type EnumValueRule

type EnumValueRule struct {
	Default  bool     `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
	AliasIds []string `protobuf:"bytes,2,rep,name=alias_ids,json=aliasIds,proto3" json:"alias_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*EnumValueRule) CloneMessageVT

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

func (*EnumValueRule) CloneVT

func (m *EnumValueRule) CloneVT() *EnumValueRule

func (*EnumValueRule) Descriptor deprecated

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

Deprecated: Use EnumValueRule.ProtoReflect.Descriptor instead.

func (*EnumValueRule) EqualMessageVT

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

func (*EnumValueRule) EqualVT

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

func (*EnumValueRule) GetAliasIds

func (x *EnumValueRule) GetAliasIds() []string

func (*EnumValueRule) GetDefault

func (x *EnumValueRule) GetDefault() bool

func (*EnumValueRule) MarshalToSizedBufferVT

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

func (*EnumValueRule) MarshalToSizedBufferVTStrict

func (m *EnumValueRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*EnumValueRule) MarshalToVT

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

func (*EnumValueRule) MarshalToVTStrict

func (m *EnumValueRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*EnumValueRule) MarshalVT

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

func (*EnumValueRule) MarshalVTStrict

func (m *EnumValueRule) MarshalVTStrict() (dAtA []byte, err error)

func (*EnumValueRule) ProtoMessage

func (*EnumValueRule) ProtoMessage()

func (*EnumValueRule) ProtoReflect

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

func (*EnumValueRule) Reset

func (x *EnumValueRule) Reset()

func (*EnumValueRule) SizeVT

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

func (*EnumValueRule) String

func (x *EnumValueRule) String() string

func (*EnumValueRule) UnmarshalVT

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

func (*EnumValueRule) UnmarshalVTUnsafe

func (m *EnumValueRule) UnmarshalVTUnsafe(dAtA []byte) error

type Field

type Field struct {
	Id        string     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string     `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Type      *Type      `protobuf:"bytes,3,opt,name=type,proto3" json:"type,omitempty"`
	OneofId   string     `protobuf:"bytes,4,opt,name=oneof_id,json=oneofId,proto3" json:"oneof_id,omitempty"`
	Rule      *FieldRule `protobuf:"bytes,5,opt,name=rule,proto3" json:"rule,omitempty"`
	MessageId string     `protobuf:"bytes,6,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Field) CloneMessageVT

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

func (*Field) CloneVT

func (m *Field) CloneVT() *Field

func (*Field) Descriptor deprecated

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

Deprecated: Use Field.ProtoReflect.Descriptor instead.

func (*Field) EqualMessageVT

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

func (*Field) EqualVT

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

func (*Field) GetId

func (x *Field) GetId() string

func (*Field) GetMessageId

func (x *Field) GetMessageId() string

func (*Field) GetName

func (x *Field) GetName() string

func (*Field) GetOneofId

func (x *Field) GetOneofId() string

func (*Field) GetRule

func (x *Field) GetRule() *FieldRule

func (*Field) GetType

func (x *Field) GetType() *Type

func (*Field) MarshalToSizedBufferVT

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

func (*Field) MarshalToSizedBufferVTStrict

func (m *Field) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Field) MarshalToVT

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

func (*Field) MarshalToVTStrict

func (m *Field) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Field) MarshalVT

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

func (*Field) MarshalVTStrict

func (m *Field) MarshalVTStrict() (dAtA []byte, err error)

func (*Field) ProtoMessage

func (*Field) ProtoMessage()

func (*Field) ProtoReflect

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

func (*Field) Reset

func (x *Field) Reset()

func (*Field) SizeVT

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

func (*Field) String

func (x *Field) String() string

func (*Field) UnmarshalVT

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

func (*Field) UnmarshalVTUnsafe

func (m *Field) UnmarshalVTUnsafe(dAtA []byte) error

type FieldOneofRule

type FieldOneofRule struct {
	If      *CELValue              `protobuf:"bytes,1,opt,name=if,proto3" json:"if,omitempty"`
	Default bool                   `protobuf:"varint,2,opt,name=default,proto3" json:"default,omitempty"`
	By      *CELValue              `protobuf:"bytes,3,opt,name=by,proto3" json:"by,omitempty"`
	DefSet  *VariableDefinitionSet `protobuf:"bytes,4,opt,name=def_set,json=defSet,proto3" json:"def_set,omitempty"`
	// contains filtered or unexported fields
}

func (*FieldOneofRule) CloneMessageVT

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

func (*FieldOneofRule) CloneVT

func (m *FieldOneofRule) CloneVT() *FieldOneofRule

func (*FieldOneofRule) Descriptor deprecated

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

Deprecated: Use FieldOneofRule.ProtoReflect.Descriptor instead.

func (*FieldOneofRule) EqualMessageVT

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

func (*FieldOneofRule) EqualVT

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

func (*FieldOneofRule) GetBy

func (x *FieldOneofRule) GetBy() *CELValue

func (*FieldOneofRule) GetDefSet added in v0.13.0

func (x *FieldOneofRule) GetDefSet() *VariableDefinitionSet

func (*FieldOneofRule) GetDefault

func (x *FieldOneofRule) GetDefault() bool

func (*FieldOneofRule) GetIf

func (x *FieldOneofRule) GetIf() *CELValue

func (*FieldOneofRule) MarshalToSizedBufferVT

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

func (*FieldOneofRule) MarshalToSizedBufferVTStrict

func (m *FieldOneofRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*FieldOneofRule) MarshalToVT

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

func (*FieldOneofRule) MarshalToVTStrict

func (m *FieldOneofRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*FieldOneofRule) MarshalVT

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

func (*FieldOneofRule) MarshalVTStrict

func (m *FieldOneofRule) MarshalVTStrict() (dAtA []byte, err error)

func (*FieldOneofRule) ProtoMessage

func (*FieldOneofRule) ProtoMessage()

func (*FieldOneofRule) ProtoReflect

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

func (*FieldOneofRule) Reset

func (x *FieldOneofRule) Reset()

func (*FieldOneofRule) SizeVT

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

func (*FieldOneofRule) String

func (x *FieldOneofRule) String() string

func (*FieldOneofRule) UnmarshalVT

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

func (*FieldOneofRule) UnmarshalVTUnsafe

func (m *FieldOneofRule) UnmarshalVTUnsafe(dAtA []byte) error

type FieldRule

type FieldRule struct {
	Value                 *Value          `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	CustomResolver        bool            `protobuf:"varint,2,opt,name=custom_resolver,json=customResolver,proto3" json:"custom_resolver,omitempty"`
	MessageCustomResolver bool            `` /* 127-byte string literal not displayed */
	AliasId               string          `protobuf:"bytes,4,opt,name=alias_id,json=aliasId,proto3" json:"alias_id,omitempty"`
	AutoBindField         *AutoBindField  `protobuf:"bytes,5,opt,name=auto_bind_field,json=autoBindField,proto3" json:"auto_bind_field,omitempty"`
	OneofRule             *FieldOneofRule `protobuf:"bytes,6,opt,name=oneof_rule,json=oneofRule,proto3" json:"oneof_rule,omitempty"`
	// contains filtered or unexported fields
}

func (*FieldRule) CloneMessageVT

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

func (*FieldRule) CloneVT

func (m *FieldRule) CloneVT() *FieldRule

func (*FieldRule) Descriptor deprecated

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

Deprecated: Use FieldRule.ProtoReflect.Descriptor instead.

func (*FieldRule) EqualMessageVT

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

func (*FieldRule) EqualVT

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

func (*FieldRule) GetAliasId

func (x *FieldRule) GetAliasId() string

func (*FieldRule) GetAutoBindField

func (x *FieldRule) GetAutoBindField() *AutoBindField

func (*FieldRule) GetCustomResolver

func (x *FieldRule) GetCustomResolver() bool

func (*FieldRule) GetMessageCustomResolver

func (x *FieldRule) GetMessageCustomResolver() bool

func (*FieldRule) GetOneofRule

func (x *FieldRule) GetOneofRule() *FieldOneofRule

func (*FieldRule) GetValue

func (x *FieldRule) GetValue() *Value

func (*FieldRule) MarshalToSizedBufferVT

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

func (*FieldRule) MarshalToSizedBufferVTStrict

func (m *FieldRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*FieldRule) MarshalToVT

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

func (*FieldRule) MarshalToVTStrict

func (m *FieldRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*FieldRule) MarshalVT

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

func (*FieldRule) MarshalVTStrict

func (m *FieldRule) MarshalVTStrict() (dAtA []byte, err error)

func (*FieldRule) ProtoMessage

func (*FieldRule) ProtoMessage()

func (*FieldRule) ProtoReflect

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

func (*FieldRule) Reset

func (x *FieldRule) Reset()

func (*FieldRule) SizeVT

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

func (*FieldRule) String

func (x *FieldRule) String() string

func (*FieldRule) UnmarshalVT

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

func (*FieldRule) UnmarshalVTUnsafe

func (m *FieldRule) UnmarshalVTUnsafe(dAtA []byte) error

type File

type File struct {
	Id            string     `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Package       *Package   `protobuf:"bytes,2,opt,name=package,proto3" json:"package,omitempty"`
	GoPackage     *GoPackage `protobuf:"bytes,3,opt,name=go_package,json=goPackage,proto3" json:"go_package,omitempty"`
	Name          string     `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	ServiceIds    []string   `protobuf:"bytes,5,rep,name=service_ids,json=serviceIds,proto3" json:"service_ids,omitempty"`
	MessageIds    []string   `protobuf:"bytes,6,rep,name=message_ids,json=messageIds,proto3" json:"message_ids,omitempty"`
	EnumIds       []string   `protobuf:"bytes,7,rep,name=enum_ids,json=enumIds,proto3" json:"enum_ids,omitempty"`
	CelPluginIds  []string   `protobuf:"bytes,8,rep,name=cel_plugin_ids,json=celPluginIds,proto3" json:"cel_plugin_ids,omitempty"`
	ImportFileIds []string   `protobuf:"bytes,9,rep,name=import_file_ids,json=importFileIds,proto3" json:"import_file_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*File) CloneMessageVT

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

func (*File) CloneVT

func (m *File) CloneVT() *File

func (*File) Descriptor deprecated

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

Deprecated: Use File.ProtoReflect.Descriptor instead.

func (*File) EqualMessageVT

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

func (*File) EqualVT

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

func (*File) GetCelPluginIds

func (x *File) GetCelPluginIds() []string

func (*File) GetEnumIds

func (x *File) GetEnumIds() []string

func (*File) GetGoPackage

func (x *File) GetGoPackage() *GoPackage

func (*File) GetId

func (x *File) GetId() string

func (*File) GetImportFileIds added in v0.13.1

func (x *File) GetImportFileIds() []string

func (*File) GetMessageIds

func (x *File) GetMessageIds() []string

func (*File) GetName

func (x *File) GetName() string

func (*File) GetPackage

func (x *File) GetPackage() *Package

func (*File) GetServiceIds

func (x *File) GetServiceIds() []string

func (*File) MarshalToSizedBufferVT

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

func (*File) MarshalToSizedBufferVTStrict

func (m *File) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*File) MarshalToVT

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

func (*File) MarshalToVTStrict

func (m *File) MarshalToVTStrict(dAtA []byte) (int, error)

func (*File) MarshalVT

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

func (*File) MarshalVTStrict

func (m *File) MarshalVTStrict() (dAtA []byte, err error)

func (*File) ProtoMessage

func (*File) ProtoMessage()

func (*File) ProtoReflect

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

func (*File) Reset

func (x *File) Reset()

func (*File) SizeVT

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

func (*File) String

func (x *File) String() string

func (*File) UnmarshalVT

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

func (*File) UnmarshalVTUnsafe

func (m *File) UnmarshalVTUnsafe(dAtA []byte) error

type GRPCError added in v0.13.0

type GRPCError struct {
	DefSet  *VariableDefinitionSet `protobuf:"bytes,1,opt,name=def_set,json=defSet,proto3" json:"def_set,omitempty"`
	If      *CELValue              `protobuf:"bytes,2,opt,name=if,proto3" json:"if,omitempty"`
	Code    code.Code              `protobuf:"varint,3,opt,name=code,proto3,enum=google.rpc.Code" json:"code,omitempty"`
	Message string                 `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	Details []*GRPCErrorDetail     `protobuf:"bytes,5,rep,name=details,proto3" json:"details,omitempty"`
	Ignore  bool                   `protobuf:"varint,6,opt,name=ignore,proto3" json:"ignore,omitempty"`
	// contains filtered or unexported fields
}

func (*GRPCError) CloneMessageVT added in v0.13.0

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

func (*GRPCError) CloneVT added in v0.13.0

func (m *GRPCError) CloneVT() *GRPCError

func (*GRPCError) Descriptor deprecated added in v0.13.0

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

Deprecated: Use GRPCError.ProtoReflect.Descriptor instead.

func (*GRPCError) EqualMessageVT added in v0.13.0

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

func (*GRPCError) EqualVT added in v0.13.0

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

func (*GRPCError) GetCode added in v0.13.0

func (x *GRPCError) GetCode() code.Code

func (*GRPCError) GetDefSet added in v0.13.0

func (x *GRPCError) GetDefSet() *VariableDefinitionSet

func (*GRPCError) GetDetails added in v0.13.0

func (x *GRPCError) GetDetails() []*GRPCErrorDetail

func (*GRPCError) GetIf added in v0.13.0

func (x *GRPCError) GetIf() *CELValue

func (*GRPCError) GetIgnore added in v0.13.0

func (x *GRPCError) GetIgnore() bool

func (*GRPCError) GetMessage added in v0.13.0

func (x *GRPCError) GetMessage() string

func (*GRPCError) MarshalToSizedBufferVT added in v0.13.0

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

func (*GRPCError) MarshalToSizedBufferVTStrict added in v0.13.0

func (m *GRPCError) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GRPCError) MarshalToVT added in v0.13.0

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

func (*GRPCError) MarshalToVTStrict added in v0.13.0

func (m *GRPCError) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GRPCError) MarshalVT added in v0.13.0

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

func (*GRPCError) MarshalVTStrict added in v0.13.0

func (m *GRPCError) MarshalVTStrict() (dAtA []byte, err error)

func (*GRPCError) ProtoMessage added in v0.13.0

func (*GRPCError) ProtoMessage()

func (*GRPCError) ProtoReflect added in v0.13.0

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

func (*GRPCError) Reset added in v0.13.0

func (x *GRPCError) Reset()

func (*GRPCError) SizeVT added in v0.13.0

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

func (*GRPCError) String added in v0.13.0

func (x *GRPCError) String() string

func (*GRPCError) UnmarshalVT added in v0.13.0

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

func (*GRPCError) UnmarshalVTUnsafe added in v0.13.0

func (m *GRPCError) UnmarshalVTUnsafe(dAtA []byte) error

type GRPCErrorDetail added in v0.13.0

type GRPCErrorDetail struct {
	DefSet               *VariableDefinitionSet `protobuf:"bytes,1,opt,name=def_set,json=defSet,proto3" json:"def_set,omitempty"`
	If                   *CELValue              `protobuf:"bytes,2,opt,name=if,proto3" json:"if,omitempty"`
	Messages             *VariableDefinitionSet `protobuf:"bytes,3,opt,name=messages,proto3" json:"messages,omitempty"`
	PreconditionFailures []*PreconditionFailure `protobuf:"bytes,4,rep,name=precondition_failures,json=preconditionFailures,proto3" json:"precondition_failures,omitempty"`
	BadRequests          []*BadRequest          `protobuf:"bytes,5,rep,name=bad_requests,json=badRequests,proto3" json:"bad_requests,omitempty"`
	LocalizedMessages    []*LocalizedMessage    `protobuf:"bytes,6,rep,name=localized_messages,json=localizedMessages,proto3" json:"localized_messages,omitempty"`
	// contains filtered or unexported fields
}

func (*GRPCErrorDetail) CloneMessageVT added in v0.13.0

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

func (*GRPCErrorDetail) CloneVT added in v0.13.0

func (m *GRPCErrorDetail) CloneVT() *GRPCErrorDetail

func (*GRPCErrorDetail) Descriptor deprecated added in v0.13.0

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

Deprecated: Use GRPCErrorDetail.ProtoReflect.Descriptor instead.

func (*GRPCErrorDetail) EqualMessageVT added in v0.13.0

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

func (*GRPCErrorDetail) EqualVT added in v0.13.0

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

func (*GRPCErrorDetail) GetBadRequests added in v0.13.0

func (x *GRPCErrorDetail) GetBadRequests() []*BadRequest

func (*GRPCErrorDetail) GetDefSet added in v0.13.0

func (x *GRPCErrorDetail) GetDefSet() *VariableDefinitionSet

func (*GRPCErrorDetail) GetIf added in v0.13.0

func (x *GRPCErrorDetail) GetIf() *CELValue

func (*GRPCErrorDetail) GetLocalizedMessages added in v0.13.0

func (x *GRPCErrorDetail) GetLocalizedMessages() []*LocalizedMessage

func (*GRPCErrorDetail) GetMessages added in v0.13.0

func (x *GRPCErrorDetail) GetMessages() *VariableDefinitionSet

func (*GRPCErrorDetail) GetPreconditionFailures added in v0.13.0

func (x *GRPCErrorDetail) GetPreconditionFailures() []*PreconditionFailure

func (*GRPCErrorDetail) MarshalToSizedBufferVT added in v0.13.0

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

func (*GRPCErrorDetail) MarshalToSizedBufferVTStrict added in v0.13.0

func (m *GRPCErrorDetail) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GRPCErrorDetail) MarshalToVT added in v0.13.0

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

func (*GRPCErrorDetail) MarshalToVTStrict added in v0.13.0

func (m *GRPCErrorDetail) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GRPCErrorDetail) MarshalVT added in v0.13.0

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

func (*GRPCErrorDetail) MarshalVTStrict added in v0.13.0

func (m *GRPCErrorDetail) MarshalVTStrict() (dAtA []byte, err error)

func (*GRPCErrorDetail) ProtoMessage added in v0.13.0

func (*GRPCErrorDetail) ProtoMessage()

func (*GRPCErrorDetail) ProtoReflect added in v0.13.0

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

func (*GRPCErrorDetail) Reset added in v0.13.0

func (x *GRPCErrorDetail) Reset()

func (*GRPCErrorDetail) SizeVT added in v0.13.0

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

func (*GRPCErrorDetail) String added in v0.13.0

func (x *GRPCErrorDetail) String() string

func (*GRPCErrorDetail) UnmarshalVT added in v0.13.0

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

func (*GRPCErrorDetail) UnmarshalVTUnsafe added in v0.13.0

func (m *GRPCErrorDetail) UnmarshalVTUnsafe(dAtA []byte) error

type GoPackage

type GoPackage struct {
	Name       string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ImportPath string `protobuf:"bytes,2,opt,name=import_path,json=importPath,proto3" json:"import_path,omitempty"`
	AliasName  string `protobuf:"bytes,3,opt,name=alias_name,json=aliasName,proto3" json:"alias_name,omitempty"`
	// contains filtered or unexported fields
}

func (*GoPackage) CloneMessageVT

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

func (*GoPackage) CloneVT

func (m *GoPackage) CloneVT() *GoPackage

func (*GoPackage) Descriptor deprecated

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

Deprecated: Use GoPackage.ProtoReflect.Descriptor instead.

func (*GoPackage) EqualMessageVT

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

func (*GoPackage) EqualVT

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

func (*GoPackage) GetAliasName

func (x *GoPackage) GetAliasName() string

func (*GoPackage) GetImportPath

func (x *GoPackage) GetImportPath() string

func (*GoPackage) GetName

func (x *GoPackage) GetName() string

func (*GoPackage) MarshalToSizedBufferVT

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

func (*GoPackage) MarshalToSizedBufferVTStrict

func (m *GoPackage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*GoPackage) MarshalToVT

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

func (*GoPackage) MarshalToVTStrict

func (m *GoPackage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*GoPackage) MarshalVT

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

func (*GoPackage) MarshalVTStrict

func (m *GoPackage) MarshalVTStrict() (dAtA []byte, err error)

func (*GoPackage) ProtoMessage

func (*GoPackage) ProtoMessage()

func (*GoPackage) ProtoReflect

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

func (*GoPackage) Reset

func (x *GoPackage) Reset()

func (*GoPackage) SizeVT

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

func (*GoPackage) String

func (x *GoPackage) String() string

func (*GoPackage) UnmarshalVT

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

func (*GoPackage) UnmarshalVTUnsafe

func (m *GoPackage) UnmarshalVTUnsafe(dAtA []byte) error

type Iterator

type Iterator struct {
	Name     string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	SourceId string `protobuf:"bytes,2,opt,name=source_id,json=sourceId,proto3" json:"source_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Iterator) CloneMessageVT

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

func (*Iterator) CloneVT

func (m *Iterator) CloneVT() *Iterator

func (*Iterator) Descriptor deprecated

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

Deprecated: Use Iterator.ProtoReflect.Descriptor instead.

func (*Iterator) EqualMessageVT

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

func (*Iterator) EqualVT

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

func (*Iterator) GetName

func (x *Iterator) GetName() string

func (*Iterator) GetSourceId

func (x *Iterator) GetSourceId() string

func (*Iterator) MarshalToSizedBufferVT

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

func (*Iterator) MarshalToSizedBufferVTStrict

func (m *Iterator) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Iterator) MarshalToVT

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

func (*Iterator) MarshalToVTStrict

func (m *Iterator) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Iterator) MarshalVT

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

func (*Iterator) MarshalVTStrict

func (m *Iterator) MarshalVTStrict() (dAtA []byte, err error)

func (*Iterator) ProtoMessage

func (*Iterator) ProtoMessage()

func (*Iterator) ProtoReflect

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

func (*Iterator) Reset

func (x *Iterator) Reset()

func (*Iterator) SizeVT

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

func (*Iterator) String

func (x *Iterator) String() string

func (*Iterator) UnmarshalVT

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

func (*Iterator) UnmarshalVTUnsafe

func (m *Iterator) UnmarshalVTUnsafe(dAtA []byte) error

type LocalizedMessage

type LocalizedMessage struct {
	Locale  string    `protobuf:"bytes,1,opt,name=locale,proto3" json:"locale,omitempty"`
	Message *CELValue `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*LocalizedMessage) CloneMessageVT

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

func (*LocalizedMessage) CloneVT

func (m *LocalizedMessage) CloneVT() *LocalizedMessage

func (*LocalizedMessage) Descriptor deprecated

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

Deprecated: Use LocalizedMessage.ProtoReflect.Descriptor instead.

func (*LocalizedMessage) EqualMessageVT

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

func (*LocalizedMessage) EqualVT

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

func (*LocalizedMessage) GetLocale

func (x *LocalizedMessage) GetLocale() string

func (*LocalizedMessage) GetMessage

func (x *LocalizedMessage) GetMessage() *CELValue

func (*LocalizedMessage) MarshalToSizedBufferVT

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

func (*LocalizedMessage) MarshalToSizedBufferVTStrict

func (m *LocalizedMessage) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*LocalizedMessage) MarshalToVT

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

func (*LocalizedMessage) MarshalToVTStrict

func (m *LocalizedMessage) MarshalToVTStrict(dAtA []byte) (int, error)

func (*LocalizedMessage) MarshalVT

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

func (*LocalizedMessage) MarshalVTStrict

func (m *LocalizedMessage) MarshalVTStrict() (dAtA []byte, err error)

func (*LocalizedMessage) ProtoMessage

func (*LocalizedMessage) ProtoMessage()

func (*LocalizedMessage) ProtoReflect

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

func (*LocalizedMessage) Reset

func (x *LocalizedMessage) Reset()

func (*LocalizedMessage) SizeVT

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

func (*LocalizedMessage) String

func (x *LocalizedMessage) String() string

func (*LocalizedMessage) UnmarshalVT

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

func (*LocalizedMessage) UnmarshalVTUnsafe

func (m *LocalizedMessage) UnmarshalVTUnsafe(dAtA []byte) error

type MapExpr

type MapExpr struct {
	Iterator *Iterator        `protobuf:"bytes,1,opt,name=iterator,proto3" json:"iterator,omitempty"`
	Expr     *MapIteratorExpr `protobuf:"bytes,2,opt,name=expr,proto3" json:"expr,omitempty"`
	// contains filtered or unexported fields
}

func (*MapExpr) CloneMessageVT

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

func (*MapExpr) CloneVT

func (m *MapExpr) CloneVT() *MapExpr

func (*MapExpr) Descriptor deprecated

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

Deprecated: Use MapExpr.ProtoReflect.Descriptor instead.

func (*MapExpr) EqualMessageVT

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

func (*MapExpr) EqualVT

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

func (*MapExpr) GetExpr

func (x *MapExpr) GetExpr() *MapIteratorExpr

func (*MapExpr) GetIterator

func (x *MapExpr) GetIterator() *Iterator

func (*MapExpr) MarshalToSizedBufferVT

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

func (*MapExpr) MarshalToSizedBufferVTStrict

func (m *MapExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MapExpr) MarshalToVT

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

func (*MapExpr) MarshalToVTStrict

func (m *MapExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MapExpr) MarshalVT

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

func (*MapExpr) MarshalVTStrict

func (m *MapExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*MapExpr) ProtoMessage

func (*MapExpr) ProtoMessage()

func (*MapExpr) ProtoReflect

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

func (*MapExpr) Reset

func (x *MapExpr) Reset()

func (*MapExpr) SizeVT

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

func (*MapExpr) String

func (x *MapExpr) String() string

func (*MapExpr) UnmarshalVT

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

func (*MapExpr) UnmarshalVTUnsafe

func (m *MapExpr) UnmarshalVTUnsafe(dAtA []byte) error

type MapIteratorExpr

type MapIteratorExpr struct {
	Type *Type `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// Types that are assignable to Expr:
	//
	//	*MapIteratorExpr_By
	//	*MapIteratorExpr_Message
	Expr isMapIteratorExpr_Expr `protobuf_oneof:"expr"`
	// contains filtered or unexported fields
}

func (*MapIteratorExpr) CloneMessageVT

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

func (*MapIteratorExpr) CloneVT

func (m *MapIteratorExpr) CloneVT() *MapIteratorExpr

func (*MapIteratorExpr) Descriptor deprecated

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

Deprecated: Use MapIteratorExpr.ProtoReflect.Descriptor instead.

func (*MapIteratorExpr) EqualMessageVT

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

func (*MapIteratorExpr) EqualVT

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

func (*MapIteratorExpr) GetBy

func (x *MapIteratorExpr) GetBy() *CELValue

func (*MapIteratorExpr) GetExpr

func (m *MapIteratorExpr) GetExpr() isMapIteratorExpr_Expr

func (*MapIteratorExpr) GetMessage

func (x *MapIteratorExpr) GetMessage() *MessageExpr

func (*MapIteratorExpr) GetType

func (x *MapIteratorExpr) GetType() *Type

func (*MapIteratorExpr) MarshalToSizedBufferVT

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

func (*MapIteratorExpr) MarshalToSizedBufferVTStrict

func (m *MapIteratorExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr) MarshalToVT

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

func (*MapIteratorExpr) MarshalToVTStrict

func (m *MapIteratorExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr) MarshalVT

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

func (*MapIteratorExpr) MarshalVTStrict

func (m *MapIteratorExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*MapIteratorExpr) ProtoMessage

func (*MapIteratorExpr) ProtoMessage()

func (*MapIteratorExpr) ProtoReflect

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

func (*MapIteratorExpr) Reset

func (x *MapIteratorExpr) Reset()

func (*MapIteratorExpr) SizeVT

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

func (*MapIteratorExpr) String

func (x *MapIteratorExpr) String() string

func (*MapIteratorExpr) UnmarshalVT

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

func (*MapIteratorExpr) UnmarshalVTUnsafe

func (m *MapIteratorExpr) UnmarshalVTUnsafe(dAtA []byte) error

type MapIteratorExpr_By

type MapIteratorExpr_By struct {
	By *CELValue `protobuf:"bytes,2,opt,name=by,proto3,oneof"`
}

func (*MapIteratorExpr_By) CloneVT

func (m *MapIteratorExpr_By) CloneVT() isMapIteratorExpr_Expr

func (*MapIteratorExpr_By) EqualVT

func (this *MapIteratorExpr_By) EqualVT(thatIface isMapIteratorExpr_Expr) bool

func (*MapIteratorExpr_By) MarshalToSizedBufferVT

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

func (*MapIteratorExpr_By) MarshalToSizedBufferVTStrict

func (m *MapIteratorExpr_By) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr_By) MarshalToVT

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

func (*MapIteratorExpr_By) MarshalToVTStrict

func (m *MapIteratorExpr_By) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr_By) SizeVT

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

type MapIteratorExpr_Message

type MapIteratorExpr_Message struct {
	Message *MessageExpr `protobuf:"bytes,3,opt,name=message,proto3,oneof"`
}

func (*MapIteratorExpr_Message) CloneVT

func (m *MapIteratorExpr_Message) CloneVT() isMapIteratorExpr_Expr

func (*MapIteratorExpr_Message) EqualVT

func (this *MapIteratorExpr_Message) EqualVT(thatIface isMapIteratorExpr_Expr) bool

func (*MapIteratorExpr_Message) MarshalToSizedBufferVT

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

func (*MapIteratorExpr_Message) MarshalToSizedBufferVTStrict

func (m *MapIteratorExpr_Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr_Message) MarshalToVT

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

func (*MapIteratorExpr_Message) MarshalToVTStrict

func (m *MapIteratorExpr_Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MapIteratorExpr_Message) SizeVT

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

type Message

type Message struct {
	Id               string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name             string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	IsMapEntry       bool         `protobuf:"varint,3,opt,name=is_map_entry,json=isMapEntry,proto3" json:"is_map_entry,omitempty"`
	FileId           string       `protobuf:"bytes,4,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	ParentMessageId  string       `protobuf:"bytes,5,opt,name=parent_message_id,json=parentMessageId,proto3" json:"parent_message_id,omitempty"`
	NestedMessageIds []string     `protobuf:"bytes,6,rep,name=nested_message_ids,json=nestedMessageIds,proto3" json:"nested_message_ids,omitempty"`
	EnumIds          []string     `protobuf:"bytes,7,rep,name=enum_ids,json=enumIds,proto3" json:"enum_ids,omitempty"`
	FieldIds         []string     `protobuf:"bytes,8,rep,name=field_ids,json=fieldIds,proto3" json:"field_ids,omitempty"`
	OneofIds         []string     `protobuf:"bytes,9,rep,name=oneof_ids,json=oneofIds,proto3" json:"oneof_ids,omitempty"`
	Rule             *MessageRule `protobuf:"bytes,10,opt,name=rule,proto3" json:"rule,omitempty"`
	// contains filtered or unexported fields
}

func (*Message) CloneMessageVT

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

func (*Message) CloneVT

func (m *Message) CloneVT() *Message

func (*Message) Descriptor deprecated

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

Deprecated: Use Message.ProtoReflect.Descriptor instead.

func (*Message) EqualMessageVT

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

func (*Message) EqualVT

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

func (*Message) GetEnumIds

func (x *Message) GetEnumIds() []string

func (*Message) GetFieldIds

func (x *Message) GetFieldIds() []string

func (*Message) GetFileId

func (x *Message) GetFileId() string

func (*Message) GetId

func (x *Message) GetId() string

func (*Message) GetIsMapEntry

func (x *Message) GetIsMapEntry() bool

func (*Message) GetName

func (x *Message) GetName() string

func (*Message) GetNestedMessageIds

func (x *Message) GetNestedMessageIds() []string

func (*Message) GetOneofIds

func (x *Message) GetOneofIds() []string

func (*Message) GetParentMessageId

func (x *Message) GetParentMessageId() string

func (*Message) GetRule

func (x *Message) GetRule() *MessageRule

func (*Message) MarshalToSizedBufferVT

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

func (*Message) MarshalToSizedBufferVTStrict

func (m *Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Message) MarshalToVT

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

func (*Message) MarshalToVTStrict

func (m *Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Message) MarshalVT

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

func (*Message) MarshalVTStrict

func (m *Message) MarshalVTStrict() (dAtA []byte, err error)

func (*Message) ProtoMessage

func (*Message) ProtoMessage()

func (*Message) ProtoReflect

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

func (*Message) Reset

func (x *Message) Reset()

func (*Message) SizeVT

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

func (*Message) String

func (x *Message) String() string

func (*Message) UnmarshalVT

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

func (*Message) UnmarshalVTUnsafe

func (m *Message) UnmarshalVTUnsafe(dAtA []byte) error

type MessageDependencyGraph

type MessageDependencyGraph struct {
	Id    string                        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Roots []*MessageDependencyGraphNode `protobuf:"bytes,2,rep,name=roots,proto3" json:"roots,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageDependencyGraph) CloneMessageVT

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

func (*MessageDependencyGraph) CloneVT

func (*MessageDependencyGraph) Descriptor deprecated

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

Deprecated: Use MessageDependencyGraph.ProtoReflect.Descriptor instead.

func (*MessageDependencyGraph) EqualMessageVT

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

func (*MessageDependencyGraph) EqualVT

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

func (*MessageDependencyGraph) GetId

func (x *MessageDependencyGraph) GetId() string

func (*MessageDependencyGraph) GetRoots

func (*MessageDependencyGraph) MarshalToSizedBufferVT

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

func (*MessageDependencyGraph) MarshalToSizedBufferVTStrict

func (m *MessageDependencyGraph) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageDependencyGraph) MarshalToVT

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

func (*MessageDependencyGraph) MarshalToVTStrict

func (m *MessageDependencyGraph) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageDependencyGraph) MarshalVT

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

func (*MessageDependencyGraph) MarshalVTStrict

func (m *MessageDependencyGraph) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageDependencyGraph) ProtoMessage

func (*MessageDependencyGraph) ProtoMessage()

func (*MessageDependencyGraph) ProtoReflect

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

func (*MessageDependencyGraph) Reset

func (x *MessageDependencyGraph) Reset()

func (*MessageDependencyGraph) SizeVT

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

func (*MessageDependencyGraph) String

func (x *MessageDependencyGraph) String() string

func (*MessageDependencyGraph) UnmarshalVT

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

func (*MessageDependencyGraph) UnmarshalVTUnsafe

func (m *MessageDependencyGraph) UnmarshalVTUnsafe(dAtA []byte) error

type MessageDependencyGraphNode

type MessageDependencyGraphNode struct {
	Children             []*MessageDependencyGraphNode `protobuf:"bytes,1,rep,name=children,proto3" json:"children,omitempty"`
	BaseMessageId        string                        `protobuf:"bytes,2,opt,name=base_message_id,json=baseMessageId,proto3" json:"base_message_id,omitempty"`
	VariableDefinitionId string                        `protobuf:"bytes,3,opt,name=variable_definition_id,json=variableDefinitionId,proto3" json:"variable_definition_id,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageDependencyGraphNode) CloneMessageVT

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

func (*MessageDependencyGraphNode) CloneVT

func (*MessageDependencyGraphNode) Descriptor deprecated

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

Deprecated: Use MessageDependencyGraphNode.ProtoReflect.Descriptor instead.

func (*MessageDependencyGraphNode) EqualMessageVT

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

func (*MessageDependencyGraphNode) EqualVT

func (*MessageDependencyGraphNode) GetBaseMessageId

func (x *MessageDependencyGraphNode) GetBaseMessageId() string

func (*MessageDependencyGraphNode) GetChildren

func (*MessageDependencyGraphNode) GetVariableDefinitionId

func (x *MessageDependencyGraphNode) GetVariableDefinitionId() string

func (*MessageDependencyGraphNode) MarshalToSizedBufferVT

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

func (*MessageDependencyGraphNode) MarshalToSizedBufferVTStrict

func (m *MessageDependencyGraphNode) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageDependencyGraphNode) MarshalToVT

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

func (*MessageDependencyGraphNode) MarshalToVTStrict

func (m *MessageDependencyGraphNode) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageDependencyGraphNode) MarshalVT

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

func (*MessageDependencyGraphNode) MarshalVTStrict

func (m *MessageDependencyGraphNode) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageDependencyGraphNode) ProtoMessage

func (*MessageDependencyGraphNode) ProtoMessage()

func (*MessageDependencyGraphNode) ProtoReflect

func (*MessageDependencyGraphNode) Reset

func (x *MessageDependencyGraphNode) Reset()

func (*MessageDependencyGraphNode) SizeVT

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

func (*MessageDependencyGraphNode) String

func (x *MessageDependencyGraphNode) String() string

func (*MessageDependencyGraphNode) UnmarshalVT

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

func (*MessageDependencyGraphNode) UnmarshalVTUnsafe

func (m *MessageDependencyGraphNode) UnmarshalVTUnsafe(dAtA []byte) error

type MessageExpr

type MessageExpr struct {
	MessageId string      `protobuf:"bytes,1,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	Args      []*Argument `protobuf:"bytes,2,rep,name=args,proto3" json:"args,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageExpr) CloneMessageVT

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

func (*MessageExpr) CloneVT

func (m *MessageExpr) CloneVT() *MessageExpr

func (*MessageExpr) Descriptor deprecated

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

Deprecated: Use MessageExpr.ProtoReflect.Descriptor instead.

func (*MessageExpr) EqualMessageVT

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

func (*MessageExpr) EqualVT

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

func (*MessageExpr) GetArgs

func (x *MessageExpr) GetArgs() []*Argument

func (*MessageExpr) GetMessageId

func (x *MessageExpr) GetMessageId() string

func (*MessageExpr) MarshalToSizedBufferVT

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

func (*MessageExpr) MarshalToSizedBufferVTStrict

func (m *MessageExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageExpr) MarshalToVT

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

func (*MessageExpr) MarshalToVTStrict

func (m *MessageExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageExpr) MarshalVT

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

func (*MessageExpr) MarshalVTStrict

func (m *MessageExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageExpr) ProtoMessage

func (*MessageExpr) ProtoMessage()

func (*MessageExpr) ProtoReflect

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

func (*MessageExpr) Reset

func (x *MessageExpr) Reset()

func (*MessageExpr) SizeVT

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

func (*MessageExpr) String

func (x *MessageExpr) String() string

func (*MessageExpr) UnmarshalVT

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

func (*MessageExpr) UnmarshalVTUnsafe

func (m *MessageExpr) UnmarshalVTUnsafe(dAtA []byte) error

type MessageFieldValue

type MessageFieldValue struct {
	Field string `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"`
	// double literal value.
	Double *float64 `protobuf:"fixed64,3,opt,name=double,proto3,oneof" json:"double,omitempty"`
	// repeated double literal values.
	Doubles []float64 `protobuf:"fixed64,4,rep,packed,name=doubles,proto3" json:"doubles,omitempty"`
	// float literal value.
	Float *float32 `protobuf:"fixed32,5,opt,name=float,proto3,oneof" json:"float,omitempty"`
	// repeated float literal values.
	Floats []float32 `protobuf:"fixed32,6,rep,packed,name=floats,proto3" json:"floats,omitempty"`
	// int32 literal value.
	Int32 *int32 `protobuf:"varint,7,opt,name=int32,proto3,oneof" json:"int32,omitempty"`
	// repeated int32 literal values.
	Int32S []int32 `protobuf:"varint,8,rep,packed,name=int32s,proto3" json:"int32s,omitempty"`
	// int64 literal value.
	Int64 *int64 `protobuf:"varint,9,opt,name=int64,proto3,oneof" json:"int64,omitempty"`
	// repeated int64 literal values.
	Int64S []int64 `protobuf:"varint,10,rep,packed,name=int64s,proto3" json:"int64s,omitempty"`
	// uint32 literal value.
	Uint32 *uint32 `protobuf:"varint,11,opt,name=uint32,proto3,oneof" json:"uint32,omitempty"`
	// repeated uint32 literal values.
	Uint32S []uint32 `protobuf:"varint,12,rep,packed,name=uint32s,proto3" json:"uint32s,omitempty"`
	// uint64 literal value.
	Uint64 *uint64 `protobuf:"varint,13,opt,name=uint64,proto3,oneof" json:"uint64,omitempty"`
	// repeated uint64 literal values.
	Uint64S []uint64 `protobuf:"varint,14,rep,packed,name=uint64s,proto3" json:"uint64s,omitempty"`
	// sint32 literal value.
	Sint32 *int32 `protobuf:"zigzag32,15,opt,name=sint32,proto3,oneof" json:"sint32,omitempty"`
	// repeated sint32 literal values.
	Sint32S []int32 `protobuf:"zigzag32,16,rep,packed,name=sint32s,proto3" json:"sint32s,omitempty"`
	// sint64 literal value.
	Sint64 *int64 `protobuf:"zigzag64,17,opt,name=sint64,proto3,oneof" json:"sint64,omitempty"`
	// repeated sint64 literal values.
	Sint64S []int64 `protobuf:"zigzag64,18,rep,packed,name=sint64s,proto3" json:"sint64s,omitempty"`
	// fixed32 literal value.
	Fixed32 *uint32 `protobuf:"fixed32,19,opt,name=fixed32,proto3,oneof" json:"fixed32,omitempty"`
	// repeated fixed32 literal values.
	Fixed32S []uint32 `protobuf:"fixed32,20,rep,packed,name=fixed32s,proto3" json:"fixed32s,omitempty"`
	// fixed64 literal value.
	Fixed64 *uint64 `protobuf:"fixed64,21,opt,name=fixed64,proto3,oneof" json:"fixed64,omitempty"`
	// repeated fixed64 literal values.
	Fixed64S []uint64 `protobuf:"fixed64,22,rep,packed,name=fixed64s,proto3" json:"fixed64s,omitempty"`
	// sfixed32 literal value.
	Sfixed32 *int32 `protobuf:"fixed32,23,opt,name=sfixed32,proto3,oneof" json:"sfixed32,omitempty"`
	// repeated sfixed32 literal values.
	Sfixed32S []int32 `protobuf:"fixed32,24,rep,packed,name=sfixed32s,proto3" json:"sfixed32s,omitempty"`
	// sfixed64 literal value.
	Sfixed64 *int64 `protobuf:"fixed64,25,opt,name=sfixed64,proto3,oneof" json:"sfixed64,omitempty"`
	// repeated sfixed64 literal values.
	Sfixed64S []int64 `protobuf:"fixed64,26,rep,packed,name=sfixed64s,proto3" json:"sfixed64s,omitempty"`
	// bool literal value.
	Bool *bool `protobuf:"varint,27,opt,name=bool,proto3,oneof" json:"bool,omitempty"`
	// repeated bool literal values.
	Bools []bool `protobuf:"varint,28,rep,packed,name=bools,proto3" json:"bools,omitempty"`
	// string literal value.
	String_ *string `protobuf:"bytes,29,opt,name=string,proto3,oneof" json:"string,omitempty"`
	// repeated string literal values.
	Strings []string `protobuf:"bytes,30,rep,name=strings,proto3" json:"strings,omitempty"`
	// bytes literal value.
	ByteString []byte `protobuf:"bytes,31,opt,name=byte_string,json=byteString,proto3,oneof" json:"byte_string,omitempty"`
	// repeated bytes literal values.
	ByteStrings [][]byte `protobuf:"bytes,32,rep,name=byte_strings,json=byteStrings,proto3" json:"byte_strings,omitempty"`
	// message literal value.
	Message *MessageValue `protobuf:"bytes,33,opt,name=message,proto3,oneof" json:"message,omitempty"`
	// repeated message literal values.
	Messages []*MessageValue `protobuf:"bytes,34,rep,name=messages,proto3" json:"messages,omitempty"`
	// enum literal value.
	Enum *string `protobuf:"bytes,35,opt,name=enum,proto3,oneof" json:"enum,omitempty"`
	// repeated enum literal values.
	Enums []string `protobuf:"bytes,36,rep,name=enums,proto3" json:"enums,omitempty"`
	// env literal value.
	Env *string `protobuf:"bytes,37,opt,name=env,proto3,oneof" json:"env,omitempty"`
	// repeated env literal values.
	Envs []string `protobuf:"bytes,38,rep,name=envs,proto3" json:"envs,omitempty"`
	// contains filtered or unexported fields
}

MessageFieldValue represents message's field.

func (*MessageFieldValue) CloneMessageVT

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

func (*MessageFieldValue) CloneVT

func (m *MessageFieldValue) CloneVT() *MessageFieldValue

func (*MessageFieldValue) Descriptor deprecated

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

Deprecated: Use MessageFieldValue.ProtoReflect.Descriptor instead.

func (*MessageFieldValue) EqualMessageVT

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

func (*MessageFieldValue) EqualVT

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

func (*MessageFieldValue) GetBool

func (x *MessageFieldValue) GetBool() bool

func (*MessageFieldValue) GetBools

func (x *MessageFieldValue) GetBools() []bool

func (*MessageFieldValue) GetByteString

func (x *MessageFieldValue) GetByteString() []byte

func (*MessageFieldValue) GetByteStrings

func (x *MessageFieldValue) GetByteStrings() [][]byte

func (*MessageFieldValue) GetDouble

func (x *MessageFieldValue) GetDouble() float64

func (*MessageFieldValue) GetDoubles

func (x *MessageFieldValue) GetDoubles() []float64

func (*MessageFieldValue) GetEnum

func (x *MessageFieldValue) GetEnum() string

func (*MessageFieldValue) GetEnums

func (x *MessageFieldValue) GetEnums() []string

func (*MessageFieldValue) GetEnv

func (x *MessageFieldValue) GetEnv() string

func (*MessageFieldValue) GetEnvs

func (x *MessageFieldValue) GetEnvs() []string

func (*MessageFieldValue) GetField

func (x *MessageFieldValue) GetField() string

func (*MessageFieldValue) GetFixed32

func (x *MessageFieldValue) GetFixed32() uint32

func (*MessageFieldValue) GetFixed32S

func (x *MessageFieldValue) GetFixed32S() []uint32

func (*MessageFieldValue) GetFixed64

func (x *MessageFieldValue) GetFixed64() uint64

func (*MessageFieldValue) GetFixed64S

func (x *MessageFieldValue) GetFixed64S() []uint64

func (*MessageFieldValue) GetFloat

func (x *MessageFieldValue) GetFloat() float32

func (*MessageFieldValue) GetFloats

func (x *MessageFieldValue) GetFloats() []float32

func (*MessageFieldValue) GetInt32

func (x *MessageFieldValue) GetInt32() int32

func (*MessageFieldValue) GetInt32S

func (x *MessageFieldValue) GetInt32S() []int32

func (*MessageFieldValue) GetInt64

func (x *MessageFieldValue) GetInt64() int64

func (*MessageFieldValue) GetInt64S

func (x *MessageFieldValue) GetInt64S() []int64

func (*MessageFieldValue) GetMessage

func (x *MessageFieldValue) GetMessage() *MessageValue

func (*MessageFieldValue) GetMessages

func (x *MessageFieldValue) GetMessages() []*MessageValue

func (*MessageFieldValue) GetSfixed32

func (x *MessageFieldValue) GetSfixed32() int32

func (*MessageFieldValue) GetSfixed32S

func (x *MessageFieldValue) GetSfixed32S() []int32

func (*MessageFieldValue) GetSfixed64

func (x *MessageFieldValue) GetSfixed64() int64

func (*MessageFieldValue) GetSfixed64S

func (x *MessageFieldValue) GetSfixed64S() []int64

func (*MessageFieldValue) GetSint32

func (x *MessageFieldValue) GetSint32() int32

func (*MessageFieldValue) GetSint32S

func (x *MessageFieldValue) GetSint32S() []int32

func (*MessageFieldValue) GetSint64

func (x *MessageFieldValue) GetSint64() int64

func (*MessageFieldValue) GetSint64S

func (x *MessageFieldValue) GetSint64S() []int64

func (*MessageFieldValue) GetString_

func (x *MessageFieldValue) GetString_() string

func (*MessageFieldValue) GetStrings

func (x *MessageFieldValue) GetStrings() []string

func (*MessageFieldValue) GetUint32

func (x *MessageFieldValue) GetUint32() uint32

func (*MessageFieldValue) GetUint32S

func (x *MessageFieldValue) GetUint32S() []uint32

func (*MessageFieldValue) GetUint64

func (x *MessageFieldValue) GetUint64() uint64

func (*MessageFieldValue) GetUint64S

func (x *MessageFieldValue) GetUint64S() []uint64

func (*MessageFieldValue) MarshalToSizedBufferVT

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

func (*MessageFieldValue) MarshalToSizedBufferVTStrict

func (m *MessageFieldValue) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageFieldValue) MarshalToVT

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

func (*MessageFieldValue) MarshalToVTStrict

func (m *MessageFieldValue) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageFieldValue) MarshalVT

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

func (*MessageFieldValue) MarshalVTStrict

func (m *MessageFieldValue) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageFieldValue) ProtoMessage

func (*MessageFieldValue) ProtoMessage()

func (*MessageFieldValue) ProtoReflect

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

func (*MessageFieldValue) Reset

func (x *MessageFieldValue) Reset()

func (*MessageFieldValue) SizeVT

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

func (*MessageFieldValue) String

func (x *MessageFieldValue) String() string

func (*MessageFieldValue) UnmarshalVT

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

func (*MessageFieldValue) UnmarshalVTUnsafe

func (m *MessageFieldValue) UnmarshalVTUnsafe(dAtA []byte) error

type MessageRule

type MessageRule struct {
	MessageArgumentId string                 `protobuf:"bytes,1,opt,name=message_argument_id,json=messageArgumentId,proto3" json:"message_argument_id,omitempty"`
	CustomResolver    bool                   `protobuf:"varint,2,opt,name=custom_resolver,json=customResolver,proto3" json:"custom_resolver,omitempty"`
	AliasId           string                 `protobuf:"bytes,3,opt,name=alias_id,json=aliasId,proto3" json:"alias_id,omitempty"`
	DefSet            *VariableDefinitionSet `protobuf:"bytes,4,opt,name=def_set,json=defSet,proto3" json:"def_set,omitempty"`
	// contains filtered or unexported fields
}

func (*MessageRule) CloneMessageVT

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

func (*MessageRule) CloneVT

func (m *MessageRule) CloneVT() *MessageRule

func (*MessageRule) Descriptor deprecated

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

Deprecated: Use MessageRule.ProtoReflect.Descriptor instead.

func (*MessageRule) EqualMessageVT

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

func (*MessageRule) EqualVT

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

func (*MessageRule) GetAliasId

func (x *MessageRule) GetAliasId() string

func (*MessageRule) GetCustomResolver

func (x *MessageRule) GetCustomResolver() bool

func (*MessageRule) GetDefSet added in v0.13.0

func (x *MessageRule) GetDefSet() *VariableDefinitionSet

func (*MessageRule) GetMessageArgumentId

func (x *MessageRule) GetMessageArgumentId() string

func (*MessageRule) MarshalToSizedBufferVT

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

func (*MessageRule) MarshalToSizedBufferVTStrict

func (m *MessageRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageRule) MarshalToVT

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

func (*MessageRule) MarshalToVTStrict

func (m *MessageRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageRule) MarshalVT

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

func (*MessageRule) MarshalVTStrict

func (m *MessageRule) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageRule) ProtoMessage

func (*MessageRule) ProtoMessage()

func (*MessageRule) ProtoReflect

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

func (*MessageRule) Reset

func (x *MessageRule) Reset()

func (*MessageRule) SizeVT

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

func (*MessageRule) String

func (x *MessageRule) String() string

func (*MessageRule) UnmarshalVT

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

func (*MessageRule) UnmarshalVTUnsafe

func (m *MessageRule) UnmarshalVTUnsafe(dAtA []byte) error

type MessageValue

type MessageValue struct {

	// name specify the message name to be referred to by FQDN. format is `<package-name>.<message-name>`.
	// <package-name> can be omitted when referring to messages in the same package.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// fields represents message's fields.
	Fields []*MessageFieldValue `protobuf:"bytes,2,rep,name=fields,proto3" json:"fields,omitempty"`
	// contains filtered or unexported fields
}

MessageValue represents message literal.

func (*MessageValue) CloneMessageVT

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

func (*MessageValue) CloneVT

func (m *MessageValue) CloneVT() *MessageValue

func (*MessageValue) Descriptor deprecated

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

Deprecated: Use MessageValue.ProtoReflect.Descriptor instead.

func (*MessageValue) EqualMessageVT

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

func (*MessageValue) EqualVT

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

func (*MessageValue) GetFields

func (x *MessageValue) GetFields() []*MessageFieldValue

func (*MessageValue) GetName

func (x *MessageValue) GetName() string

func (*MessageValue) MarshalToSizedBufferVT

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

func (*MessageValue) MarshalToSizedBufferVTStrict

func (m *MessageValue) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MessageValue) MarshalToVT

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

func (*MessageValue) MarshalToVTStrict

func (m *MessageValue) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MessageValue) MarshalVT

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

func (*MessageValue) MarshalVTStrict

func (m *MessageValue) MarshalVTStrict() (dAtA []byte, err error)

func (*MessageValue) ProtoMessage

func (*MessageValue) ProtoMessage()

func (*MessageValue) ProtoReflect

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

func (*MessageValue) Reset

func (x *MessageValue) Reset()

func (*MessageValue) SizeVT

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

func (*MessageValue) String

func (x *MessageValue) String() string

func (*MessageValue) UnmarshalVT

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

func (*MessageValue) UnmarshalVTUnsafe

func (m *MessageValue) UnmarshalVTUnsafe(dAtA []byte) error

type Method

type Method struct {
	Id         string      `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name       string      `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	RequestId  string      `protobuf:"bytes,3,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
	ResponseId string      `protobuf:"bytes,4,opt,name=response_id,json=responseId,proto3" json:"response_id,omitempty"`
	ServiceId  string      `protobuf:"bytes,5,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
	Rule       *MethodRule `protobuf:"bytes,6,opt,name=rule,proto3" json:"rule,omitempty"`
	// contains filtered or unexported fields
}

func (*Method) CloneMessageVT

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

func (*Method) CloneVT

func (m *Method) CloneVT() *Method

func (*Method) Descriptor deprecated

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

Deprecated: Use Method.ProtoReflect.Descriptor instead.

func (*Method) EqualMessageVT

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

func (*Method) EqualVT

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

func (*Method) GetId

func (x *Method) GetId() string

func (*Method) GetName

func (x *Method) GetName() string

func (*Method) GetRequestId

func (x *Method) GetRequestId() string

func (*Method) GetResponseId

func (x *Method) GetResponseId() string

func (*Method) GetRule

func (x *Method) GetRule() *MethodRule

func (*Method) GetServiceId

func (x *Method) GetServiceId() string

func (*Method) MarshalToSizedBufferVT

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

func (*Method) MarshalToSizedBufferVTStrict

func (m *Method) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Method) MarshalToVT

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

func (*Method) MarshalToVTStrict

func (m *Method) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Method) MarshalVT

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

func (*Method) MarshalVTStrict

func (m *Method) MarshalVTStrict() (dAtA []byte, err error)

func (*Method) ProtoMessage

func (*Method) ProtoMessage()

func (*Method) ProtoReflect

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

func (*Method) Reset

func (x *Method) Reset()

func (*Method) SizeVT

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

func (*Method) String

func (x *Method) String() string

func (*Method) UnmarshalVT

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

func (*Method) UnmarshalVTUnsafe

func (m *Method) UnmarshalVTUnsafe(dAtA []byte) error

type MethodRule

type MethodRule struct {
	Timeout *durationpb.Duration `protobuf:"bytes,1,opt,name=timeout,proto3" json:"timeout,omitempty"`
	// contains filtered or unexported fields
}

func (*MethodRule) CloneMessageVT

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

func (*MethodRule) CloneVT

func (m *MethodRule) CloneVT() *MethodRule

func (*MethodRule) Descriptor deprecated

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

Deprecated: Use MethodRule.ProtoReflect.Descriptor instead.

func (*MethodRule) EqualMessageVT

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

func (*MethodRule) EqualVT

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

func (*MethodRule) GetTimeout

func (x *MethodRule) GetTimeout() *durationpb.Duration

func (*MethodRule) MarshalToSizedBufferVT

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

func (*MethodRule) MarshalToSizedBufferVTStrict

func (m *MethodRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*MethodRule) MarshalToVT

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

func (*MethodRule) MarshalToVTStrict

func (m *MethodRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*MethodRule) MarshalVT

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

func (*MethodRule) MarshalVTStrict

func (m *MethodRule) MarshalVTStrict() (dAtA []byte, err error)

func (*MethodRule) ProtoMessage

func (*MethodRule) ProtoMessage()

func (*MethodRule) ProtoReflect

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

func (*MethodRule) Reset

func (x *MethodRule) Reset()

func (*MethodRule) SizeVT

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

func (*MethodRule) String

func (x *MethodRule) String() string

func (*MethodRule) UnmarshalVT

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

func (*MethodRule) UnmarshalVTUnsafe

func (m *MethodRule) UnmarshalVTUnsafe(dAtA []byte) error

type Oneof

type Oneof struct {
	Id        string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name      string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	MessageId string   `protobuf:"bytes,3,opt,name=message_id,json=messageId,proto3" json:"message_id,omitempty"`
	FieldIds  []string `protobuf:"bytes,4,rep,name=field_ids,json=fieldIds,proto3" json:"field_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*Oneof) CloneMessageVT

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

func (*Oneof) CloneVT

func (m *Oneof) CloneVT() *Oneof

func (*Oneof) Descriptor deprecated

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

Deprecated: Use Oneof.ProtoReflect.Descriptor instead.

func (*Oneof) EqualMessageVT

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

func (*Oneof) EqualVT

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

func (*Oneof) GetFieldIds

func (x *Oneof) GetFieldIds() []string

func (*Oneof) GetId

func (x *Oneof) GetId() string

func (*Oneof) GetMessageId

func (x *Oneof) GetMessageId() string

func (*Oneof) GetName

func (x *Oneof) GetName() string

func (*Oneof) MarshalToSizedBufferVT

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

func (*Oneof) MarshalToSizedBufferVTStrict

func (m *Oneof) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Oneof) MarshalToVT

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

func (*Oneof) MarshalToVTStrict

func (m *Oneof) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Oneof) MarshalVT

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

func (*Oneof) MarshalVTStrict

func (m *Oneof) MarshalVTStrict() (dAtA []byte, err error)

func (*Oneof) ProtoMessage

func (*Oneof) ProtoMessage()

func (*Oneof) ProtoReflect

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

func (*Oneof) Reset

func (x *Oneof) Reset()

func (*Oneof) SizeVT

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

func (*Oneof) String

func (x *Oneof) String() string

func (*Oneof) UnmarshalVT

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

func (*Oneof) UnmarshalVTUnsafe

func (m *Oneof) UnmarshalVTUnsafe(dAtA []byte) error

type Package

type Package struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	FileIds []string `protobuf:"bytes,2,rep,name=file_ids,json=fileIds,proto3" json:"file_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*Package) CloneMessageVT

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

func (*Package) CloneVT

func (m *Package) CloneVT() *Package

func (*Package) Descriptor deprecated

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

Deprecated: Use Package.ProtoReflect.Descriptor instead.

func (*Package) EqualMessageVT

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

func (*Package) EqualVT

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

func (*Package) GetFileIds

func (x *Package) GetFileIds() []string

func (*Package) GetName

func (x *Package) GetName() string

func (*Package) MarshalToSizedBufferVT

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

func (*Package) MarshalToSizedBufferVTStrict

func (m *Package) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Package) MarshalToVT

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

func (*Package) MarshalToVTStrict

func (m *Package) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Package) MarshalVT

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

func (*Package) MarshalVTStrict

func (m *Package) MarshalVTStrict() (dAtA []byte, err error)

func (*Package) ProtoMessage

func (*Package) ProtoMessage()

func (*Package) ProtoReflect

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

func (*Package) Reset

func (x *Package) Reset()

func (*Package) SizeVT

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

func (*Package) String

func (x *Package) String() string

func (*Package) UnmarshalVT

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

func (*Package) UnmarshalVTUnsafe

func (m *Package) UnmarshalVTUnsafe(dAtA []byte) error

type PreconditionFailure

type PreconditionFailure struct {
	Violations []*PreconditionFailureViolation `protobuf:"bytes,1,rep,name=violations,proto3" json:"violations,omitempty"`
	// contains filtered or unexported fields
}

func (*PreconditionFailure) CloneMessageVT

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

func (*PreconditionFailure) CloneVT

func (*PreconditionFailure) Descriptor deprecated

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

Deprecated: Use PreconditionFailure.ProtoReflect.Descriptor instead.

func (*PreconditionFailure) EqualMessageVT

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

func (*PreconditionFailure) EqualVT

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

func (*PreconditionFailure) GetViolations

func (x *PreconditionFailure) GetViolations() []*PreconditionFailureViolation

func (*PreconditionFailure) MarshalToSizedBufferVT

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

func (*PreconditionFailure) MarshalToSizedBufferVTStrict

func (m *PreconditionFailure) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*PreconditionFailure) MarshalToVT

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

func (*PreconditionFailure) MarshalToVTStrict

func (m *PreconditionFailure) MarshalToVTStrict(dAtA []byte) (int, error)

func (*PreconditionFailure) MarshalVT

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

func (*PreconditionFailure) MarshalVTStrict

func (m *PreconditionFailure) MarshalVTStrict() (dAtA []byte, err error)

func (*PreconditionFailure) ProtoMessage

func (*PreconditionFailure) ProtoMessage()

func (*PreconditionFailure) ProtoReflect

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

func (*PreconditionFailure) Reset

func (x *PreconditionFailure) Reset()

func (*PreconditionFailure) SizeVT

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

func (*PreconditionFailure) String

func (x *PreconditionFailure) String() string

func (*PreconditionFailure) UnmarshalVT

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

func (*PreconditionFailure) UnmarshalVTUnsafe

func (m *PreconditionFailure) UnmarshalVTUnsafe(dAtA []byte) error

type PreconditionFailureViolation

type PreconditionFailureViolation struct {
	Type        *CELValue `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Subject     *CELValue `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
	Description *CELValue `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*PreconditionFailureViolation) CloneMessageVT

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

func (*PreconditionFailureViolation) CloneVT

func (*PreconditionFailureViolation) Descriptor deprecated

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

Deprecated: Use PreconditionFailureViolation.ProtoReflect.Descriptor instead.

func (*PreconditionFailureViolation) EqualMessageVT

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

func (*PreconditionFailureViolation) EqualVT

func (*PreconditionFailureViolation) GetDescription

func (x *PreconditionFailureViolation) GetDescription() *CELValue

func (*PreconditionFailureViolation) GetSubject

func (x *PreconditionFailureViolation) GetSubject() *CELValue

func (*PreconditionFailureViolation) GetType

func (x *PreconditionFailureViolation) GetType() *CELValue

func (*PreconditionFailureViolation) MarshalToSizedBufferVT

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

func (*PreconditionFailureViolation) MarshalToSizedBufferVTStrict

func (m *PreconditionFailureViolation) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*PreconditionFailureViolation) MarshalToVT

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

func (*PreconditionFailureViolation) MarshalToVTStrict

func (m *PreconditionFailureViolation) MarshalToVTStrict(dAtA []byte) (int, error)

func (*PreconditionFailureViolation) MarshalVT

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

func (*PreconditionFailureViolation) MarshalVTStrict

func (m *PreconditionFailureViolation) MarshalVTStrict() (dAtA []byte, err error)

func (*PreconditionFailureViolation) ProtoMessage

func (*PreconditionFailureViolation) ProtoMessage()

func (*PreconditionFailureViolation) ProtoReflect

func (*PreconditionFailureViolation) Reset

func (x *PreconditionFailureViolation) Reset()

func (*PreconditionFailureViolation) SizeVT

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

func (*PreconditionFailureViolation) String

func (*PreconditionFailureViolation) UnmarshalVT

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

func (*PreconditionFailureViolation) UnmarshalVTUnsafe

func (m *PreconditionFailureViolation) UnmarshalVTUnsafe(dAtA []byte) error

type ProtoCodeGeneratorResponse

type ProtoCodeGeneratorResponse struct {
	Error             *string                            `protobuf:"bytes,1,opt,name=error,proto3,oneof" json:"error,omitempty"`
	SupportedFeatures *uint64                            `protobuf:"varint,2,opt,name=supported_features,json=supportedFeatures,proto3,oneof" json:"supported_features,omitempty"`
	MinimumEdition    *int32                             `protobuf:"varint,3,opt,name=minimum_edition,json=minimumEdition,proto3,oneof" json:"minimum_edition,omitempty"`
	MaximumEdition    *int32                             `protobuf:"varint,4,opt,name=maximum_edition,json=maximumEdition,proto3,oneof" json:"maximum_edition,omitempty"`
	File              []*ProtoCodeGeneratorResponse_File `protobuf:"bytes,15,rep,name=file,proto3" json:"file,omitempty"`
	// contains filtered or unexported fields
}

func (*ProtoCodeGeneratorResponse) CloneMessageVT

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

func (*ProtoCodeGeneratorResponse) CloneVT

func (*ProtoCodeGeneratorResponse) Descriptor deprecated

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

Deprecated: Use ProtoCodeGeneratorResponse.ProtoReflect.Descriptor instead.

func (*ProtoCodeGeneratorResponse) EqualMessageVT

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

func (*ProtoCodeGeneratorResponse) EqualVT

func (*ProtoCodeGeneratorResponse) GetError

func (x *ProtoCodeGeneratorResponse) GetError() string

func (*ProtoCodeGeneratorResponse) GetFile

func (*ProtoCodeGeneratorResponse) GetMaximumEdition

func (x *ProtoCodeGeneratorResponse) GetMaximumEdition() int32

func (*ProtoCodeGeneratorResponse) GetMinimumEdition

func (x *ProtoCodeGeneratorResponse) GetMinimumEdition() int32

func (*ProtoCodeGeneratorResponse) GetSupportedFeatures

func (x *ProtoCodeGeneratorResponse) GetSupportedFeatures() uint64

func (*ProtoCodeGeneratorResponse) MarshalToSizedBufferVT

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

func (*ProtoCodeGeneratorResponse) MarshalToSizedBufferVTStrict

func (m *ProtoCodeGeneratorResponse) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse) MarshalToVT

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

func (*ProtoCodeGeneratorResponse) MarshalToVTStrict

func (m *ProtoCodeGeneratorResponse) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse) MarshalVT

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

func (*ProtoCodeGeneratorResponse) MarshalVTStrict

func (m *ProtoCodeGeneratorResponse) MarshalVTStrict() (dAtA []byte, err error)

func (*ProtoCodeGeneratorResponse) ProtoMessage

func (*ProtoCodeGeneratorResponse) ProtoMessage()

func (*ProtoCodeGeneratorResponse) ProtoReflect

func (*ProtoCodeGeneratorResponse) Reset

func (x *ProtoCodeGeneratorResponse) Reset()

func (*ProtoCodeGeneratorResponse) SizeVT

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

func (*ProtoCodeGeneratorResponse) String

func (x *ProtoCodeGeneratorResponse) String() string

func (*ProtoCodeGeneratorResponse) UnmarshalVT

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

func (*ProtoCodeGeneratorResponse) UnmarshalVTUnsafe

func (m *ProtoCodeGeneratorResponse) UnmarshalVTUnsafe(dAtA []byte) error

type ProtoCodeGeneratorResponse_Feature

type ProtoCodeGeneratorResponse_Feature int32
const (
	ProtoCodeGeneratorResponse_FEATURE_NONE              ProtoCodeGeneratorResponse_Feature = 0
	ProtoCodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL   ProtoCodeGeneratorResponse_Feature = 1
	ProtoCodeGeneratorResponse_FEATURE_SUPPORTS_EDITIONS ProtoCodeGeneratorResponse_Feature = 2
)

func (ProtoCodeGeneratorResponse_Feature) Descriptor

func (ProtoCodeGeneratorResponse_Feature) Enum

func (ProtoCodeGeneratorResponse_Feature) EnumDescriptor deprecated

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

Deprecated: Use ProtoCodeGeneratorResponse_Feature.Descriptor instead.

func (ProtoCodeGeneratorResponse_Feature) Number

func (ProtoCodeGeneratorResponse_Feature) String

func (ProtoCodeGeneratorResponse_Feature) Type

type ProtoCodeGeneratorResponse_File

type ProtoCodeGeneratorResponse_File struct {
	Name              *string                                       `protobuf:"bytes,1,opt,name=name,proto3,oneof" json:"name,omitempty"`
	InsertionPoint    *string                                       `protobuf:"bytes,2,opt,name=insertion_point,json=insertionPoint,proto3,oneof" json:"insertion_point,omitempty"`
	Content           *string                                       `protobuf:"bytes,15,opt,name=content,proto3,oneof" json:"content,omitempty"`
	GeneratedCodeInfo *ProtoCodeGeneratorResponse_GeneratedCodeInfo `protobuf:"bytes,16,opt,name=generated_code_info,json=generatedCodeInfo,proto3,oneof" json:"generated_code_info,omitempty"`
	// contains filtered or unexported fields
}

func (*ProtoCodeGeneratorResponse_File) CloneMessageVT

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

func (*ProtoCodeGeneratorResponse_File) CloneVT

func (*ProtoCodeGeneratorResponse_File) Descriptor deprecated

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

Deprecated: Use ProtoCodeGeneratorResponse_File.ProtoReflect.Descriptor instead.

func (*ProtoCodeGeneratorResponse_File) EqualMessageVT

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

func (*ProtoCodeGeneratorResponse_File) EqualVT

func (*ProtoCodeGeneratorResponse_File) GetContent

func (x *ProtoCodeGeneratorResponse_File) GetContent() string

func (*ProtoCodeGeneratorResponse_File) GetGeneratedCodeInfo

func (*ProtoCodeGeneratorResponse_File) GetInsertionPoint

func (x *ProtoCodeGeneratorResponse_File) GetInsertionPoint() string

func (*ProtoCodeGeneratorResponse_File) GetName

func (*ProtoCodeGeneratorResponse_File) MarshalToSizedBufferVT

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

func (*ProtoCodeGeneratorResponse_File) MarshalToSizedBufferVTStrict

func (m *ProtoCodeGeneratorResponse_File) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse_File) MarshalToVT

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

func (*ProtoCodeGeneratorResponse_File) MarshalToVTStrict

func (m *ProtoCodeGeneratorResponse_File) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse_File) MarshalVT

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

func (*ProtoCodeGeneratorResponse_File) MarshalVTStrict

func (m *ProtoCodeGeneratorResponse_File) MarshalVTStrict() (dAtA []byte, err error)

func (*ProtoCodeGeneratorResponse_File) ProtoMessage

func (*ProtoCodeGeneratorResponse_File) ProtoMessage()

func (*ProtoCodeGeneratorResponse_File) ProtoReflect

func (*ProtoCodeGeneratorResponse_File) Reset

func (*ProtoCodeGeneratorResponse_File) SizeVT

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

func (*ProtoCodeGeneratorResponse_File) String

func (*ProtoCodeGeneratorResponse_File) UnmarshalVT

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

func (*ProtoCodeGeneratorResponse_File) UnmarshalVTUnsafe

func (m *ProtoCodeGeneratorResponse_File) UnmarshalVTUnsafe(dAtA []byte) error

type ProtoCodeGeneratorResponse_GeneratedCodeInfo

type ProtoCodeGeneratorResponse_GeneratedCodeInfo struct {
	Annotation []*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation `protobuf:"bytes,1,rep,name=annotation,proto3" json:"annotation,omitempty"`
	// contains filtered or unexported fields
}

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) CloneMessageVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) CloneVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) Descriptor deprecated

Deprecated: Use ProtoCodeGeneratorResponse_GeneratedCodeInfo.ProtoReflect.Descriptor instead.

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) EqualMessageVT

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

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) EqualVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) GetAnnotation

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToSizedBufferVT

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

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToSizedBufferVTStrict

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToVT

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

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToVTStrict

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalVT

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

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalVTStrict

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo) MarshalVTStrict() (dAtA []byte, err error)

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) ProtoMessage

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) ProtoReflect

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) Reset

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) SizeVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) String

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) UnmarshalVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo) UnmarshalVTUnsafe

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo) UnmarshalVTUnsafe(dAtA []byte) error

type ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation

type ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation struct {
	Path       []int32                                                           `protobuf:"varint,1,rep,packed,name=path,proto3" json:"path,omitempty"`
	SourceFile *string                                                           `protobuf:"bytes,2,opt,name=source_file,json=sourceFile,proto3,oneof" json:"source_file,omitempty"`
	Begin      *int32                                                            `protobuf:"varint,3,opt,name=begin,proto3,oneof" json:"begin,omitempty"`
	End        *int32                                                            `protobuf:"varint,4,opt,name=end,proto3,oneof" json:"end,omitempty"`
	Semantic   *ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic `` /* 179-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) CloneMessageVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) CloneVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) Descriptor deprecated

Deprecated: Use ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation.ProtoReflect.Descriptor instead.

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) EqualMessageVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) EqualVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) GetBegin

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) GetEnd

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) GetPath

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) GetSemantic

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) GetSourceFile

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalToSizedBufferVT

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

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalToSizedBufferVTStrict

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalToVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalToVTStrict

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalVTStrict

func (m *ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) MarshalVTStrict() (dAtA []byte, err error)

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) ProtoMessage

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) ProtoReflect

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) Reset

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) SizeVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) String

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) UnmarshalVT

func (*ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation) UnmarshalVTUnsafe

type ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic

type ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic int32
const (
	ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_NONE  ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic = 0
	ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_SET   ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic = 1
	ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_ALIAS ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic = 2
)

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) Descriptor

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) Enum

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) EnumDescriptor deprecated

Deprecated: Use ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic.Descriptor instead.

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) Number

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) String

func (ProtoCodeGeneratorResponse_GeneratedCodeInfo_Annotation_Semantic) Type

type Reference

type Reference struct {
	FileMap                    map[string]*File                    `` /* 170-byte string literal not displayed */
	ServiceMap                 map[string]*Service                 `` /* 179-byte string literal not displayed */
	MethodMap                  map[string]*Method                  `` /* 176-byte string literal not displayed */
	MessageMap                 map[string]*Message                 `` /* 179-byte string literal not displayed */
	FieldMap                   map[string]*Field                   `` /* 173-byte string literal not displayed */
	EnumMap                    map[string]*Enum                    `` /* 170-byte string literal not displayed */
	EnumValueMap               map[string]*EnumValue               `` /* 187-byte string literal not displayed */
	OneofMap                   map[string]*Oneof                   `` /* 173-byte string literal not displayed */
	CelPluginMap               map[string]*CELPlugin               `` /* 187-byte string literal not displayed */
	GraphMap                   map[string]*MessageDependencyGraph  `` /* 174-byte string literal not displayed */
	VariableDefinitionMap      map[string]*VariableDefinition      `` /* 215-byte string literal not displayed */
	VariableDefinitionGroupMap map[string]*VariableDefinitionGroup `` /* 232-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Reference) CloneMessageVT

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

func (*Reference) CloneVT

func (m *Reference) CloneVT() *Reference

func (*Reference) Descriptor deprecated

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

Deprecated: Use Reference.ProtoReflect.Descriptor instead.

func (*Reference) EqualMessageVT

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

func (*Reference) EqualVT

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

func (*Reference) GetCelPluginMap

func (x *Reference) GetCelPluginMap() map[string]*CELPlugin

func (*Reference) GetEnumMap

func (x *Reference) GetEnumMap() map[string]*Enum

func (*Reference) GetEnumValueMap

func (x *Reference) GetEnumValueMap() map[string]*EnumValue

func (*Reference) GetFieldMap

func (x *Reference) GetFieldMap() map[string]*Field

func (*Reference) GetFileMap

func (x *Reference) GetFileMap() map[string]*File

func (*Reference) GetGraphMap

func (x *Reference) GetGraphMap() map[string]*MessageDependencyGraph

func (*Reference) GetMessageMap

func (x *Reference) GetMessageMap() map[string]*Message

func (*Reference) GetMethodMap

func (x *Reference) GetMethodMap() map[string]*Method

func (*Reference) GetOneofMap

func (x *Reference) GetOneofMap() map[string]*Oneof

func (*Reference) GetServiceMap

func (x *Reference) GetServiceMap() map[string]*Service

func (*Reference) GetVariableDefinitionGroupMap

func (x *Reference) GetVariableDefinitionGroupMap() map[string]*VariableDefinitionGroup

func (*Reference) GetVariableDefinitionMap

func (x *Reference) GetVariableDefinitionMap() map[string]*VariableDefinition

func (*Reference) MarshalToSizedBufferVT

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

func (*Reference) MarshalToSizedBufferVTStrict

func (m *Reference) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Reference) MarshalToVT

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

func (*Reference) MarshalToVTStrict

func (m *Reference) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Reference) MarshalVT

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

func (*Reference) MarshalVTStrict

func (m *Reference) MarshalVTStrict() (dAtA []byte, err error)

func (*Reference) ProtoMessage

func (*Reference) ProtoMessage()

func (*Reference) ProtoReflect

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

func (*Reference) Reset

func (x *Reference) Reset()

func (*Reference) SizeVT

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

func (*Reference) String

func (x *Reference) String() string

func (*Reference) UnmarshalVT

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

func (*Reference) UnmarshalVTUnsafe

func (m *Reference) UnmarshalVTUnsafe(dAtA []byte) error

type Request

type Request struct {
	Args   []*Argument `protobuf:"bytes,1,rep,name=args,proto3" json:"args,omitempty"`
	TypeId string      `protobuf:"bytes,2,opt,name=type_id,json=typeId,proto3" json:"type_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Request) CloneMessageVT

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

func (*Request) CloneVT

func (m *Request) CloneVT() *Request

func (*Request) Descriptor deprecated

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

Deprecated: Use Request.ProtoReflect.Descriptor instead.

func (*Request) EqualMessageVT

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

func (*Request) EqualVT

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

func (*Request) GetArgs

func (x *Request) GetArgs() []*Argument

func (*Request) GetTypeId

func (x *Request) GetTypeId() string

func (*Request) MarshalToSizedBufferVT

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

func (*Request) MarshalToSizedBufferVTStrict

func (m *Request) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Request) MarshalToVT

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

func (*Request) MarshalToVTStrict

func (m *Request) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Request) MarshalVT

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

func (*Request) MarshalVTStrict

func (m *Request) MarshalVTStrict() (dAtA []byte, err error)

func (*Request) ProtoMessage

func (*Request) ProtoMessage()

func (*Request) ProtoReflect

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

func (*Request) Reset

func (x *Request) Reset()

func (*Request) SizeVT

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

func (*Request) String

func (x *Request) String() string

func (*Request) UnmarshalVT

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

func (*Request) UnmarshalVTUnsafe

func (m *Request) UnmarshalVTUnsafe(dAtA []byte) error

type RetryPolicy

type RetryPolicy struct {

	// Types that are assignable to Policy:
	//
	//	*RetryPolicy_Constant
	//	*RetryPolicy_Exponential
	Policy isRetryPolicy_Policy `protobuf_oneof:"policy"`
	// contains filtered or unexported fields
}

func (*RetryPolicy) CloneMessageVT

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

func (*RetryPolicy) CloneVT

func (m *RetryPolicy) CloneVT() *RetryPolicy

func (*RetryPolicy) Descriptor deprecated

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

Deprecated: Use RetryPolicy.ProtoReflect.Descriptor instead.

func (*RetryPolicy) EqualMessageVT

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

func (*RetryPolicy) EqualVT

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

func (*RetryPolicy) GetConstant

func (x *RetryPolicy) GetConstant() *RetryPolicyConstant

func (*RetryPolicy) GetExponential

func (x *RetryPolicy) GetExponential() *RetryPolicyExponential

func (*RetryPolicy) GetPolicy

func (m *RetryPolicy) GetPolicy() isRetryPolicy_Policy

func (*RetryPolicy) MarshalToSizedBufferVT

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

func (*RetryPolicy) MarshalToSizedBufferVTStrict

func (m *RetryPolicy) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy) MarshalToVT

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

func (*RetryPolicy) MarshalToVTStrict

func (m *RetryPolicy) MarshalToVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy) MarshalVT

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

func (*RetryPolicy) MarshalVTStrict

func (m *RetryPolicy) MarshalVTStrict() (dAtA []byte, err error)

func (*RetryPolicy) ProtoMessage

func (*RetryPolicy) ProtoMessage()

func (*RetryPolicy) ProtoReflect

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

func (*RetryPolicy) Reset

func (x *RetryPolicy) Reset()

func (*RetryPolicy) SizeVT

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

func (*RetryPolicy) String

func (x *RetryPolicy) String() string

func (*RetryPolicy) UnmarshalVT

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

func (*RetryPolicy) UnmarshalVTUnsafe

func (m *RetryPolicy) UnmarshalVTUnsafe(dAtA []byte) error

type RetryPolicyConstant

type RetryPolicyConstant struct {
	Interval   *durationpb.Duration `protobuf:"bytes,1,opt,name=interval,proto3" json:"interval,omitempty"`
	MaxRetries uint64               `protobuf:"varint,2,opt,name=max_retries,json=maxRetries,proto3" json:"max_retries,omitempty"`
	// contains filtered or unexported fields
}

func (*RetryPolicyConstant) CloneMessageVT

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

func (*RetryPolicyConstant) CloneVT

func (*RetryPolicyConstant) Descriptor deprecated

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

Deprecated: Use RetryPolicyConstant.ProtoReflect.Descriptor instead.

func (*RetryPolicyConstant) EqualMessageVT

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

func (*RetryPolicyConstant) EqualVT

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

func (*RetryPolicyConstant) GetInterval

func (x *RetryPolicyConstant) GetInterval() *durationpb.Duration

func (*RetryPolicyConstant) GetMaxRetries

func (x *RetryPolicyConstant) GetMaxRetries() uint64

func (*RetryPolicyConstant) MarshalToSizedBufferVT

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

func (*RetryPolicyConstant) MarshalToSizedBufferVTStrict

func (m *RetryPolicyConstant) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*RetryPolicyConstant) MarshalToVT

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

func (*RetryPolicyConstant) MarshalToVTStrict

func (m *RetryPolicyConstant) MarshalToVTStrict(dAtA []byte) (int, error)

func (*RetryPolicyConstant) MarshalVT

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

func (*RetryPolicyConstant) MarshalVTStrict

func (m *RetryPolicyConstant) MarshalVTStrict() (dAtA []byte, err error)

func (*RetryPolicyConstant) ProtoMessage

func (*RetryPolicyConstant) ProtoMessage()

func (*RetryPolicyConstant) ProtoReflect

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

func (*RetryPolicyConstant) Reset

func (x *RetryPolicyConstant) Reset()

func (*RetryPolicyConstant) SizeVT

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

func (*RetryPolicyConstant) String

func (x *RetryPolicyConstant) String() string

func (*RetryPolicyConstant) UnmarshalVT

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

func (*RetryPolicyConstant) UnmarshalVTUnsafe

func (m *RetryPolicyConstant) UnmarshalVTUnsafe(dAtA []byte) error

type RetryPolicyExponential

type RetryPolicyExponential struct {
	InitialInterval     *durationpb.Duration `protobuf:"bytes,1,opt,name=initial_interval,json=initialInterval,proto3" json:"initial_interval,omitempty"`
	RandomizationFactor float64              `protobuf:"fixed64,2,opt,name=randomization_factor,json=randomizationFactor,proto3" json:"randomization_factor,omitempty"`
	Multiplier          float64              `protobuf:"fixed64,3,opt,name=multiplier,proto3" json:"multiplier,omitempty"`
	MaxInterval         *durationpb.Duration `protobuf:"bytes,4,opt,name=max_interval,json=maxInterval,proto3" json:"max_interval,omitempty"`
	MaxRetries          uint64               `protobuf:"varint,5,opt,name=max_retries,json=maxRetries,proto3" json:"max_retries,omitempty"`
	MaxElapsedTime      *durationpb.Duration `protobuf:"bytes,6,opt,name=max_elapsed_time,json=maxElapsedTime,proto3" json:"max_elapsed_time,omitempty"`
	// contains filtered or unexported fields
}

func (*RetryPolicyExponential) CloneMessageVT

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

func (*RetryPolicyExponential) CloneVT

func (*RetryPolicyExponential) Descriptor deprecated

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

Deprecated: Use RetryPolicyExponential.ProtoReflect.Descriptor instead.

func (*RetryPolicyExponential) EqualMessageVT

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

func (*RetryPolicyExponential) EqualVT

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

func (*RetryPolicyExponential) GetInitialInterval

func (x *RetryPolicyExponential) GetInitialInterval() *durationpb.Duration

func (*RetryPolicyExponential) GetMaxElapsedTime

func (x *RetryPolicyExponential) GetMaxElapsedTime() *durationpb.Duration

func (*RetryPolicyExponential) GetMaxInterval

func (x *RetryPolicyExponential) GetMaxInterval() *durationpb.Duration

func (*RetryPolicyExponential) GetMaxRetries

func (x *RetryPolicyExponential) GetMaxRetries() uint64

func (*RetryPolicyExponential) GetMultiplier

func (x *RetryPolicyExponential) GetMultiplier() float64

func (*RetryPolicyExponential) GetRandomizationFactor

func (x *RetryPolicyExponential) GetRandomizationFactor() float64

func (*RetryPolicyExponential) MarshalToSizedBufferVT

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

func (*RetryPolicyExponential) MarshalToSizedBufferVTStrict

func (m *RetryPolicyExponential) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*RetryPolicyExponential) MarshalToVT

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

func (*RetryPolicyExponential) MarshalToVTStrict

func (m *RetryPolicyExponential) MarshalToVTStrict(dAtA []byte) (int, error)

func (*RetryPolicyExponential) MarshalVT

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

func (*RetryPolicyExponential) MarshalVTStrict

func (m *RetryPolicyExponential) MarshalVTStrict() (dAtA []byte, err error)

func (*RetryPolicyExponential) ProtoMessage

func (*RetryPolicyExponential) ProtoMessage()

func (*RetryPolicyExponential) ProtoReflect

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

func (*RetryPolicyExponential) Reset

func (x *RetryPolicyExponential) Reset()

func (*RetryPolicyExponential) SizeVT

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

func (*RetryPolicyExponential) String

func (x *RetryPolicyExponential) String() string

func (*RetryPolicyExponential) UnmarshalVT

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

func (*RetryPolicyExponential) UnmarshalVTUnsafe

func (m *RetryPolicyExponential) UnmarshalVTUnsafe(dAtA []byte) error

type RetryPolicy_Constant

type RetryPolicy_Constant struct {
	Constant *RetryPolicyConstant `protobuf:"bytes,1,opt,name=constant,proto3,oneof"`
}

func (*RetryPolicy_Constant) CloneVT

func (m *RetryPolicy_Constant) CloneVT() isRetryPolicy_Policy

func (*RetryPolicy_Constant) EqualVT

func (this *RetryPolicy_Constant) EqualVT(thatIface isRetryPolicy_Policy) bool

func (*RetryPolicy_Constant) MarshalToSizedBufferVT

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

func (*RetryPolicy_Constant) MarshalToSizedBufferVTStrict

func (m *RetryPolicy_Constant) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy_Constant) MarshalToVT

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

func (*RetryPolicy_Constant) MarshalToVTStrict

func (m *RetryPolicy_Constant) MarshalToVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy_Constant) SizeVT

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

type RetryPolicy_Exponential

type RetryPolicy_Exponential struct {
	Exponential *RetryPolicyExponential `protobuf:"bytes,2,opt,name=exponential,proto3,oneof"`
}

func (*RetryPolicy_Exponential) CloneVT

func (m *RetryPolicy_Exponential) CloneVT() isRetryPolicy_Policy

func (*RetryPolicy_Exponential) EqualVT

func (this *RetryPolicy_Exponential) EqualVT(thatIface isRetryPolicy_Policy) bool

func (*RetryPolicy_Exponential) MarshalToSizedBufferVT

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

func (*RetryPolicy_Exponential) MarshalToSizedBufferVTStrict

func (m *RetryPolicy_Exponential) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy_Exponential) MarshalToVT

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

func (*RetryPolicy_Exponential) MarshalToVTStrict

func (m *RetryPolicy_Exponential) MarshalToVTStrict(dAtA []byte) (int, error)

func (*RetryPolicy_Exponential) SizeVT

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

type SequentialVariableDefinitionGroup

type SequentialVariableDefinitionGroup struct {
	Start string `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"`
	End   string `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"`
	// contains filtered or unexported fields
}

func (*SequentialVariableDefinitionGroup) CloneMessageVT

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

func (*SequentialVariableDefinitionGroup) CloneVT

func (*SequentialVariableDefinitionGroup) Descriptor deprecated

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

Deprecated: Use SequentialVariableDefinitionGroup.ProtoReflect.Descriptor instead.

func (*SequentialVariableDefinitionGroup) EqualMessageVT

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

func (*SequentialVariableDefinitionGroup) EqualVT

func (*SequentialVariableDefinitionGroup) GetEnd

func (*SequentialVariableDefinitionGroup) GetStart

func (*SequentialVariableDefinitionGroup) MarshalToSizedBufferVT

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

func (*SequentialVariableDefinitionGroup) MarshalToSizedBufferVTStrict

func (m *SequentialVariableDefinitionGroup) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*SequentialVariableDefinitionGroup) MarshalToVT

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

func (*SequentialVariableDefinitionGroup) MarshalToVTStrict

func (m *SequentialVariableDefinitionGroup) MarshalToVTStrict(dAtA []byte) (int, error)

func (*SequentialVariableDefinitionGroup) MarshalVT

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

func (*SequentialVariableDefinitionGroup) MarshalVTStrict

func (m *SequentialVariableDefinitionGroup) MarshalVTStrict() (dAtA []byte, err error)

func (*SequentialVariableDefinitionGroup) ProtoMessage

func (*SequentialVariableDefinitionGroup) ProtoMessage()

func (*SequentialVariableDefinitionGroup) ProtoReflect

func (*SequentialVariableDefinitionGroup) Reset

func (*SequentialVariableDefinitionGroup) SizeVT

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

func (*SequentialVariableDefinitionGroup) String

func (*SequentialVariableDefinitionGroup) UnmarshalVT

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

func (*SequentialVariableDefinitionGroup) UnmarshalVTUnsafe

func (m *SequentialVariableDefinitionGroup) UnmarshalVTUnsafe(dAtA []byte) error

type Service

type Service struct {
	Id            string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name          string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	MethodIds     []string     `protobuf:"bytes,3,rep,name=method_ids,json=methodIds,proto3" json:"method_ids,omitempty"`
	FileId        string       `protobuf:"bytes,4,opt,name=file_id,json=fileId,proto3" json:"file_id,omitempty"`
	MessageIds    []string     `protobuf:"bytes,5,rep,name=message_ids,json=messageIds,proto3" json:"message_ids,omitempty"`
	MessageArgIds []string     `protobuf:"bytes,6,rep,name=message_arg_ids,json=messageArgIds,proto3" json:"message_arg_ids,omitempty"`
	CelPluginIds  []string     `protobuf:"bytes,7,rep,name=cel_plugin_ids,json=celPluginIds,proto3" json:"cel_plugin_ids,omitempty"`
	Rule          *ServiceRule `protobuf:"bytes,8,opt,name=rule,proto3" json:"rule,omitempty"`
	// contains filtered or unexported fields
}

func (*Service) CloneMessageVT

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

func (*Service) CloneVT

func (m *Service) CloneVT() *Service

func (*Service) Descriptor deprecated

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

Deprecated: Use Service.ProtoReflect.Descriptor instead.

func (*Service) EqualMessageVT

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

func (*Service) EqualVT

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

func (*Service) GetCelPluginIds

func (x *Service) GetCelPluginIds() []string

func (*Service) GetFileId

func (x *Service) GetFileId() string

func (*Service) GetId

func (x *Service) GetId() string

func (*Service) GetMessageArgIds

func (x *Service) GetMessageArgIds() []string

func (*Service) GetMessageIds

func (x *Service) GetMessageIds() []string

func (*Service) GetMethodIds

func (x *Service) GetMethodIds() []string

func (*Service) GetName

func (x *Service) GetName() string

func (*Service) GetRule

func (x *Service) GetRule() *ServiceRule

func (*Service) MarshalToSizedBufferVT

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

func (*Service) MarshalToSizedBufferVTStrict

func (m *Service) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Service) MarshalToVT

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

func (*Service) MarshalToVTStrict

func (m *Service) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Service) MarshalVT

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

func (*Service) MarshalVTStrict

func (m *Service) MarshalVTStrict() (dAtA []byte, err error)

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) ProtoReflect

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

func (*Service) Reset

func (x *Service) Reset()

func (*Service) SizeVT

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

func (*Service) String

func (x *Service) String() string

func (*Service) UnmarshalVT

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

func (*Service) UnmarshalVTUnsafe

func (m *Service) UnmarshalVTUnsafe(dAtA []byte) error

type ServiceDependency

type ServiceDependency struct {
	Name      string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ServiceId string `protobuf:"bytes,2,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceDependency) CloneMessageVT

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

func (*ServiceDependency) CloneVT

func (m *ServiceDependency) CloneVT() *ServiceDependency

func (*ServiceDependency) Descriptor deprecated

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

Deprecated: Use ServiceDependency.ProtoReflect.Descriptor instead.

func (*ServiceDependency) EqualMessageVT

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

func (*ServiceDependency) EqualVT

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

func (*ServiceDependency) GetName

func (x *ServiceDependency) GetName() string

func (*ServiceDependency) GetServiceId

func (x *ServiceDependency) GetServiceId() string

func (*ServiceDependency) MarshalToSizedBufferVT

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

func (*ServiceDependency) MarshalToSizedBufferVTStrict

func (m *ServiceDependency) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ServiceDependency) MarshalToVT

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

func (*ServiceDependency) MarshalToVTStrict

func (m *ServiceDependency) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ServiceDependency) MarshalVT

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

func (*ServiceDependency) MarshalVTStrict

func (m *ServiceDependency) MarshalVTStrict() (dAtA []byte, err error)

func (*ServiceDependency) ProtoMessage

func (*ServiceDependency) ProtoMessage()

func (*ServiceDependency) ProtoReflect

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

func (*ServiceDependency) Reset

func (x *ServiceDependency) Reset()

func (*ServiceDependency) SizeVT

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

func (*ServiceDependency) String

func (x *ServiceDependency) String() string

func (*ServiceDependency) UnmarshalVT

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

func (*ServiceDependency) UnmarshalVTUnsafe

func (m *ServiceDependency) UnmarshalVTUnsafe(dAtA []byte) error

type ServiceRule

type ServiceRule struct {
	Dependencies []*ServiceDependency `protobuf:"bytes,1,rep,name=dependencies,proto3" json:"dependencies,omitempty"`
	// contains filtered or unexported fields
}

func (*ServiceRule) CloneMessageVT

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

func (*ServiceRule) CloneVT

func (m *ServiceRule) CloneVT() *ServiceRule

func (*ServiceRule) Descriptor deprecated

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

Deprecated: Use ServiceRule.ProtoReflect.Descriptor instead.

func (*ServiceRule) EqualMessageVT

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

func (*ServiceRule) EqualVT

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

func (*ServiceRule) GetDependencies

func (x *ServiceRule) GetDependencies() []*ServiceDependency

func (*ServiceRule) MarshalToSizedBufferVT

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

func (*ServiceRule) MarshalToSizedBufferVTStrict

func (m *ServiceRule) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ServiceRule) MarshalToVT

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

func (*ServiceRule) MarshalToVTStrict

func (m *ServiceRule) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ServiceRule) MarshalVT

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

func (*ServiceRule) MarshalVTStrict

func (m *ServiceRule) MarshalVTStrict() (dAtA []byte, err error)

func (*ServiceRule) ProtoMessage

func (*ServiceRule) ProtoMessage()

func (*ServiceRule) ProtoReflect

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

func (*ServiceRule) Reset

func (x *ServiceRule) Reset()

func (*ServiceRule) SizeVT

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

func (*ServiceRule) String

func (x *ServiceRule) String() string

func (*ServiceRule) UnmarshalVT

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

func (*ServiceRule) UnmarshalVTUnsafe

func (m *ServiceRule) UnmarshalVTUnsafe(dAtA []byte) error

type Type

type Type struct {
	Kind     TypeKind `protobuf:"varint,1,opt,name=kind,proto3,enum=grpc.federation.generator.plugin.TypeKind" json:"kind,omitempty"`
	Repeated bool     `protobuf:"varint,2,opt,name=repeated,proto3" json:"repeated,omitempty"`
	// Types that are assignable to Ref:
	//
	//	*Type_MessageId
	//	*Type_EnumId
	//	*Type_OneofFieldId
	Ref isType_Ref `protobuf_oneof:"ref"`
	// contains filtered or unexported fields
}

func (*Type) CloneMessageVT

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

func (*Type) CloneVT

func (m *Type) CloneVT() *Type

func (*Type) Descriptor deprecated

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

Deprecated: Use Type.ProtoReflect.Descriptor instead.

func (*Type) EqualMessageVT

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

func (*Type) EqualVT

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

func (*Type) GetEnumId

func (x *Type) GetEnumId() string

func (*Type) GetKind

func (x *Type) GetKind() TypeKind

func (*Type) GetMessageId

func (x *Type) GetMessageId() string

func (*Type) GetOneofFieldId

func (x *Type) GetOneofFieldId() string

func (*Type) GetRef

func (m *Type) GetRef() isType_Ref

func (*Type) GetRepeated

func (x *Type) GetRepeated() bool

func (*Type) MarshalToSizedBufferVT

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

func (*Type) MarshalToSizedBufferVTStrict

func (m *Type) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Type) MarshalToVT

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

func (*Type) MarshalToVTStrict

func (m *Type) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Type) MarshalVT

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

func (*Type) MarshalVTStrict

func (m *Type) MarshalVTStrict() (dAtA []byte, err error)

func (*Type) ProtoMessage

func (*Type) ProtoMessage()

func (*Type) ProtoReflect

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

func (*Type) Reset

func (x *Type) Reset()

func (*Type) SizeVT

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

func (*Type) String

func (x *Type) String() string

func (*Type) UnmarshalVT

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

func (*Type) UnmarshalVTUnsafe

func (m *Type) UnmarshalVTUnsafe(dAtA []byte) error

type TypeKind

type TypeKind int32
const (
	TypeKind_UNKNOWN_TYPE  TypeKind = 0
	TypeKind_DOUBLE_TYPE   TypeKind = 1
	TypeKind_FLOAT_TYPE    TypeKind = 2
	TypeKind_INT64_TYPE    TypeKind = 3
	TypeKind_UINT64_TYPE   TypeKind = 4
	TypeKind_INT32_TYPE    TypeKind = 5
	TypeKind_FIXED64_TYPE  TypeKind = 6
	TypeKind_FIXED32_TYPE  TypeKind = 7
	TypeKind_BOOL_TYPE     TypeKind = 8
	TypeKind_STRING_TYPE   TypeKind = 9
	TypeKind_GROUP_TYPE    TypeKind = 10
	TypeKind_MESSAGE_TYPE  TypeKind = 11
	TypeKind_BYTES_TYPE    TypeKind = 12
	TypeKind_UINT32_TYPE   TypeKind = 13
	TypeKind_ENUM_TYPE     TypeKind = 14
	TypeKind_SFIXED32_TYPE TypeKind = 15
	TypeKind_SFIXED64_TYPE TypeKind = 16
	TypeKind_SINT32_TYPE   TypeKind = 17
	TypeKind_SINT64_TYPE   TypeKind = 18
)

func (TypeKind) Descriptor

func (TypeKind) Descriptor() protoreflect.EnumDescriptor

func (TypeKind) Enum

func (x TypeKind) Enum() *TypeKind

func (TypeKind) EnumDescriptor deprecated

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

Deprecated: Use TypeKind.Descriptor instead.

func (TypeKind) Number

func (x TypeKind) Number() protoreflect.EnumNumber

func (TypeKind) String

func (x TypeKind) String() string

func (TypeKind) Type

type Type_EnumId

type Type_EnumId struct {
	EnumId string `protobuf:"bytes,4,opt,name=enum_id,json=enumId,proto3,oneof"`
}

func (*Type_EnumId) CloneVT

func (m *Type_EnumId) CloneVT() isType_Ref

func (*Type_EnumId) EqualVT

func (this *Type_EnumId) EqualVT(thatIface isType_Ref) bool

func (*Type_EnumId) MarshalToSizedBufferVT

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

func (*Type_EnumId) MarshalToSizedBufferVTStrict

func (m *Type_EnumId) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Type_EnumId) MarshalToVT

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

func (*Type_EnumId) MarshalToVTStrict

func (m *Type_EnumId) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Type_EnumId) SizeVT

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

type Type_MessageId

type Type_MessageId struct {
	MessageId string `protobuf:"bytes,3,opt,name=message_id,json=messageId,proto3,oneof"`
}

func (*Type_MessageId) CloneVT

func (m *Type_MessageId) CloneVT() isType_Ref

func (*Type_MessageId) EqualVT

func (this *Type_MessageId) EqualVT(thatIface isType_Ref) bool

func (*Type_MessageId) MarshalToSizedBufferVT

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

func (*Type_MessageId) MarshalToSizedBufferVTStrict

func (m *Type_MessageId) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Type_MessageId) MarshalToVT

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

func (*Type_MessageId) MarshalToVTStrict

func (m *Type_MessageId) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Type_MessageId) SizeVT

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

type Type_OneofFieldId

type Type_OneofFieldId struct {
	OneofFieldId string `protobuf:"bytes,5,opt,name=oneof_field_id,json=oneofFieldId,proto3,oneof"`
}

func (*Type_OneofFieldId) CloneVT

func (m *Type_OneofFieldId) CloneVT() isType_Ref

func (*Type_OneofFieldId) EqualVT

func (this *Type_OneofFieldId) EqualVT(thatIface isType_Ref) bool

func (*Type_OneofFieldId) MarshalToSizedBufferVT

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

func (*Type_OneofFieldId) MarshalToSizedBufferVTStrict

func (m *Type_OneofFieldId) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Type_OneofFieldId) MarshalToVT

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

func (*Type_OneofFieldId) MarshalToVTStrict

func (m *Type_OneofFieldId) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Type_OneofFieldId) SizeVT

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

type ValidationExpr

type ValidationExpr struct {
	Name  string     `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Error *GRPCError `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidationExpr) CloneMessageVT

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

func (*ValidationExpr) CloneVT

func (m *ValidationExpr) CloneVT() *ValidationExpr

func (*ValidationExpr) Descriptor deprecated

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

Deprecated: Use ValidationExpr.ProtoReflect.Descriptor instead.

func (*ValidationExpr) EqualMessageVT

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

func (*ValidationExpr) EqualVT

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

func (*ValidationExpr) GetError

func (x *ValidationExpr) GetError() *GRPCError

func (*ValidationExpr) GetName added in v0.13.0

func (x *ValidationExpr) GetName() string

func (*ValidationExpr) MarshalToSizedBufferVT

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

func (*ValidationExpr) MarshalToSizedBufferVTStrict

func (m *ValidationExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ValidationExpr) MarshalToVT

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

func (*ValidationExpr) MarshalToVTStrict

func (m *ValidationExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ValidationExpr) MarshalVT

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

func (*ValidationExpr) MarshalVTStrict

func (m *ValidationExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*ValidationExpr) ProtoMessage

func (*ValidationExpr) ProtoMessage()

func (*ValidationExpr) ProtoReflect

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

func (*ValidationExpr) Reset

func (x *ValidationExpr) Reset()

func (*ValidationExpr) SizeVT

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

func (*ValidationExpr) String

func (x *ValidationExpr) String() string

func (*ValidationExpr) UnmarshalVT

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

func (*ValidationExpr) UnmarshalVTUnsafe

func (m *ValidationExpr) UnmarshalVTUnsafe(dAtA []byte) error

type Value

type Value struct {
	Inline bool `protobuf:"varint,1,opt,name=inline,proto3" json:"inline,omitempty"`
	// Types that are assignable to Value:
	//
	//	*Value_Cel
	//	*Value_Const
	Value isValue_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*Value) CloneMessageVT

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

func (*Value) CloneVT

func (m *Value) CloneVT() *Value

func (*Value) Descriptor deprecated

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

Deprecated: Use Value.ProtoReflect.Descriptor instead.

func (*Value) EqualMessageVT

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

func (*Value) EqualVT

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

func (*Value) GetCel

func (x *Value) GetCel() *CELValue

func (*Value) GetConst

func (x *Value) GetConst() *ConstValue

func (*Value) GetInline

func (x *Value) GetInline() bool

func (*Value) GetValue

func (m *Value) GetValue() isValue_Value

func (*Value) MarshalToSizedBufferVT

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

func (*Value) MarshalToSizedBufferVTStrict

func (m *Value) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Value) MarshalToVT

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

func (*Value) MarshalToVTStrict

func (m *Value) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Value) MarshalVT

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

func (*Value) MarshalVTStrict

func (m *Value) MarshalVTStrict() (dAtA []byte, err error)

func (*Value) ProtoMessage

func (*Value) ProtoMessage()

func (*Value) ProtoReflect

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

func (*Value) Reset

func (x *Value) Reset()

func (*Value) SizeVT

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

func (*Value) String

func (x *Value) String() string

func (*Value) UnmarshalVT

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

func (*Value) UnmarshalVTUnsafe

func (m *Value) UnmarshalVTUnsafe(dAtA []byte) error

type Value_Cel

type Value_Cel struct {
	Cel *CELValue `protobuf:"bytes,2,opt,name=cel,proto3,oneof"`
}

func (*Value_Cel) CloneVT

func (m *Value_Cel) CloneVT() isValue_Value

func (*Value_Cel) EqualVT

func (this *Value_Cel) EqualVT(thatIface isValue_Value) bool

func (*Value_Cel) MarshalToSizedBufferVT

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

func (*Value_Cel) MarshalToSizedBufferVTStrict

func (m *Value_Cel) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Value_Cel) MarshalToVT

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

func (*Value_Cel) MarshalToVTStrict

func (m *Value_Cel) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Value_Cel) SizeVT

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

type Value_Const

type Value_Const struct {
	Const *ConstValue `protobuf:"bytes,3,opt,name=const,proto3,oneof"`
}

func (*Value_Const) CloneVT

func (m *Value_Const) CloneVT() isValue_Value

func (*Value_Const) EqualVT

func (this *Value_Const) EqualVT(thatIface isValue_Value) bool

func (*Value_Const) MarshalToSizedBufferVT

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

func (*Value_Const) MarshalToSizedBufferVTStrict

func (m *Value_Const) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Value_Const) MarshalToVT

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

func (*Value_Const) MarshalToVTStrict

func (m *Value_Const) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Value_Const) SizeVT

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

type VariableDefinition

type VariableDefinition struct {
	Id       string        `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Index    int64         `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	Name     string        `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	If       *CELValue     `protobuf:"bytes,4,opt,name=if,proto3" json:"if,omitempty"`
	AutoBind bool          `protobuf:"varint,5,opt,name=auto_bind,json=autoBind,proto3" json:"auto_bind,omitempty"`
	Used     bool          `protobuf:"varint,6,opt,name=used,proto3" json:"used,omitempty"`
	Expr     *VariableExpr `protobuf:"bytes,7,opt,name=expr,proto3" json:"expr,omitempty"`
	// contains filtered or unexported fields
}

func (*VariableDefinition) CloneMessageVT

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

func (*VariableDefinition) CloneVT

func (m *VariableDefinition) CloneVT() *VariableDefinition

func (*VariableDefinition) Descriptor deprecated

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

Deprecated: Use VariableDefinition.ProtoReflect.Descriptor instead.

func (*VariableDefinition) EqualMessageVT

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

func (*VariableDefinition) EqualVT

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

func (*VariableDefinition) GetAutoBind

func (x *VariableDefinition) GetAutoBind() bool

func (*VariableDefinition) GetExpr

func (x *VariableDefinition) GetExpr() *VariableExpr

func (*VariableDefinition) GetId

func (x *VariableDefinition) GetId() string

func (*VariableDefinition) GetIf

func (x *VariableDefinition) GetIf() *CELValue

func (*VariableDefinition) GetIndex

func (x *VariableDefinition) GetIndex() int64

func (*VariableDefinition) GetName

func (x *VariableDefinition) GetName() string

func (*VariableDefinition) GetUsed

func (x *VariableDefinition) GetUsed() bool

func (*VariableDefinition) MarshalToSizedBufferVT

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

func (*VariableDefinition) MarshalToSizedBufferVTStrict

func (m *VariableDefinition) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableDefinition) MarshalToVT

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

func (*VariableDefinition) MarshalToVTStrict

func (m *VariableDefinition) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableDefinition) MarshalVT

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

func (*VariableDefinition) MarshalVTStrict

func (m *VariableDefinition) MarshalVTStrict() (dAtA []byte, err error)

func (*VariableDefinition) ProtoMessage

func (*VariableDefinition) ProtoMessage()

func (*VariableDefinition) ProtoReflect

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

func (*VariableDefinition) Reset

func (x *VariableDefinition) Reset()

func (*VariableDefinition) SizeVT

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

func (*VariableDefinition) String

func (x *VariableDefinition) String() string

func (*VariableDefinition) UnmarshalVT

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

func (*VariableDefinition) UnmarshalVTUnsafe

func (m *VariableDefinition) UnmarshalVTUnsafe(dAtA []byte) error

type VariableDefinitionGroup

type VariableDefinitionGroup struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Types that are assignable to Group:
	//
	//	*VariableDefinitionGroup_Sequential
	//	*VariableDefinitionGroup_Concurrent
	Group isVariableDefinitionGroup_Group `protobuf_oneof:"group"`
	// contains filtered or unexported fields
}

func (*VariableDefinitionGroup) CloneMessageVT

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

func (*VariableDefinitionGroup) CloneVT

func (*VariableDefinitionGroup) Descriptor deprecated

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

Deprecated: Use VariableDefinitionGroup.ProtoReflect.Descriptor instead.

func (*VariableDefinitionGroup) EqualMessageVT

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

func (*VariableDefinitionGroup) EqualVT

func (*VariableDefinitionGroup) GetConcurrent

func (*VariableDefinitionGroup) GetGroup

func (m *VariableDefinitionGroup) GetGroup() isVariableDefinitionGroup_Group

func (*VariableDefinitionGroup) GetId

func (x *VariableDefinitionGroup) GetId() string

func (*VariableDefinitionGroup) GetSequential

func (*VariableDefinitionGroup) MarshalToSizedBufferVT

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

func (*VariableDefinitionGroup) MarshalToSizedBufferVTStrict

func (m *VariableDefinitionGroup) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup) MarshalToVT

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

func (*VariableDefinitionGroup) MarshalToVTStrict

func (m *VariableDefinitionGroup) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup) MarshalVT

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

func (*VariableDefinitionGroup) MarshalVTStrict

func (m *VariableDefinitionGroup) MarshalVTStrict() (dAtA []byte, err error)

func (*VariableDefinitionGroup) ProtoMessage

func (*VariableDefinitionGroup) ProtoMessage()

func (*VariableDefinitionGroup) ProtoReflect

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

func (*VariableDefinitionGroup) Reset

func (x *VariableDefinitionGroup) Reset()

func (*VariableDefinitionGroup) SizeVT

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

func (*VariableDefinitionGroup) String

func (x *VariableDefinitionGroup) String() string

func (*VariableDefinitionGroup) UnmarshalVT

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

func (*VariableDefinitionGroup) UnmarshalVTUnsafe

func (m *VariableDefinitionGroup) UnmarshalVTUnsafe(dAtA []byte) error

type VariableDefinitionGroup_Concurrent

type VariableDefinitionGroup_Concurrent struct {
	Concurrent *ConcurrentVariableDefinitionGroup `protobuf:"bytes,3,opt,name=concurrent,proto3,oneof"`
}

func (*VariableDefinitionGroup_Concurrent) CloneVT

func (m *VariableDefinitionGroup_Concurrent) CloneVT() isVariableDefinitionGroup_Group

func (*VariableDefinitionGroup_Concurrent) EqualVT

func (this *VariableDefinitionGroup_Concurrent) EqualVT(thatIface isVariableDefinitionGroup_Group) bool

func (*VariableDefinitionGroup_Concurrent) MarshalToSizedBufferVT

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

func (*VariableDefinitionGroup_Concurrent) MarshalToSizedBufferVTStrict

func (m *VariableDefinitionGroup_Concurrent) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup_Concurrent) MarshalToVT

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

func (*VariableDefinitionGroup_Concurrent) MarshalToVTStrict

func (m *VariableDefinitionGroup_Concurrent) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup_Concurrent) SizeVT

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

type VariableDefinitionGroup_Sequential

type VariableDefinitionGroup_Sequential struct {
	Sequential *SequentialVariableDefinitionGroup `protobuf:"bytes,2,opt,name=sequential,proto3,oneof"`
}

func (*VariableDefinitionGroup_Sequential) CloneVT

func (m *VariableDefinitionGroup_Sequential) CloneVT() isVariableDefinitionGroup_Group

func (*VariableDefinitionGroup_Sequential) EqualVT

func (this *VariableDefinitionGroup_Sequential) EqualVT(thatIface isVariableDefinitionGroup_Group) bool

func (*VariableDefinitionGroup_Sequential) MarshalToSizedBufferVT

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

func (*VariableDefinitionGroup_Sequential) MarshalToSizedBufferVTStrict

func (m *VariableDefinitionGroup_Sequential) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup_Sequential) MarshalToVT

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

func (*VariableDefinitionGroup_Sequential) MarshalToVTStrict

func (m *VariableDefinitionGroup_Sequential) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionGroup_Sequential) SizeVT

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

type VariableDefinitionSet added in v0.13.0

type VariableDefinitionSet struct {
	VariableDefinitionIds      []string `` /* 126-byte string literal not displayed */
	VariableDefinitionGroupIds []string `` /* 143-byte string literal not displayed */
	DependencyGraphId          string   `protobuf:"bytes,3,opt,name=dependency_graph_id,json=dependencyGraphId,proto3" json:"dependency_graph_id,omitempty"`
	// contains filtered or unexported fields
}

func (*VariableDefinitionSet) CloneMessageVT added in v0.13.0

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

func (*VariableDefinitionSet) CloneVT added in v0.13.0

func (*VariableDefinitionSet) Descriptor deprecated added in v0.13.0

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

Deprecated: Use VariableDefinitionSet.ProtoReflect.Descriptor instead.

func (*VariableDefinitionSet) EqualMessageVT added in v0.13.0

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

func (*VariableDefinitionSet) EqualVT added in v0.13.0

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

func (*VariableDefinitionSet) GetDependencyGraphId added in v0.13.0

func (x *VariableDefinitionSet) GetDependencyGraphId() string

func (*VariableDefinitionSet) GetVariableDefinitionGroupIds added in v0.13.0

func (x *VariableDefinitionSet) GetVariableDefinitionGroupIds() []string

func (*VariableDefinitionSet) GetVariableDefinitionIds added in v0.13.0

func (x *VariableDefinitionSet) GetVariableDefinitionIds() []string

func (*VariableDefinitionSet) MarshalToSizedBufferVT added in v0.13.0

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

func (*VariableDefinitionSet) MarshalToSizedBufferVTStrict added in v0.13.0

func (m *VariableDefinitionSet) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionSet) MarshalToVT added in v0.13.0

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

func (*VariableDefinitionSet) MarshalToVTStrict added in v0.13.0

func (m *VariableDefinitionSet) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableDefinitionSet) MarshalVT added in v0.13.0

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

func (*VariableDefinitionSet) MarshalVTStrict added in v0.13.0

func (m *VariableDefinitionSet) MarshalVTStrict() (dAtA []byte, err error)

func (*VariableDefinitionSet) ProtoMessage added in v0.13.0

func (*VariableDefinitionSet) ProtoMessage()

func (*VariableDefinitionSet) ProtoReflect added in v0.13.0

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

func (*VariableDefinitionSet) Reset added in v0.13.0

func (x *VariableDefinitionSet) Reset()

func (*VariableDefinitionSet) SizeVT added in v0.13.0

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

func (*VariableDefinitionSet) String added in v0.13.0

func (x *VariableDefinitionSet) String() string

func (*VariableDefinitionSet) UnmarshalVT added in v0.13.0

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

func (*VariableDefinitionSet) UnmarshalVTUnsafe added in v0.13.0

func (m *VariableDefinitionSet) UnmarshalVTUnsafe(dAtA []byte) error

type VariableExpr

type VariableExpr struct {
	Type *Type `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// Types that are assignable to Expr:
	//
	//	*VariableExpr_By
	//	*VariableExpr_Map
	//	*VariableExpr_Call
	//	*VariableExpr_Message
	//	*VariableExpr_Validation
	Expr isVariableExpr_Expr `protobuf_oneof:"expr"`
	// contains filtered or unexported fields
}

func (*VariableExpr) CloneMessageVT

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

func (*VariableExpr) CloneVT

func (m *VariableExpr) CloneVT() *VariableExpr

func (*VariableExpr) Descriptor deprecated

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

Deprecated: Use VariableExpr.ProtoReflect.Descriptor instead.

func (*VariableExpr) EqualMessageVT

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

func (*VariableExpr) EqualVT

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

func (*VariableExpr) GetBy

func (x *VariableExpr) GetBy() *CELValue

func (*VariableExpr) GetCall

func (x *VariableExpr) GetCall() *CallExpr

func (*VariableExpr) GetExpr

func (m *VariableExpr) GetExpr() isVariableExpr_Expr

func (*VariableExpr) GetMap

func (x *VariableExpr) GetMap() *MapExpr

func (*VariableExpr) GetMessage

func (x *VariableExpr) GetMessage() *MessageExpr

func (*VariableExpr) GetType

func (x *VariableExpr) GetType() *Type

func (*VariableExpr) GetValidation

func (x *VariableExpr) GetValidation() *ValidationExpr

func (*VariableExpr) MarshalToSizedBufferVT

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

func (*VariableExpr) MarshalToSizedBufferVTStrict

func (m *VariableExpr) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr) MarshalToVT

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

func (*VariableExpr) MarshalToVTStrict

func (m *VariableExpr) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr) MarshalVT

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

func (*VariableExpr) MarshalVTStrict

func (m *VariableExpr) MarshalVTStrict() (dAtA []byte, err error)

func (*VariableExpr) ProtoMessage

func (*VariableExpr) ProtoMessage()

func (*VariableExpr) ProtoReflect

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

func (*VariableExpr) Reset

func (x *VariableExpr) Reset()

func (*VariableExpr) SizeVT

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

func (*VariableExpr) String

func (x *VariableExpr) String() string

func (*VariableExpr) UnmarshalVT

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

func (*VariableExpr) UnmarshalVTUnsafe

func (m *VariableExpr) UnmarshalVTUnsafe(dAtA []byte) error

type VariableExpr_By

type VariableExpr_By struct {
	By *CELValue `protobuf:"bytes,2,opt,name=by,proto3,oneof"`
}

func (*VariableExpr_By) CloneVT

func (m *VariableExpr_By) CloneVT() isVariableExpr_Expr

func (*VariableExpr_By) EqualVT

func (this *VariableExpr_By) EqualVT(thatIface isVariableExpr_Expr) bool

func (*VariableExpr_By) MarshalToSizedBufferVT

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

func (*VariableExpr_By) MarshalToSizedBufferVTStrict

func (m *VariableExpr_By) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_By) MarshalToVT

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

func (*VariableExpr_By) MarshalToVTStrict

func (m *VariableExpr_By) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_By) SizeVT

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

type VariableExpr_Call

type VariableExpr_Call struct {
	Call *CallExpr `protobuf:"bytes,4,opt,name=call,proto3,oneof"`
}

func (*VariableExpr_Call) CloneVT

func (m *VariableExpr_Call) CloneVT() isVariableExpr_Expr

func (*VariableExpr_Call) EqualVT

func (this *VariableExpr_Call) EqualVT(thatIface isVariableExpr_Expr) bool

func (*VariableExpr_Call) MarshalToSizedBufferVT

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

func (*VariableExpr_Call) MarshalToSizedBufferVTStrict

func (m *VariableExpr_Call) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Call) MarshalToVT

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

func (*VariableExpr_Call) MarshalToVTStrict

func (m *VariableExpr_Call) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Call) SizeVT

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

type VariableExpr_Map

type VariableExpr_Map struct {
	Map *MapExpr `protobuf:"bytes,3,opt,name=map,proto3,oneof"`
}

func (*VariableExpr_Map) CloneVT

func (m *VariableExpr_Map) CloneVT() isVariableExpr_Expr

func (*VariableExpr_Map) EqualVT

func (this *VariableExpr_Map) EqualVT(thatIface isVariableExpr_Expr) bool

func (*VariableExpr_Map) MarshalToSizedBufferVT

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

func (*VariableExpr_Map) MarshalToSizedBufferVTStrict

func (m *VariableExpr_Map) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Map) MarshalToVT

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

func (*VariableExpr_Map) MarshalToVTStrict

func (m *VariableExpr_Map) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Map) SizeVT

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

type VariableExpr_Message

type VariableExpr_Message struct {
	Message *MessageExpr `protobuf:"bytes,5,opt,name=message,proto3,oneof"`
}

func (*VariableExpr_Message) CloneVT

func (m *VariableExpr_Message) CloneVT() isVariableExpr_Expr

func (*VariableExpr_Message) EqualVT

func (this *VariableExpr_Message) EqualVT(thatIface isVariableExpr_Expr) bool

func (*VariableExpr_Message) MarshalToSizedBufferVT

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

func (*VariableExpr_Message) MarshalToSizedBufferVTStrict

func (m *VariableExpr_Message) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Message) MarshalToVT

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

func (*VariableExpr_Message) MarshalToVTStrict

func (m *VariableExpr_Message) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Message) SizeVT

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

type VariableExpr_Validation

type VariableExpr_Validation struct {
	Validation *ValidationExpr `protobuf:"bytes,6,opt,name=validation,proto3,oneof"`
}

func (*VariableExpr_Validation) CloneVT

func (m *VariableExpr_Validation) CloneVT() isVariableExpr_Expr

func (*VariableExpr_Validation) EqualVT

func (this *VariableExpr_Validation) EqualVT(thatIface isVariableExpr_Expr) bool

func (*VariableExpr_Validation) MarshalToSizedBufferVT

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

func (*VariableExpr_Validation) MarshalToSizedBufferVTStrict

func (m *VariableExpr_Validation) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Validation) MarshalToVT

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

func (*VariableExpr_Validation) MarshalToVTStrict

func (m *VariableExpr_Validation) MarshalToVTStrict(dAtA []byte) (int, error)

func (*VariableExpr_Validation) SizeVT

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

Jump to

Keyboard shortcuts

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