Documentation ¶
Overview ¶
Package samplecheck is a generated protocol buffer package.
It is generated from these files:
mixer/test/spyAdapter/template/check/tmpl_handler_service.proto
It has these top-level messages:
HandleSampleCheckRequest InstanceMsg Type InstanceParam
Index ¶
- Constants
- Variables
- func RegisterHandleSampleCheckServiceServer(s *grpc.Server, srv HandleSampleCheckServiceServer)
- type HandleSampleCheckRequest
- func (*HandleSampleCheckRequest) Descriptor() ([]byte, []int)
- func (m *HandleSampleCheckRequest) Marshal() (dAtA []byte, err error)
- func (m *HandleSampleCheckRequest) MarshalTo(dAtA []byte) (int, error)
- func (*HandleSampleCheckRequest) ProtoMessage()
- func (m *HandleSampleCheckRequest) Reset()
- func (m *HandleSampleCheckRequest) Size() (n int)
- func (this *HandleSampleCheckRequest) String() string
- func (m *HandleSampleCheckRequest) Unmarshal(dAtA []byte) error
- type HandleSampleCheckServiceClient
- type HandleSampleCheckServiceServer
- 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 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 = "samplecheck"
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 RegisterHandleSampleCheckServiceServer ¶
func RegisterHandleSampleCheckServiceServer(s *grpc.Server, srv HandleSampleCheckServiceServer)
Types ¶
type HandleSampleCheckRequest ¶
type HandleSampleCheckRequest struct { // 'samplecheck' 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 HandleSampleCheck method.
func (*HandleSampleCheckRequest) Descriptor ¶
func (*HandleSampleCheckRequest) Descriptor() ([]byte, []int)
func (*HandleSampleCheckRequest) Marshal ¶
func (m *HandleSampleCheckRequest) Marshal() (dAtA []byte, err error)
func (*HandleSampleCheckRequest) MarshalTo ¶
func (m *HandleSampleCheckRequest) MarshalTo(dAtA []byte) (int, error)
func (*HandleSampleCheckRequest) ProtoMessage ¶
func (*HandleSampleCheckRequest) ProtoMessage()
func (*HandleSampleCheckRequest) Reset ¶
func (m *HandleSampleCheckRequest) Reset()
func (*HandleSampleCheckRequest) Size ¶
func (m *HandleSampleCheckRequest) Size() (n int)
func (*HandleSampleCheckRequest) String ¶
func (this *HandleSampleCheckRequest) String() string
func (*HandleSampleCheckRequest) Unmarshal ¶
func (m *HandleSampleCheckRequest) Unmarshal(dAtA []byte) error
type HandleSampleCheckServiceClient ¶
type HandleSampleCheckServiceClient interface { // HandleSampleCheck is called by Mixer at request-time to deliver 'samplecheck' instances to the backend. HandleSampleCheck(ctx context.Context, in *HandleSampleCheckRequest, opts ...grpc.CallOption) (*istio_mixer_adapter_model_v1beta11.CheckResult, error) }
func NewHandleSampleCheckServiceClient ¶
func NewHandleSampleCheckServiceClient(cc *grpc.ClientConn) HandleSampleCheckServiceClient
type HandleSampleCheckServiceServer ¶
type HandleSampleCheckServiceServer interface { // HandleSampleCheck is called by Mixer at request-time to deliver 'samplecheck' instances to the backend. HandleSampleCheck(context.Context, *HandleSampleCheckRequest) (*istio_mixer_adapter_model_v1beta11.CheckResult, error) }
type Handler ¶
type Handler interface { adapter.Handler // HandleSampleCheck is called by Mixer at request time to deliver instances to // to an adapter. HandleSampleCheck(context.Context, *Instance) (adapter.CheckResult, error) }
Handler must be implemented by adapter code if it wants to process data associated with the 'samplecheck' 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.
The name of each instance can be used as a key into the Type map supplied to the adapter at configuration time via the method 'SetSampleCheckTypes'. These Type associated with an instance describes the shape of the instance
type HandlerBuilder ¶
type HandlerBuilder interface { adapter.HandlerBuilder // SetSampleCheckTypes is invoked by Mixer to pass the template-specific Type information for instances that an adapter // may receive at runtime. The type information describes the shape of the instance. SetSampleCheckTypes(map[string]*Type) }
HandlerBuilder must be implemented by adapters if they want to process data associated with the 'samplecheck' 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 StringPrimitive string }
Instance is constructed by Mixer for the 'samplecheck' 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"` StringPrimitive string `protobuf:"bytes,4,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"` }
Contains instance payload for 'samplecheck' template. This is passed to infrastructure backends during request-time through HandleSampleCheckService.HandleSampleCheck.
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 {
StringPrimitive string `protobuf:"bytes,4,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"`
}
Represents instance configuration schema for 'samplecheck' 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 Type ¶
type Type struct { }
Contains inferred type information about specific instance of 'samplecheck' 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()