v1alpha1

package
v0.0.0-...-3d58313 Latest Latest
Warning

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

Go to latest
Published: Jul 30, 2020 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthMessage = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowMessage   = fmt.Errorf("proto: integer overflow")
)
View Source
var AnalysisMessageBase_Level_name = map[int32]string{
	0:  "UNKNOWN",
	3:  "ERROR",
	8:  "WARNING",
	12: "INFO",
}
View Source
var AnalysisMessageBase_Level_value = map[string]int32{
	"UNKNOWN": 0,
	"ERROR":   3,
	"WARNING": 8,
	"INFO":    12,
}

Functions

This section is empty.

Types

type AnalysisMessageBase

type AnalysisMessageBase struct {
	Type *AnalysisMessageBase_Type `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	// Represents how severe a message is. Required.
	Level AnalysisMessageBase_Level `protobuf:"varint,2,opt,name=level,proto3,enum=istio.analysis.v1alpha1.AnalysisMessageBase_Level" json:"level,omitempty"`
	// A url pointing to the Istio documentation for this specific error type.
	// Should be of the form
	// `^http(s)?://(preliminary\.)?istio.io/docs/reference/config/analysis/`
	// Required.
	DocumentationUrl     string   `protobuf:"bytes,3,opt,name=documentation_url,json=documentationUrl,proto3" json:"documentation_url,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

AnalysisMessageBase describes some common information that is needed for all messages. All information should be static with respect to the error code.

func (*AnalysisMessageBase) DeepCopy

func (in *AnalysisMessageBase) DeepCopy() *AnalysisMessageBase

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalysisMessageBase. Required by controller-gen.

func (*AnalysisMessageBase) DeepCopyInto

func (in *AnalysisMessageBase) DeepCopyInto(out *AnalysisMessageBase)

DeepCopyInto supports using AnalysisMessageBase within kubernetes types, where deepcopy-gen is used.

func (*AnalysisMessageBase) Descriptor

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

func (*AnalysisMessageBase) GetDocumentationUrl

func (m *AnalysisMessageBase) GetDocumentationUrl() string

func (*AnalysisMessageBase) GetLevel

func (*AnalysisMessageBase) GetType

func (*AnalysisMessageBase) Marshal

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

func (*AnalysisMessageBase) MarshalJSON

func (this *AnalysisMessageBase) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for AnalysisMessageBase

func (*AnalysisMessageBase) MarshalTo

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

func (*AnalysisMessageBase) MarshalToSizedBuffer

func (m *AnalysisMessageBase) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AnalysisMessageBase) ProtoMessage

func (*AnalysisMessageBase) ProtoMessage()

func (*AnalysisMessageBase) Reset

func (m *AnalysisMessageBase) Reset()

func (*AnalysisMessageBase) Size

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

func (*AnalysisMessageBase) String

func (m *AnalysisMessageBase) String() string

func (*AnalysisMessageBase) Unmarshal

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

func (*AnalysisMessageBase) UnmarshalJSON

func (this *AnalysisMessageBase) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for AnalysisMessageBase

func (*AnalysisMessageBase) XXX_DiscardUnknown

func (m *AnalysisMessageBase) XXX_DiscardUnknown()

func (*AnalysisMessageBase) XXX_Marshal

func (m *AnalysisMessageBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalysisMessageBase) XXX_Merge

func (m *AnalysisMessageBase) XXX_Merge(src proto.Message)

func (*AnalysisMessageBase) XXX_Size

func (m *AnalysisMessageBase) XXX_Size() int

func (*AnalysisMessageBase) XXX_Unmarshal

func (m *AnalysisMessageBase) XXX_Unmarshal(b []byte) error

type AnalysisMessageBase_Level

type AnalysisMessageBase_Level int32

The values here are chosen so that more severe messages get sorted higher, as well as leaving space in between to add more later

const (
	AnalysisMessageBase_UNKNOWN AnalysisMessageBase_Level = 0
	AnalysisMessageBase_ERROR   AnalysisMessageBase_Level = 3
	AnalysisMessageBase_WARNING AnalysisMessageBase_Level = 8
	AnalysisMessageBase_INFO    AnalysisMessageBase_Level = 12
)

func (AnalysisMessageBase_Level) EnumDescriptor

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

func (AnalysisMessageBase_Level) String

func (x AnalysisMessageBase_Level) String() string

type AnalysisMessageBase_Type

type AnalysisMessageBase_Type struct {
	// A human-readable name for the message type. e.g. "InternalError",
	// "PodMissingProxy". This should be the same for all messages of the same type.
	// Required.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// A 7 character code matching `^IST[0-9]{4}$` intended to uniquely identify
	// the message type. (e.g. "IST0001" is mapped to the "InternalError" message
	// type.) 0000-0100 are reserved. Required.
	Code                 string   `protobuf:"bytes,2,opt,name=code,proto3" json:"code,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

A unique identifier for the type of message. Name is intended to be human-readable, code is intended to be machine readable. There should be a one-to-one mapping between name and code. (i.e. do not re-use names or codes between message types.)

func (*AnalysisMessageBase_Type) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalysisMessageBase_Type. Required by controller-gen.

func (*AnalysisMessageBase_Type) DeepCopyInto

func (in *AnalysisMessageBase_Type) DeepCopyInto(out *AnalysisMessageBase_Type)

DeepCopyInto supports using AnalysisMessageBase_Type within kubernetes types, where deepcopy-gen is used.

func (*AnalysisMessageBase_Type) Descriptor

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

func (*AnalysisMessageBase_Type) GetCode

func (m *AnalysisMessageBase_Type) GetCode() string

func (*AnalysisMessageBase_Type) GetName

func (m *AnalysisMessageBase_Type) GetName() string

func (*AnalysisMessageBase_Type) Marshal

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

func (*AnalysisMessageBase_Type) MarshalJSON

func (this *AnalysisMessageBase_Type) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for AnalysisMessageBase_Type

func (*AnalysisMessageBase_Type) MarshalTo

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

func (*AnalysisMessageBase_Type) MarshalToSizedBuffer

func (m *AnalysisMessageBase_Type) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AnalysisMessageBase_Type) ProtoMessage

func (*AnalysisMessageBase_Type) ProtoMessage()

func (*AnalysisMessageBase_Type) Reset

func (m *AnalysisMessageBase_Type) Reset()

func (*AnalysisMessageBase_Type) Size

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

func (*AnalysisMessageBase_Type) String

func (m *AnalysisMessageBase_Type) String() string

func (*AnalysisMessageBase_Type) Unmarshal

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

func (*AnalysisMessageBase_Type) UnmarshalJSON

func (this *AnalysisMessageBase_Type) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for AnalysisMessageBase_Type

func (*AnalysisMessageBase_Type) XXX_DiscardUnknown

func (m *AnalysisMessageBase_Type) XXX_DiscardUnknown()

func (*AnalysisMessageBase_Type) XXX_Marshal

func (m *AnalysisMessageBase_Type) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalysisMessageBase_Type) XXX_Merge

func (m *AnalysisMessageBase_Type) XXX_Merge(src proto.Message)

func (*AnalysisMessageBase_Type) XXX_Size

func (m *AnalysisMessageBase_Type) XXX_Size() int

func (*AnalysisMessageBase_Type) XXX_Unmarshal

func (m *AnalysisMessageBase_Type) XXX_Unmarshal(b []byte) error

type AnalysisMessageWeakSchema

type AnalysisMessageWeakSchema struct {
	// Required
	MessageBase *AnalysisMessageBase `protobuf:"bytes,1,opt,name=message_base,json=messageBase,proto3" json:"message_base,omitempty"`
	// A human readable description of what the error means. Required.
	Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// A go-style template string (https://golang.org/pkg/fmt/#hdr-Printing)
	// defining how to combine the args for a  particular message into a log line.
	// Required.
	Template string `protobuf:"bytes,3,opt,name=template,proto3" json:"template,omitempty"`
	// A description of the arguments for a particular message type
	Args                 []*AnalysisMessageWeakSchema_ArgType `protobuf:"bytes,4,rep,name=args,proto3" json:"args,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                             `json:"-"`
	XXX_unrecognized     []byte                               `json:"-"`
	XXX_sizecache        int32                                `json:"-"`
}

AnalysisMessageWeakSchema is the set of information that's needed to define a weakly-typed schema. The purpose of this proto is to provide a mechanism for validating istio/istio/galley/pkg/config/analysis/msg/messages.yaml to make sure that we don't allow committing underspecified types.

func (*AnalysisMessageWeakSchema) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalysisMessageWeakSchema. Required by controller-gen.

func (*AnalysisMessageWeakSchema) DeepCopyInto

DeepCopyInto supports using AnalysisMessageWeakSchema within kubernetes types, where deepcopy-gen is used.

func (*AnalysisMessageWeakSchema) Descriptor

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

func (*AnalysisMessageWeakSchema) GetArgs

func (*AnalysisMessageWeakSchema) GetDescription

func (m *AnalysisMessageWeakSchema) GetDescription() string

func (*AnalysisMessageWeakSchema) GetMessageBase

func (m *AnalysisMessageWeakSchema) GetMessageBase() *AnalysisMessageBase

func (*AnalysisMessageWeakSchema) GetTemplate

func (m *AnalysisMessageWeakSchema) GetTemplate() string

func (*AnalysisMessageWeakSchema) Marshal

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

func (*AnalysisMessageWeakSchema) MarshalJSON

func (this *AnalysisMessageWeakSchema) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for AnalysisMessageWeakSchema

func (*AnalysisMessageWeakSchema) MarshalTo

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

func (*AnalysisMessageWeakSchema) MarshalToSizedBuffer

func (m *AnalysisMessageWeakSchema) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AnalysisMessageWeakSchema) ProtoMessage

func (*AnalysisMessageWeakSchema) ProtoMessage()

func (*AnalysisMessageWeakSchema) Reset

func (m *AnalysisMessageWeakSchema) Reset()

func (*AnalysisMessageWeakSchema) Size

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

func (*AnalysisMessageWeakSchema) String

func (m *AnalysisMessageWeakSchema) String() string

func (*AnalysisMessageWeakSchema) Unmarshal

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

func (*AnalysisMessageWeakSchema) UnmarshalJSON

func (this *AnalysisMessageWeakSchema) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for AnalysisMessageWeakSchema

func (*AnalysisMessageWeakSchema) XXX_DiscardUnknown

func (m *AnalysisMessageWeakSchema) XXX_DiscardUnknown()

func (*AnalysisMessageWeakSchema) XXX_Marshal

func (m *AnalysisMessageWeakSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalysisMessageWeakSchema) XXX_Merge

func (m *AnalysisMessageWeakSchema) XXX_Merge(src proto.Message)

func (*AnalysisMessageWeakSchema) XXX_Size

func (m *AnalysisMessageWeakSchema) XXX_Size() int

func (*AnalysisMessageWeakSchema) XXX_Unmarshal

func (m *AnalysisMessageWeakSchema) XXX_Unmarshal(b []byte) error

type AnalysisMessageWeakSchema_ArgType

type AnalysisMessageWeakSchema_ArgType struct {
	// Required
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Required. Should be a golang type, used in code generation.
	// Ideally this will change to a less language-pinned type before this gets
	// out of alpha, but for compatibility with current istio/istio code it's
	// go_type for now.
	GoType               string   `protobuf:"bytes,2,opt,name=go_type,json=goType,proto3" json:"go_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*AnalysisMessageWeakSchema_ArgType) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AnalysisMessageWeakSchema_ArgType. Required by controller-gen.

func (*AnalysisMessageWeakSchema_ArgType) DeepCopyInto

DeepCopyInto supports using AnalysisMessageWeakSchema_ArgType within kubernetes types, where deepcopy-gen is used.

func (*AnalysisMessageWeakSchema_ArgType) Descriptor

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

func (*AnalysisMessageWeakSchema_ArgType) GetGoType

func (*AnalysisMessageWeakSchema_ArgType) GetName

func (*AnalysisMessageWeakSchema_ArgType) Marshal

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

func (*AnalysisMessageWeakSchema_ArgType) MarshalJSON

func (this *AnalysisMessageWeakSchema_ArgType) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for AnalysisMessageWeakSchema_ArgType

func (*AnalysisMessageWeakSchema_ArgType) MarshalTo

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

func (*AnalysisMessageWeakSchema_ArgType) MarshalToSizedBuffer

func (m *AnalysisMessageWeakSchema_ArgType) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*AnalysisMessageWeakSchema_ArgType) ProtoMessage

func (*AnalysisMessageWeakSchema_ArgType) ProtoMessage()

func (*AnalysisMessageWeakSchema_ArgType) Reset

func (*AnalysisMessageWeakSchema_ArgType) Size

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

func (*AnalysisMessageWeakSchema_ArgType) String

func (*AnalysisMessageWeakSchema_ArgType) Unmarshal

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

func (*AnalysisMessageWeakSchema_ArgType) UnmarshalJSON

func (this *AnalysisMessageWeakSchema_ArgType) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for AnalysisMessageWeakSchema_ArgType

func (*AnalysisMessageWeakSchema_ArgType) XXX_DiscardUnknown

func (m *AnalysisMessageWeakSchema_ArgType) XXX_DiscardUnknown()

func (*AnalysisMessageWeakSchema_ArgType) XXX_Marshal

func (m *AnalysisMessageWeakSchema_ArgType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AnalysisMessageWeakSchema_ArgType) XXX_Merge

func (*AnalysisMessageWeakSchema_ArgType) XXX_Size

func (m *AnalysisMessageWeakSchema_ArgType) XXX_Size() int

func (*AnalysisMessageWeakSchema_ArgType) XXX_Unmarshal

func (m *AnalysisMessageWeakSchema_ArgType) XXX_Unmarshal(b []byte) error

type GenericAnalysisMessage

type GenericAnalysisMessage struct {
	// Required
	MessageBase *AnalysisMessageBase `protobuf:"bytes,1,opt,name=message_base,json=messageBase,proto3" json:"message_base,omitempty"`
	// Any message-type specific arguments that need to get codified. Optional.
	Args *types.Struct `protobuf:"bytes,2,opt,name=args,proto3" json:"args,omitempty"`
	// A list of strings specifying the resource identifiers that were the cause
	// of message generation. A "path" here is a (NAMESPACE\/)?RESOURCETYPE/NAME
	// tuple that uniquely identifies a particular resource. There doesn't seem to
	// be a single concept for this, but this is intuitively taken from
	// https://kubernetes.io/docs/reference/using-api/api-concepts/#standard-api-terminology
	// At least one is required.
	ResourcePaths        []string `protobuf:"bytes,3,rep,name=resource_paths,json=resourcePaths,proto3" json:"resource_paths,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

GenericAnalysisMessage is an instance of an AnalysisMessage defined by a schema, whose metaschema is AnalysisMessageWeakSchema. (Names are hard.) Code should be able to perform validation of arguments as needed by using the message type information to look at the AnalysisMessageWeakSchema and examine the list of args at runtime. Developers can also create stronger-typed versions of GenericAnalysisMessage for well-known and stable message types.

func (*GenericAnalysisMessage) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GenericAnalysisMessage. Required by controller-gen.

func (*GenericAnalysisMessage) DeepCopyInto

func (in *GenericAnalysisMessage) DeepCopyInto(out *GenericAnalysisMessage)

DeepCopyInto supports using GenericAnalysisMessage within kubernetes types, where deepcopy-gen is used.

func (*GenericAnalysisMessage) Descriptor

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

func (*GenericAnalysisMessage) GetArgs

func (m *GenericAnalysisMessage) GetArgs() *types.Struct

func (*GenericAnalysisMessage) GetMessageBase

func (m *GenericAnalysisMessage) GetMessageBase() *AnalysisMessageBase

func (*GenericAnalysisMessage) GetResourcePaths

func (m *GenericAnalysisMessage) GetResourcePaths() []string

func (*GenericAnalysisMessage) Marshal

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

func (*GenericAnalysisMessage) MarshalJSON

func (this *GenericAnalysisMessage) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for GenericAnalysisMessage

func (*GenericAnalysisMessage) MarshalTo

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

func (*GenericAnalysisMessage) MarshalToSizedBuffer

func (m *GenericAnalysisMessage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GenericAnalysisMessage) ProtoMessage

func (*GenericAnalysisMessage) ProtoMessage()

func (*GenericAnalysisMessage) Reset

func (m *GenericAnalysisMessage) Reset()

func (*GenericAnalysisMessage) Size

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

func (*GenericAnalysisMessage) String

func (m *GenericAnalysisMessage) String() string

func (*GenericAnalysisMessage) Unmarshal

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

func (*GenericAnalysisMessage) UnmarshalJSON

func (this *GenericAnalysisMessage) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for GenericAnalysisMessage

func (*GenericAnalysisMessage) XXX_DiscardUnknown

func (m *GenericAnalysisMessage) XXX_DiscardUnknown()

func (*GenericAnalysisMessage) XXX_Marshal

func (m *GenericAnalysisMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GenericAnalysisMessage) XXX_Merge

func (m *GenericAnalysisMessage) XXX_Merge(src proto.Message)

func (*GenericAnalysisMessage) XXX_Size

func (m *GenericAnalysisMessage) XXX_Size() int

func (*GenericAnalysisMessage) XXX_Unmarshal

func (m *GenericAnalysisMessage) XXX_Unmarshal(b []byte) error

type InternalErrorAnalysisMessage

type InternalErrorAnalysisMessage struct {
	// Required
	MessageBase *AnalysisMessageBase `protobuf:"bytes,1,opt,name=message_base,json=messageBase,proto3" json:"message_base,omitempty"`
	// Any detail regarding specifics of the error. Should be human-readable.
	Detail               string   `protobuf:"bytes,2,opt,name=detail,proto3" json:"detail,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

InternalErrorAnalysisMessage is a strongly-typed message representing some error in Istio code that prevented us from performing analysis at all.

func (*InternalErrorAnalysisMessage) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InternalErrorAnalysisMessage. Required by controller-gen.

func (*InternalErrorAnalysisMessage) DeepCopyInto

DeepCopyInto supports using InternalErrorAnalysisMessage within kubernetes types, where deepcopy-gen is used.

func (*InternalErrorAnalysisMessage) Descriptor

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

func (*InternalErrorAnalysisMessage) GetDetail

func (m *InternalErrorAnalysisMessage) GetDetail() string

func (*InternalErrorAnalysisMessage) GetMessageBase

func (*InternalErrorAnalysisMessage) Marshal

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

func (*InternalErrorAnalysisMessage) MarshalJSON

func (this *InternalErrorAnalysisMessage) MarshalJSON() ([]byte, error)

MarshalJSON is a custom marshaler for InternalErrorAnalysisMessage

func (*InternalErrorAnalysisMessage) MarshalTo

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

func (*InternalErrorAnalysisMessage) MarshalToSizedBuffer

func (m *InternalErrorAnalysisMessage) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*InternalErrorAnalysisMessage) ProtoMessage

func (*InternalErrorAnalysisMessage) ProtoMessage()

func (*InternalErrorAnalysisMessage) Reset

func (m *InternalErrorAnalysisMessage) Reset()

func (*InternalErrorAnalysisMessage) Size

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

func (*InternalErrorAnalysisMessage) String

func (*InternalErrorAnalysisMessage) Unmarshal

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

func (*InternalErrorAnalysisMessage) UnmarshalJSON

func (this *InternalErrorAnalysisMessage) UnmarshalJSON(b []byte) error

UnmarshalJSON is a custom unmarshaler for InternalErrorAnalysisMessage

func (*InternalErrorAnalysisMessage) XXX_DiscardUnknown

func (m *InternalErrorAnalysisMessage) XXX_DiscardUnknown()

func (*InternalErrorAnalysisMessage) XXX_Marshal

func (m *InternalErrorAnalysisMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*InternalErrorAnalysisMessage) XXX_Merge

func (m *InternalErrorAnalysisMessage) XXX_Merge(src proto.Message)

func (*InternalErrorAnalysisMessage) XXX_Size

func (m *InternalErrorAnalysisMessage) XXX_Size() int

func (*InternalErrorAnalysisMessage) XXX_Unmarshal

func (m *InternalErrorAnalysisMessage) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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