istio_mixer_adapter_sample_report

package
v0.0.0-...-d8a8f93 Latest Latest
Warning

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

Go to latest
Published: May 2, 2019 License: Apache-2.0 Imports: 18 Imported by: 0

Documentation

Overview

Package istio_mixer_adapter_sample_report is a generated protocol buffer package.

It is generated from these files:

mixer/template/sample/report/ReportTesterTemplate_handler_service.proto

It has these top-level messages:

HandleReportRequest
InstanceMsg
Res1Msg
Res2Msg
Type
Res1Type
Res2Type
InstanceParam
Res1InstanceParam
Res2InstanceParam

Index

Constants

View Source
const TemplateName = "report"

Fully qualified name of the template

Variables

View Source
var (
	ErrInvalidLengthReportTesterTemplateHandlerService = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowReportTesterTemplateHandlerService   = fmt.Errorf("proto: integer overflow")
)

Functions

func RegisterHandleReportServiceServer

func RegisterHandleReportServiceServer(s *grpc.Server, srv HandleReportServiceServer)

Types

type HandleReportRequest

type HandleReportRequest struct {
	// 'report' instances.
	Instances []*InstanceMsg `protobuf:"bytes,1,rep,name=instances" json:"instances,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 HandleReport method.

func (*HandleReportRequest) Descriptor

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

func (*HandleReportRequest) Marshal

func (m *HandleReportRequest) Marshal() (dAtA []byte, err error)

func (*HandleReportRequest) MarshalTo

func (m *HandleReportRequest) MarshalTo(dAtA []byte) (int, error)

func (*HandleReportRequest) ProtoMessage

func (*HandleReportRequest) ProtoMessage()

func (*HandleReportRequest) Reset

func (m *HandleReportRequest) Reset()

func (*HandleReportRequest) Size

func (m *HandleReportRequest) Size() (n int)

func (*HandleReportRequest) String

func (this *HandleReportRequest) String() string

func (*HandleReportRequest) Unmarshal

func (m *HandleReportRequest) Unmarshal(dAtA []byte) error

type HandleReportServiceClient

type HandleReportServiceClient interface {
	// HandleReport is called by Mixer at request-time to deliver 'report' instances to the backend.
	HandleReport(ctx context.Context, in *HandleReportRequest, opts ...grpc.CallOption) (*istio_mixer_adapter_model_v1beta11.ReportResult, error)
}

func NewHandleReportServiceClient

func NewHandleReportServiceClient(cc *grpc.ClientConn) HandleReportServiceClient

type HandleReportServiceServer

type HandleReportServiceServer interface {
	// HandleReport is called by Mixer at request-time to deliver 'report' instances to the backend.
	HandleReport(context.Context, *HandleReportRequest) (*istio_mixer_adapter_model_v1beta11.ReportResult, error)
}

type Handler

type Handler interface {
	adapter.Handler

	// HandleReport is called by Mixer at request time to deliver instances to
	// to an adapter.
	HandleReport(context.Context, []*Instance) error
}

Handler must be implemented by adapter code if it wants to process data associated with the 'report' 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 'SetReportTypes'. These Type associated with an instance describes the shape of the instance

type HandlerBuilder

type HandlerBuilder interface {
	adapter.HandlerBuilder

	// SetReportTypes 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.
	SetReportTypes(map[string]*Type)
}

HandlerBuilder must be implemented by adapters if they want to process data associated with the 'report' 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

	Value interface{}

	Dimensions map[string]interface{}

	Int64Primitive int64

	BoolPrimitive bool

	DoublePrimitive float64

	StringPrimitive string

	Int64Map map[string]int64

	TimeStamp time.Time

	Duration time.Duration

	Res1 *Res1
}

Instance is constructed by Mixer for the 'report' 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"`
	Value           *istio_policy_v1beta11.Value            `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
	Dimensions      map[string]*istio_policy_v1beta11.Value `` /* 147-byte string literal not displayed */
	Int64Primitive  int64                                   `protobuf:"varint,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	BoolPrimitive   bool                                    `protobuf:"varint,4,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"`
	DoublePrimitive float64                                 `protobuf:"fixed64,5,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"`
	StringPrimitive string                                  `protobuf:"bytes,6,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"`
	Int64Map        map[string]int64                        `` /* 151-byte string literal not displayed */
	TimeStamp       *istio_policy_v1beta11.TimeStamp        `protobuf:"bytes,9,opt,name=timeStamp" json:"timeStamp,omitempty"`
	Duration        *istio_policy_v1beta11.Duration         `protobuf:"bytes,10,opt,name=duration" json:"duration,omitempty"`
	Res1            *Res1Msg                                `protobuf:"bytes,11,opt,name=res1" json:"res1,omitempty"`
}

Contains instance payload for 'report' template. This is passed to infrastructure backends during request-time through HandleReportService.HandleReport.

func (*InstanceMsg) Descriptor

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

func (*InstanceMsg) Marshal

func (m *InstanceMsg) Marshal() (dAtA []byte, err error)

func (*InstanceMsg) MarshalTo

func (m *InstanceMsg) MarshalTo(dAtA []byte) (int, 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 {
	Value           string             `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Dimensions      map[string]string  `` /* 154-byte string literal not displayed */
	Int64Primitive  string             `protobuf:"bytes,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	BoolPrimitive   string             `protobuf:"bytes,4,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"`
	DoublePrimitive string             `protobuf:"bytes,5,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"`
	StringPrimitive string             `protobuf:"bytes,6,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"`
	Int64Map        map[string]string  `` /* 150-byte string literal not displayed */
	TimeStamp       string             `protobuf:"bytes,9,opt,name=timeStamp,proto3" json:"timeStamp,omitempty"`
	Duration        string             `protobuf:"bytes,10,opt,name=duration,proto3" json:"duration,omitempty"`
	Res1            *Res1InstanceParam `protobuf:"bytes,11,opt,name=res1" json:"res1,omitempty"`
}

Represents instance configuration schema for 'report' template.

func (*InstanceParam) Descriptor

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

func (*InstanceParam) Marshal

func (m *InstanceParam) Marshal() (dAtA []byte, err error)

func (*InstanceParam) MarshalTo

func (m *InstanceParam) MarshalTo(dAtA []byte) (int, 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 Res1

type Res1 struct {
	Value interface{}

	Dimensions map[string]interface{}

	Int64Primitive int64

	BoolPrimitive bool

	DoublePrimitive float64

	StringPrimitive string

	Int64Map map[string]int64

	TimeStamp time.Time

	Duration time.Duration

	Res2 *Res2

	Res2Map map[string]*Res2
}

type Res1InstanceParam

type Res1InstanceParam struct {
	Value           string                        `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Dimensions      map[string]string             `` /* 154-byte string literal not displayed */
	Int64Primitive  string                        `protobuf:"bytes,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	BoolPrimitive   string                        `protobuf:"bytes,4,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"`
	DoublePrimitive string                        `protobuf:"bytes,5,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"`
	StringPrimitive string                        `protobuf:"bytes,6,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"`
	Int64Map        map[string]string             `` /* 150-byte string literal not displayed */
	TimeStamp       string                        `protobuf:"bytes,9,opt,name=timeStamp,proto3" json:"timeStamp,omitempty"`
	Duration        string                        `protobuf:"bytes,10,opt,name=duration,proto3" json:"duration,omitempty"`
	Res2            *Res2InstanceParam            `protobuf:"bytes,11,opt,name=res2" json:"res2,omitempty"`
	Res2Map         map[string]*Res2InstanceParam `` /* 157-byte string literal not displayed */
}

func (*Res1InstanceParam) Descriptor

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

func (*Res1InstanceParam) Marshal

func (m *Res1InstanceParam) Marshal() (dAtA []byte, err error)

func (*Res1InstanceParam) MarshalTo

func (m *Res1InstanceParam) MarshalTo(dAtA []byte) (int, error)

func (*Res1InstanceParam) ProtoMessage

func (*Res1InstanceParam) ProtoMessage()

func (*Res1InstanceParam) Reset

func (m *Res1InstanceParam) Reset()

func (*Res1InstanceParam) Size

func (m *Res1InstanceParam) Size() (n int)

func (*Res1InstanceParam) String

func (this *Res1InstanceParam) String() string

func (*Res1InstanceParam) Unmarshal

func (m *Res1InstanceParam) Unmarshal(dAtA []byte) error

type Res1Msg

type Res1Msg struct {
	Value           *istio_policy_v1beta11.Value            `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
	Dimensions      map[string]*istio_policy_v1beta11.Value `` /* 147-byte string literal not displayed */
	Int64Primitive  int64                                   `protobuf:"varint,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	BoolPrimitive   bool                                    `protobuf:"varint,4,opt,name=boolPrimitive,proto3" json:"boolPrimitive,omitempty"`
	DoublePrimitive float64                                 `protobuf:"fixed64,5,opt,name=doublePrimitive,proto3" json:"doublePrimitive,omitempty"`
	StringPrimitive string                                  `protobuf:"bytes,6,opt,name=stringPrimitive,proto3" json:"stringPrimitive,omitempty"`
	Int64Map        map[string]int64                        `` /* 151-byte string literal not displayed */
	TimeStamp       *istio_policy_v1beta11.TimeStamp        `protobuf:"bytes,9,opt,name=timeStamp" json:"timeStamp,omitempty"`
	Duration        *istio_policy_v1beta11.Duration         `protobuf:"bytes,10,opt,name=duration" json:"duration,omitempty"`
	Res2            *Res2Msg                                `protobuf:"bytes,11,opt,name=res2" json:"res2,omitempty"`
	Res2Map         map[string]*Res2Msg                     `` /* 157-byte string literal not displayed */
}

func (*Res1Msg) Descriptor

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

func (*Res1Msg) Marshal

func (m *Res1Msg) Marshal() (dAtA []byte, err error)

func (*Res1Msg) MarshalTo

func (m *Res1Msg) MarshalTo(dAtA []byte) (int, error)

func (*Res1Msg) ProtoMessage

func (*Res1Msg) ProtoMessage()

func (*Res1Msg) Reset

func (m *Res1Msg) Reset()

func (*Res1Msg) Size

func (m *Res1Msg) Size() (n int)

func (*Res1Msg) String

func (this *Res1Msg) String() string

func (*Res1Msg) Unmarshal

func (m *Res1Msg) Unmarshal(dAtA []byte) error

type Res1Type

type Res1Type struct {
	Value      istio_policy_v1beta1.ValueType            `protobuf:"varint,1,opt,name=value,proto3,enum=istio.policy.v1beta1.ValueType" json:"value,omitempty"`
	Dimensions map[string]istio_policy_v1beta1.ValueType `` /* 191-byte string literal not displayed */
	Res2       *Res2Type                                 `protobuf:"bytes,11,opt,name=res2" json:"res2,omitempty"`
	Res2Map    map[string]*Res2Type                      `` /* 157-byte string literal not displayed */
}

func (*Res1Type) Descriptor

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

func (*Res1Type) Marshal

func (m *Res1Type) Marshal() (dAtA []byte, err error)

func (*Res1Type) MarshalTo

func (m *Res1Type) MarshalTo(dAtA []byte) (int, error)

func (*Res1Type) ProtoMessage

func (*Res1Type) ProtoMessage()

func (*Res1Type) Reset

func (m *Res1Type) Reset()

func (*Res1Type) Size

func (m *Res1Type) Size() (n int)

func (*Res1Type) String

func (this *Res1Type) String() string

func (*Res1Type) Unmarshal

func (m *Res1Type) Unmarshal(dAtA []byte) error

type Res2

type Res2 struct {
	Value interface{}

	Dimensions map[string]interface{}

	Int64Primitive int64

	TimeStamp time.Time

	Duration time.Duration

	IpAddr net.IP

	DnsName adapter.DNSName

	EmailAddr adapter.EmailAddress

	Uri adapter.URI
}

type Res2InstanceParam

type Res2InstanceParam struct {
	Value          string            `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Dimensions     map[string]string `` /* 154-byte string literal not displayed */
	Int64Primitive string            `protobuf:"bytes,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	TimeStamp      string            `protobuf:"bytes,9,opt,name=timeStamp,proto3" json:"timeStamp,omitempty"`
	Duration       string            `protobuf:"bytes,10,opt,name=duration,proto3" json:"duration,omitempty"`
	IpAddr         string            `protobuf:"bytes,11,opt,name=ip_addr,json=ipAddr,proto3" json:"ip_addr,omitempty"`
	DnsName        string            `protobuf:"bytes,12,opt,name=dns_name,json=dnsName,proto3" json:"dns_name,omitempty"`
	EmailAddr      string            `protobuf:"bytes,13,opt,name=email_addr,json=emailAddr,proto3" json:"email_addr,omitempty"`
	Uri            string            `protobuf:"bytes,14,opt,name=uri,proto3" json:"uri,omitempty"`
}

func (*Res2InstanceParam) Descriptor

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

func (*Res2InstanceParam) Marshal

func (m *Res2InstanceParam) Marshal() (dAtA []byte, err error)

func (*Res2InstanceParam) MarshalTo

func (m *Res2InstanceParam) MarshalTo(dAtA []byte) (int, error)

func (*Res2InstanceParam) ProtoMessage

func (*Res2InstanceParam) ProtoMessage()

func (*Res2InstanceParam) Reset

func (m *Res2InstanceParam) Reset()

func (*Res2InstanceParam) Size

func (m *Res2InstanceParam) Size() (n int)

func (*Res2InstanceParam) String

func (this *Res2InstanceParam) String() string

func (*Res2InstanceParam) Unmarshal

func (m *Res2InstanceParam) Unmarshal(dAtA []byte) error

type Res2Msg

type Res2Msg struct {
	Value          *istio_policy_v1beta11.Value            `protobuf:"bytes,1,opt,name=value" json:"value,omitempty"`
	Dimensions     map[string]*istio_policy_v1beta11.Value `` /* 147-byte string literal not displayed */
	Int64Primitive int64                                   `protobuf:"varint,3,opt,name=int64Primitive,proto3" json:"int64Primitive,omitempty"`
	TimeStamp      *istio_policy_v1beta11.TimeStamp        `protobuf:"bytes,9,opt,name=timeStamp" json:"timeStamp,omitempty"`
	Duration       *istio_policy_v1beta11.Duration         `protobuf:"bytes,10,opt,name=duration" json:"duration,omitempty"`
	IpAddr         *istio_policy_v1beta11.IPAddress        `protobuf:"bytes,11,opt,name=ip_addr,json=ipAddr" json:"ip_addr,omitempty"`
	DnsName        *istio_policy_v1beta11.DNSName          `protobuf:"bytes,12,opt,name=dns_name,json=dnsName" json:"dns_name,omitempty"`
	EmailAddr      *istio_policy_v1beta11.EmailAddress     `protobuf:"bytes,13,opt,name=email_addr,json=emailAddr" json:"email_addr,omitempty"`
	Uri            *istio_policy_v1beta11.Uri              `protobuf:"bytes,14,opt,name=uri" json:"uri,omitempty"`
}

func (*Res2Msg) Descriptor

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

func (*Res2Msg) Marshal

func (m *Res2Msg) Marshal() (dAtA []byte, err error)

func (*Res2Msg) MarshalTo

func (m *Res2Msg) MarshalTo(dAtA []byte) (int, error)

func (*Res2Msg) ProtoMessage

func (*Res2Msg) ProtoMessage()

func (*Res2Msg) Reset

func (m *Res2Msg) Reset()

func (*Res2Msg) Size

func (m *Res2Msg) Size() (n int)

func (*Res2Msg) String

func (this *Res2Msg) String() string

func (*Res2Msg) Unmarshal

func (m *Res2Msg) Unmarshal(dAtA []byte) error

type Res2Type

type Res2Type struct {
	Value      istio_policy_v1beta1.ValueType            `protobuf:"varint,1,opt,name=value,proto3,enum=istio.policy.v1beta1.ValueType" json:"value,omitempty"`
	Dimensions map[string]istio_policy_v1beta1.ValueType `` /* 191-byte string literal not displayed */
}

func (*Res2Type) Descriptor

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

func (*Res2Type) Marshal

func (m *Res2Type) Marshal() (dAtA []byte, err error)

func (*Res2Type) MarshalTo

func (m *Res2Type) MarshalTo(dAtA []byte) (int, error)

func (*Res2Type) ProtoMessage

func (*Res2Type) ProtoMessage()

func (*Res2Type) Reset

func (m *Res2Type) Reset()

func (*Res2Type) Size

func (m *Res2Type) Size() (n int)

func (*Res2Type) String

func (this *Res2Type) String() string

func (*Res2Type) Unmarshal

func (m *Res2Type) Unmarshal(dAtA []byte) error

type Type

type Type struct {
	Value      istio_policy_v1beta1.ValueType            `protobuf:"varint,1,opt,name=value,proto3,enum=istio.policy.v1beta1.ValueType" json:"value,omitempty"`
	Dimensions map[string]istio_policy_v1beta1.ValueType `` /* 191-byte string literal not displayed */
	Res1       *Res1Type                                 `protobuf:"bytes,11,opt,name=res1" json:"res1,omitempty"`
}

Contains inferred type information about specific instance of 'report' template. This is passed to infrastructure backends during configuration-time through [InfrastructureBackend.CreateSession][TODO: Link to this fragment].

func (*Type) Descriptor

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

func (*Type) Marshal

func (m *Type) Marshal() (dAtA []byte, err error)

func (*Type) MarshalTo

func (m *Type) MarshalTo(dAtA []byte) (int, error)

func (*Type) ProtoMessage

func (*Type) ProtoMessage()

func (*Type) Reset

func (m *Type) Reset()

func (*Type) Size

func (m *Type) Size() (n int)

func (*Type) String

func (this *Type) String() string

func (*Type) Unmarshal

func (m *Type) Unmarshal(dAtA []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL