Documentation
¶
Index ¶
- Variables
- type CELPluginGRPCMetadata
- func (*CELPluginGRPCMetadata) Descriptor() ([]byte, []int)deprecated
- func (x *CELPluginGRPCMetadata) GetKey() string
- func (x *CELPluginGRPCMetadata) GetValues() []string
- func (*CELPluginGRPCMetadata) ProtoMessage()
- func (x *CELPluginGRPCMetadata) ProtoReflect() protoreflect.Message
- func (x *CELPluginGRPCMetadata) Reset()
- func (x *CELPluginGRPCMetadata) String() string
- type CELPluginListValue
- func (*CELPluginListValue) Descriptor() ([]byte, []int)deprecated
- func (x *CELPluginListValue) GetValues() []*CELPluginValue
- func (*CELPluginListValue) ProtoMessage()
- func (x *CELPluginListValue) ProtoReflect() protoreflect.Message
- func (x *CELPluginListValue) Reset()
- func (x *CELPluginListValue) String() string
- type CELPluginRequest
- func (*CELPluginRequest) Descriptor() ([]byte, []int)deprecated
- func (x *CELPluginRequest) GetArgs() []*CELPluginValue
- func (x *CELPluginRequest) GetMetadata() []*CELPluginGRPCMetadata
- func (x *CELPluginRequest) GetMethod() string
- func (*CELPluginRequest) ProtoMessage()
- func (x *CELPluginRequest) ProtoReflect() protoreflect.Message
- func (x *CELPluginRequest) Reset()
- func (x *CELPluginRequest) String() string
- type CELPluginResponse
- func (*CELPluginResponse) Descriptor() ([]byte, []int)deprecated
- func (x *CELPluginResponse) GetError() string
- func (x *CELPluginResponse) GetValue() *CELPluginValue
- func (*CELPluginResponse) ProtoMessage()
- func (x *CELPluginResponse) ProtoReflect() protoreflect.Message
- func (x *CELPluginResponse) Reset()
- func (x *CELPluginResponse) String() string
- type CELPluginValue
- func (*CELPluginValue) Descriptor() ([]byte, []int)deprecated
- func (x *CELPluginValue) GetBool() bool
- func (x *CELPluginValue) GetBytes() []byte
- func (x *CELPluginValue) GetDouble() float64
- func (x *CELPluginValue) GetInt64() int64
- func (x *CELPluginValue) GetList() *CELPluginListValue
- func (x *CELPluginValue) GetMessage() *anypb.Any
- func (x *CELPluginValue) GetPtr() uint64
- func (x *CELPluginValue) GetString_() string
- func (x *CELPluginValue) GetUint64() uint64
- func (m *CELPluginValue) GetValue() isCELPluginValue_Value
- func (*CELPluginValue) ProtoMessage()
- func (x *CELPluginValue) ProtoReflect() protoreflect.Message
- func (x *CELPluginValue) Reset()
- func (x *CELPluginValue) String() string
- type CELPluginValue_Bool
- type CELPluginValue_Bytes
- type CELPluginValue_Double
- type CELPluginValue_Int64
- type CELPluginValue_List
- type CELPluginValue_Message
- type CELPluginValue_Ptr
- type CELPluginValue_String_
- type CELPluginValue_Uint64
Constants ¶
This section is empty.
Variables ¶
View Source
var File_grpc_federation_plugin_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type CELPluginGRPCMetadata ¶
type CELPluginGRPCMetadata struct {
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
Values []string `protobuf:"bytes,2,rep,name=values,proto3" json:"values,omitempty"`
// contains filtered or unexported fields
}
func (*CELPluginGRPCMetadata) Descriptor
deprecated
func (*CELPluginGRPCMetadata) Descriptor() ([]byte, []int)
Deprecated: Use CELPluginGRPCMetadata.ProtoReflect.Descriptor instead.
func (*CELPluginGRPCMetadata) GetKey ¶
func (x *CELPluginGRPCMetadata) GetKey() string
func (*CELPluginGRPCMetadata) GetValues ¶
func (x *CELPluginGRPCMetadata) GetValues() []string
func (*CELPluginGRPCMetadata) ProtoMessage ¶
func (*CELPluginGRPCMetadata) ProtoMessage()
func (*CELPluginGRPCMetadata) ProtoReflect ¶
func (x *CELPluginGRPCMetadata) ProtoReflect() protoreflect.Message
func (*CELPluginGRPCMetadata) Reset ¶
func (x *CELPluginGRPCMetadata) Reset()
func (*CELPluginGRPCMetadata) String ¶
func (x *CELPluginGRPCMetadata) String() string
type CELPluginListValue ¶ added in v1.7.2
type CELPluginListValue struct {
Values []*CELPluginValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
// contains filtered or unexported fields
}
func (*CELPluginListValue) Descriptor
deprecated
added in
v1.7.2
func (*CELPluginListValue) Descriptor() ([]byte, []int)
Deprecated: Use CELPluginListValue.ProtoReflect.Descriptor instead.
func (*CELPluginListValue) GetValues ¶ added in v1.7.2
func (x *CELPluginListValue) GetValues() []*CELPluginValue
func (*CELPluginListValue) ProtoMessage ¶ added in v1.7.2
func (*CELPluginListValue) ProtoMessage()
func (*CELPluginListValue) ProtoReflect ¶ added in v1.7.2
func (x *CELPluginListValue) ProtoReflect() protoreflect.Message
func (*CELPluginListValue) Reset ¶ added in v1.7.2
func (x *CELPluginListValue) Reset()
func (*CELPluginListValue) String ¶ added in v1.7.2
func (x *CELPluginListValue) String() string
type CELPluginRequest ¶
type CELPluginRequest struct {
Method string `protobuf:"bytes,1,opt,name=method,proto3" json:"method,omitempty"`
Metadata []*CELPluginGRPCMetadata `protobuf:"bytes,2,rep,name=metadata,proto3" json:"metadata,omitempty"`
Args []*CELPluginValue `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"`
// contains filtered or unexported fields
}
func (*CELPluginRequest) Descriptor
deprecated
func (*CELPluginRequest) Descriptor() ([]byte, []int)
Deprecated: Use CELPluginRequest.ProtoReflect.Descriptor instead.
func (*CELPluginRequest) GetArgs ¶
func (x *CELPluginRequest) GetArgs() []*CELPluginValue
func (*CELPluginRequest) GetMetadata ¶
func (x *CELPluginRequest) GetMetadata() []*CELPluginGRPCMetadata
func (*CELPluginRequest) GetMethod ¶
func (x *CELPluginRequest) GetMethod() string
func (*CELPluginRequest) ProtoMessage ¶
func (*CELPluginRequest) ProtoMessage()
func (*CELPluginRequest) ProtoReflect ¶
func (x *CELPluginRequest) ProtoReflect() protoreflect.Message
func (*CELPluginRequest) Reset ¶
func (x *CELPluginRequest) Reset()
func (*CELPluginRequest) String ¶
func (x *CELPluginRequest) String() string
type CELPluginResponse ¶
type CELPluginResponse struct {
Value *CELPluginValue `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
Error string `protobuf:"bytes,2,opt,name=error,proto3" json:"error,omitempty"`
// contains filtered or unexported fields
}
func (*CELPluginResponse) Descriptor
deprecated
func (*CELPluginResponse) Descriptor() ([]byte, []int)
Deprecated: Use CELPluginResponse.ProtoReflect.Descriptor instead.
func (*CELPluginResponse) GetError ¶
func (x *CELPluginResponse) GetError() string
func (*CELPluginResponse) GetValue ¶
func (x *CELPluginResponse) GetValue() *CELPluginValue
func (*CELPluginResponse) ProtoMessage ¶
func (*CELPluginResponse) ProtoMessage()
func (*CELPluginResponse) ProtoReflect ¶
func (x *CELPluginResponse) ProtoReflect() protoreflect.Message
func (*CELPluginResponse) Reset ¶
func (x *CELPluginResponse) Reset()
func (*CELPluginResponse) String ¶
func (x *CELPluginResponse) String() string
type CELPluginValue ¶
type CELPluginValue struct {
// Types that are assignable to Value:
//
// *CELPluginValue_Int64
// *CELPluginValue_Uint64
// *CELPluginValue_Double
// *CELPluginValue_String_
// *CELPluginValue_Bytes
// *CELPluginValue_Bool
// *CELPluginValue_Ptr
// *CELPluginValue_Message
// *CELPluginValue_List
Value isCELPluginValue_Value `protobuf_oneof:"value"`
// contains filtered or unexported fields
}
func (*CELPluginValue) Descriptor
deprecated
func (*CELPluginValue) Descriptor() ([]byte, []int)
Deprecated: Use CELPluginValue.ProtoReflect.Descriptor instead.
func (*CELPluginValue) GetBool ¶
func (x *CELPluginValue) GetBool() bool
func (*CELPluginValue) GetBytes ¶
func (x *CELPluginValue) GetBytes() []byte
func (*CELPluginValue) GetDouble ¶
func (x *CELPluginValue) GetDouble() float64
func (*CELPluginValue) GetInt64 ¶
func (x *CELPluginValue) GetInt64() int64
func (*CELPluginValue) GetList ¶ added in v1.7.2
func (x *CELPluginValue) GetList() *CELPluginListValue
func (*CELPluginValue) GetMessage ¶
func (x *CELPluginValue) GetMessage() *anypb.Any
func (*CELPluginValue) GetPtr ¶
func (x *CELPluginValue) GetPtr() uint64
func (*CELPluginValue) GetString_ ¶
func (x *CELPluginValue) GetString_() string
func (*CELPluginValue) GetUint64 ¶
func (x *CELPluginValue) GetUint64() uint64
func (*CELPluginValue) GetValue ¶
func (m *CELPluginValue) GetValue() isCELPluginValue_Value
func (*CELPluginValue) ProtoMessage ¶
func (*CELPluginValue) ProtoMessage()
func (*CELPluginValue) ProtoReflect ¶
func (x *CELPluginValue) ProtoReflect() protoreflect.Message
func (*CELPluginValue) Reset ¶
func (x *CELPluginValue) Reset()
func (*CELPluginValue) String ¶
func (x *CELPluginValue) String() string
type CELPluginValue_Bool ¶
type CELPluginValue_Bool struct {
Bool bool `protobuf:"varint,6,opt,name=bool,proto3,oneof"`
}
type CELPluginValue_Bytes ¶
type CELPluginValue_Bytes struct {
Bytes []byte `protobuf:"bytes,5,opt,name=bytes,proto3,oneof"`
}
type CELPluginValue_Double ¶
type CELPluginValue_Double struct {
Double float64 `protobuf:"fixed64,3,opt,name=double,proto3,oneof"`
}
type CELPluginValue_Int64 ¶
type CELPluginValue_Int64 struct {
Int64 int64 `protobuf:"varint,1,opt,name=int64,proto3,oneof"`
}
type CELPluginValue_List ¶ added in v1.7.2
type CELPluginValue_List struct {
List *CELPluginListValue `protobuf:"bytes,9,opt,name=list,proto3,oneof"`
}
type CELPluginValue_Message ¶
type CELPluginValue_Ptr ¶
type CELPluginValue_Ptr struct {
Ptr uint64 `protobuf:"varint,7,opt,name=ptr,proto3,oneof"`
}
type CELPluginValue_String_ ¶
type CELPluginValue_String_ struct {
String_ string `protobuf:"bytes,4,opt,name=string,proto3,oneof"`
}
type CELPluginValue_Uint64 ¶
type CELPluginValue_Uint64 struct {
Uint64 uint64 `protobuf:"varint,2,opt,name=uint64,proto3,oneof"`
}
Click to show internal directories.
Click to hide internal directories.