Documentation ¶
Overview ¶
Package sampleapa is a generated protocol buffer package.
It is generated from these files:
mixer/test/spyAdapter/template/apa/tmpl_handler_service.proto
It has these top-level messages:
HandleSampleApaRequest OutputMsg InstanceMsg Type InstanceParam
Index ¶
- Constants
- Variables
- func RegisterHandleSampleApaServiceServer(s *grpc.Server, srv HandleSampleApaServiceServer)
- type HandleSampleApaRequest
- func (*HandleSampleApaRequest) Descriptor() ([]byte, []int)
- func (m *HandleSampleApaRequest) Marshal() (dAtA []byte, err error)
- func (m *HandleSampleApaRequest) MarshalTo(dAtA []byte) (int, error)
- func (*HandleSampleApaRequest) ProtoMessage()
- func (m *HandleSampleApaRequest) Reset()
- func (m *HandleSampleApaRequest) Size() (n int)
- func (this *HandleSampleApaRequest) String() string
- func (m *HandleSampleApaRequest) Unmarshal(dAtA []byte) error
- type HandleSampleApaServiceClient
- type HandleSampleApaServiceServer
- type Handler
- type HandlerBuilder
- type Instance
- type InstanceMsg
- func (*InstanceMsg) Descriptor() ([]byte, []int)
- func (m *InstanceMsg) Marshal() (dAtA []byte, err error)
- func (m *InstanceMsg) MarshalTo(dAtA []byte) (int, error)
- func (*InstanceMsg) ProtoMessage()
- func (m *InstanceMsg) Reset()
- func (m *InstanceMsg) Size() (n int)
- func (this *InstanceMsg) String() string
- func (m *InstanceMsg) Unmarshal(dAtA []byte) error
- type InstanceParam
- func (*InstanceParam) Descriptor() ([]byte, []int)
- func (m *InstanceParam) Marshal() (dAtA []byte, err error)
- func (m *InstanceParam) MarshalTo(dAtA []byte) (int, error)
- func (*InstanceParam) ProtoMessage()
- func (m *InstanceParam) Reset()
- func (m *InstanceParam) Size() (n int)
- func (this *InstanceParam) String() string
- func (m *InstanceParam) Unmarshal(dAtA []byte) error
- type Output
- func (o *Output) SetBoolPrimitive(val bool)
- func (o *Output) SetDns(val adapter.DNSName)
- func (o *Output) SetDoublePrimitive(val float64)
- func (o *Output) SetDuration(val time.Duration)
- func (o *Output) SetInt64Primitive(val int64)
- func (o *Output) SetIp(val net.IP)
- func (o *Output) SetStringMap(val map[string]string)
- func (o *Output) SetStringPrimitive(val string)
- func (o *Output) SetTimestamp(val time.Time)
- func (o *Output) WasSet(field string) bool
- type OutputMsg
- func (*OutputMsg) Descriptor() ([]byte, []int)
- func (m *OutputMsg) Marshal() (dAtA []byte, err error)
- func (m *OutputMsg) MarshalTo(dAtA []byte) (int, error)
- func (*OutputMsg) ProtoMessage()
- func (m *OutputMsg) Reset()
- func (m *OutputMsg) Size() (n int)
- func (this *OutputMsg) String() string
- func (m *OutputMsg) Unmarshal(dAtA []byte) error
- type Type
- func (*Type) Descriptor() ([]byte, []int)
- func (m *Type) Marshal() (dAtA []byte, err error)
- func (m *Type) MarshalTo(dAtA []byte) (int, error)
- func (*Type) ProtoMessage()
- func (m *Type) Reset()
- func (m *Type) Size() (n int)
- func (this *Type) String() string
- func (m *Type) Unmarshal(dAtA []byte) error
Constants ¶
const TemplateName = "sampleapa"
Fully qualified name of the template
Variables ¶
var ( ErrInvalidLengthTmplHandlerService = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowTmplHandlerService = fmt.Errorf("proto: integer overflow") )
Functions ¶
func RegisterHandleSampleApaServiceServer ¶
func RegisterHandleSampleApaServiceServer(s *grpc.Server, srv HandleSampleApaServiceServer)
Types ¶
type HandleSampleApaRequest ¶
type HandleSampleApaRequest struct { // 'sampleapa' instance. Instance *InstanceMsg `protobuf:"bytes,1,opt,name=instance" json:"instance,omitempty"` // Adapter specific handler configuration. // // Note: Backends can also implement [InfrastructureBackend][https://istio.io/docs/reference/config/mixer/istio.mixer.adapter.model.v1beta1.html#InfrastructureBackend] // service and therefore opt to receive handler configuration during session creation through [InfrastructureBackend.CreateSession][TODO: Link to this fragment] // call. In that case, adapter_config will have type_url as 'google.protobuf.Any.type_url' and would contain string // value of session_id (returned from InfrastructureBackend.CreateSession). AdapterConfig *google_protobuf1.Any `protobuf:"bytes,2,opt,name=adapter_config,json=adapterConfig" json:"adapter_config,omitempty"` // Id to dedupe identical requests from Mixer. DedupId string `protobuf:"bytes,3,opt,name=dedup_id,json=dedupId,proto3" json:"dedup_id,omitempty"` }
Request message for HandleSampleApa method.
func (*HandleSampleApaRequest) Descriptor ¶
func (*HandleSampleApaRequest) Descriptor() ([]byte, []int)
func (*HandleSampleApaRequest) Marshal ¶
func (m *HandleSampleApaRequest) Marshal() (dAtA []byte, err error)
func (*HandleSampleApaRequest) MarshalTo ¶
func (m *HandleSampleApaRequest) MarshalTo(dAtA []byte) (int, error)
func (*HandleSampleApaRequest) ProtoMessage ¶
func (*HandleSampleApaRequest) ProtoMessage()
func (*HandleSampleApaRequest) Reset ¶
func (m *HandleSampleApaRequest) Reset()
func (*HandleSampleApaRequest) Size ¶
func (m *HandleSampleApaRequest) Size() (n int)
func (*HandleSampleApaRequest) String ¶
func (this *HandleSampleApaRequest) String() string
func (*HandleSampleApaRequest) Unmarshal ¶
func (m *HandleSampleApaRequest) Unmarshal(dAtA []byte) error
type HandleSampleApaServiceClient ¶
type HandleSampleApaServiceClient interface { // HandleSampleApa is called by Mixer at request-time to deliver 'sampleapa' instances to the backend. HandleSampleApa(ctx context.Context, in *HandleSampleApaRequest, opts ...grpc.CallOption) (*OutputMsg, error) }
func NewHandleSampleApaServiceClient ¶
func NewHandleSampleApaServiceClient(cc *grpc.ClientConn) HandleSampleApaServiceClient
type HandleSampleApaServiceServer ¶
type HandleSampleApaServiceServer interface { // HandleSampleApa is called by Mixer at request-time to deliver 'sampleapa' instances to the backend. HandleSampleApa(context.Context, *HandleSampleApaRequest) (*OutputMsg, error) }
type Handler ¶
type Handler interface { adapter.Handler // HandleSampleApa is called by Mixer at request time to deliver instances to // to an adapter. GenerateSampleApaAttributes(context.Context, *Instance) (*Output, error) }
Handler must be implemented by adapter code if it wants to process data associated with the 'sampleapa' template.
Mixer uses this interface to call into the adapter at request time in order to dispatch created instances to the adapter. Adapters take the incoming instances and do what they need to achieve their primary function.
type HandlerBuilder ¶
type HandlerBuilder interface { adapter.HandlerBuilder }
HandlerBuilder must be implemented by adapters if they want to process data associated with the 'sampleapa' template.
Mixer uses this interface to call into the adapter at configuration time to configure it with adapter-specific configuration as well as all template-specific type information.
type Instance ¶
type Instance struct { // Name of the instance as specified in configuration. Name string Int64Primitive int64 BoolPrimitive bool DoublePrimitive float64 StringPrimitive string }
Instance is constructed by Mixer for the 'sampleapa' template.
type InstanceMsg ¶
type InstanceMsg struct { // Name of the instance as specified in configuration. Name string `protobuf:"bytes,72295727,opt,name=name,proto3" json:"name,omitempty"` Int64Primitive int64 `protobuf:"varint,1,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"` BoolPrimitive bool `protobuf:"varint,2,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"` DoublePrimitive float64 `protobuf:"fixed64,3,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"` StringPrimitive string `protobuf:"bytes,4,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"` }
Contains instance payload for 'sampleapa' template. This is passed to infrastructure backends during request-time through HandleSampleApaService.HandleSampleApa.
func (*InstanceMsg) Descriptor ¶
func (*InstanceMsg) Descriptor() ([]byte, []int)
func (*InstanceMsg) Marshal ¶
func (m *InstanceMsg) Marshal() (dAtA []byte, err error)
func (*InstanceMsg) ProtoMessage ¶
func (*InstanceMsg) ProtoMessage()
func (*InstanceMsg) Reset ¶
func (m *InstanceMsg) Reset()
func (*InstanceMsg) Size ¶
func (m *InstanceMsg) Size() (n int)
func (*InstanceMsg) String ¶
func (this *InstanceMsg) String() string
func (*InstanceMsg) Unmarshal ¶
func (m *InstanceMsg) Unmarshal(dAtA []byte) error
type InstanceParam ¶
type InstanceParam struct { Int64Primitive string `protobuf:"bytes,1,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"` BoolPrimitive string `protobuf:"bytes,2,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"` DoublePrimitive string `protobuf:"bytes,3,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"` StringPrimitive string `protobuf:"bytes,4,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"` // Attribute names to expression mapping. These expressions can use the fields from the output object // returned by the attribute producing adapters using $out.<fieldName> notation. For example: // source.ip : $out.source_pod_ip // In the above example, source.ip attribute will be added to the existing attribute list and its value will be set to // the value of source_pod_ip field of the output returned by the adapter. AttributeBindings map[string]string `` /* 200-byte string literal not displayed */ }
Represents instance configuration schema for 'sampleapa' template.
func (*InstanceParam) Descriptor ¶
func (*InstanceParam) Descriptor() ([]byte, []int)
func (*InstanceParam) Marshal ¶
func (m *InstanceParam) Marshal() (dAtA []byte, err error)
func (*InstanceParam) ProtoMessage ¶
func (*InstanceParam) ProtoMessage()
func (*InstanceParam) Reset ¶
func (m *InstanceParam) Reset()
func (*InstanceParam) Size ¶
func (m *InstanceParam) Size() (n int)
func (*InstanceParam) String ¶
func (this *InstanceParam) String() string
func (*InstanceParam) Unmarshal ¶
func (m *InstanceParam) Unmarshal(dAtA []byte) error
type Output ¶
type Output struct { Int64Primitive int64 BoolPrimitive bool DoublePrimitive float64 StringPrimitive string StringMap map[string]string Ip net.IP Duration time.Duration Timestamp time.Time Dns adapter.DNSName // contains filtered or unexported fields }
Output struct is returned by the attribute producing adapters that handle this template.
func (*Output) SetBoolPrimitive ¶
func (*Output) SetDoublePrimitive ¶
func (*Output) SetDuration ¶
func (*Output) SetInt64Primitive ¶
func (*Output) SetStringMap ¶
func (*Output) SetStringPrimitive ¶
func (*Output) SetTimestamp ¶
type OutputMsg ¶
type OutputMsg struct { Int64Primitive int64 `protobuf:"varint,1,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"` BoolPrimitive bool `protobuf:"varint,2,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"` DoublePrimitive float64 `protobuf:"fixed64,3,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"` StringPrimitive string `protobuf:"bytes,4,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"` StringMap map[string]string `` /* 152-byte string literal not displayed */ Ip *istio_policy_v1beta1.IPAddress `protobuf:"bytes,6,opt,name=ip" json:"ip,omitempty"` Duration *istio_policy_v1beta1.Duration `protobuf:"bytes,7,opt,name=duration" json:"duration,omitempty"` Timestamp *istio_policy_v1beta1.TimeStamp `protobuf:"bytes,8,opt,name=timestamp" json:"timestamp,omitempty"` Dns *istio_policy_v1beta1.DNSName `protobuf:"bytes,9,opt,name=dns" json:"dns,omitempty"` }
Contains output payload for 'sampleapa' template.
func (*OutputMsg) Descriptor ¶
func (*OutputMsg) ProtoMessage ¶
func (*OutputMsg) ProtoMessage()
type Type ¶
type Type struct { }
Contains inferred type information about specific instance of 'sampleapa' template. This is passed to infrastructure backends during configuration-time through [InfrastructureBackend.CreateSession][TODO: Link to this fragment].
func (*Type) Descriptor ¶
func (*Type) ProtoMessage ¶
func (*Type) ProtoMessage()