log_condition

package
v1.16.2 Latest Latest
Warning

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

Go to latest
Published: Sep 12, 2025 License: Apache-2.0 Imports: 60 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NamePattern_Project_Policy = "projects/{project}/policies/{policy}/logConditions/{log_condition}"
)

Variables

This section is empty.

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access LogConditionAccess) gotenresource.Access

Types

type Descriptor

type Descriptor struct {
	// contains filtered or unexported fields
}

func GetDescriptor

func GetDescriptor() *Descriptor

func (*Descriptor) CanBeParentless

func (d *Descriptor) CanBeParentless() bool

func (*Descriptor) GetNameDescriptor

func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor

func (*Descriptor) GetParentResDescriptors

func (d *Descriptor) GetParentResDescriptors() []gotenresource.Descriptor

func (*Descriptor) GetResourceTypeName

func (d *Descriptor) GetResourceTypeName() *gotenresource.TypeName

func (*Descriptor) NewGetQuery

func (d *Descriptor) NewGetQuery() gotenresource.GetQuery

func (*Descriptor) NewListQuery

func (d *Descriptor) NewListQuery() gotenresource.ListQuery

func (*Descriptor) NewNameList

func (d *Descriptor) NewNameList(size, reserved int) gotenresource.NameList

func (*Descriptor) NewParentNameList

func (d *Descriptor) NewParentNameList(size, reserved int) gotenresource.ParentNameList

func (*Descriptor) NewParentReferenceList

func (d *Descriptor) NewParentReferenceList(size, reserved int) gotenresource.ParentReferenceList

func (*Descriptor) NewQueryResultChange

func (d *Descriptor) NewQueryResultChange() gotenresource.QueryResultChange

func (*Descriptor) NewQueryResultSnapshot

func (d *Descriptor) NewQueryResultSnapshot() gotenresource.QueryResultSnapshot

func (*Descriptor) NewReferenceList

func (d *Descriptor) NewReferenceList(size, reserved int) gotenresource.ReferenceList

func (*Descriptor) NewResource

func (d *Descriptor) NewResource() gotenresource.Resource

func (*Descriptor) NewResourceChange

func (d *Descriptor) NewResourceChange() gotenresource.ResourceChange

func (*Descriptor) NewResourceChangeList

func (d *Descriptor) NewResourceChangeList(size, reserved int) gotenresource.ResourceChangeList

func (*Descriptor) NewResourceChangeMap

func (d *Descriptor) NewResourceChangeMap(reserved int) gotenresource.ResourceChangeMap

func (*Descriptor) NewResourceCursor

func (d *Descriptor) NewResourceCursor() gotenresource.Cursor

func (*Descriptor) NewResourceFieldMask

func (d *Descriptor) NewResourceFieldMask() gotenobject.FieldMask

func (*Descriptor) NewResourceFilter

func (d *Descriptor) NewResourceFilter() gotenresource.Filter

func (*Descriptor) NewResourceList

func (d *Descriptor) NewResourceList(size, reserved int) gotenresource.ResourceList

func (*Descriptor) NewResourceMap

func (d *Descriptor) NewResourceMap(reserved int) gotenresource.ResourceMap

func (*Descriptor) NewResourceName

func (d *Descriptor) NewResourceName() gotenresource.Name

func (*Descriptor) NewResourceOrderBy

func (d *Descriptor) NewResourceOrderBy() gotenresource.OrderBy

func (*Descriptor) NewResourcePager

func (d *Descriptor) NewResourcePager() gotenresource.PagerQuery

func (*Descriptor) NewSearchQuery

func (d *Descriptor) NewSearchQuery() gotenresource.SearchQuery

func (*Descriptor) NewWatchQuery

func (d *Descriptor) NewWatchQuery() gotenresource.WatchQuery

func (*Descriptor) ParseFieldPath

func (d *Descriptor) ParseFieldPath(raw string) (gotenobject.FieldPath, error)

func (*Descriptor) ParseResourceName

func (d *Descriptor) ParseResourceName(nameStr string) (gotenresource.Name, error)

func (*Descriptor) SupportsDbConstraints

func (d *Descriptor) SupportsDbConstraints() bool

func (*Descriptor) SupportsMetadata

func (d *Descriptor) SupportsMetadata() bool

type Filter

type Filter struct {
	FilterCondition
}

func (*Filter) Evaluate

func (filter *Filter) Evaluate(res *LogCondition) bool

Evaluate is a wrapper on FilterCondition, which also handles nil pointer

func (*Filter) EvaluateRaw

func (filter *Filter) EvaluateRaw(res gotenresource.Resource) bool

func (*Filter) FilterSlice

func (filter *Filter) FilterSlice(in []*LogCondition) (out []*LogCondition)

FilterSlice is a helper for filtering arrays

func (*Filter) GetCondition

func (filter *Filter) GetCondition() FilterCondition

GetCondition is a getter of FilterCondition, which also handles nil pointer

func (*Filter) GetRawCondition

func (filter *Filter) GetRawCondition() gotenresource.FilterCondition

func (*Filter) ParseProtoString

func (filter *Filter) ParseProtoString(data string) error

func (*Filter) ProtoString

func (filter *Filter) ProtoString() (string, error)

func (*Filter) SetFromCliFlag

func (filter *Filter) SetFromCliFlag(raw string) error

func (*Filter) String

func (filter *Filter) String() string

type FilterBuilder

type FilterBuilder struct {
	// contains filtered or unexported fields
}

func NewAndFilterBuilder

func NewAndFilterBuilder() *FilterBuilder

func NewFilterBuilder

func NewFilterBuilder() *FilterBuilder

func NewOrFilterBuilder

func NewOrFilterBuilder() *FilterBuilder

func (*FilterBuilder) Filter

func (b *FilterBuilder) Filter() *Filter

func (*FilterBuilder) Where

func (b *FilterBuilder) Where(opts ...gotenfilter.FilterConditionOption) *filterCndBuilder

func (*FilterBuilder) WherePath

func (b *FilterBuilder) WherePath(fp LogCondition_FieldPath, opts ...gotenfilter.FilterConditionOption) *filterCndBuilderAnyPath

func (*FilterBuilder) With

type FilterBuilderOrCondition

type FilterBuilderOrCondition interface {
	// contains filtered or unexported methods
}

type FilterCondition

type FilterCondition interface {
	gotenresource.FilterCondition

	And(...FilterCondition) FilterCondition
	Evaluate(res *LogCondition) bool

	// Whether this condition is at least as specific as other.
	// When true, any LogCondition that passes this condition will also pass other condition.
	Satisfies(other FilterCondition) bool

	// Checks whether condition specifies given field path
	// Useful for blacklisting protected paths in iam policy conditions
	SpecifiesFieldPath(fp LogCondition_FieldPath) bool
	// contains filtered or unexported methods
}

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	LogCondition_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *LogCondition) bool

func (*FilterConditionCompare) EvaluateRaw

func (cond *FilterConditionCompare) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionCompare) GetOperator

func (*FilterConditionCompare) GetRawFieldPath

func (cond *FilterConditionCompare) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionCompare) GetRawFieldPathValue

func (cond *FilterConditionCompare) GetRawFieldPathValue() gotenobject.FieldPathValue

func (*FilterConditionCompare) Satisfies

func (cond *FilterConditionCompare) Satisfies(other FilterCondition) bool

func (*FilterConditionCompare) SatisfiesRaw

func (cond *FilterConditionCompare) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionCompare) SpecifiesFieldPath

func (cond *FilterConditionCompare) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionCompare) SpecifiesRawFieldPath

func (cond *FilterConditionCompare) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionCompare) String

func (cond *FilterConditionCompare) String() string

type FilterConditionComposite

type FilterConditionComposite struct {
	Operator   filterParser.CompositeOperator
	Conditions []FilterCondition
}

func (*FilterConditionComposite) And

func (*FilterConditionComposite) ConditionComposite

func (cond *FilterConditionComposite) ConditionComposite()

func (*FilterConditionComposite) Evaluate

func (cond *FilterConditionComposite) Evaluate(res *LogCondition) bool

func (*FilterConditionComposite) EvaluateRaw

func (cond *FilterConditionComposite) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionComposite) GetOperator

func (*FilterConditionComposite) GetSubConditions

func (cond *FilterConditionComposite) GetSubConditions() []gotenresource.FilterCondition

func (*FilterConditionComposite) Satisfies

func (cond *FilterConditionComposite) Satisfies(other FilterCondition) bool

func (*FilterConditionComposite) SatisfiesRaw

func (cond *FilterConditionComposite) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionComposite) SpecifiesFieldPath

func (cond *FilterConditionComposite) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionComposite) SpecifiesRawFieldPath

func (cond *FilterConditionComposite) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionComposite) String

func (cond *FilterConditionComposite) String() string

type FilterConditionContains

func (*FilterConditionContains) And

func (*FilterConditionContains) ConditionContains

func (cond *FilterConditionContains) ConditionContains()

func (*FilterConditionContains) ConditionContainsType

func (cond *FilterConditionContains) ConditionContainsType() gotenresource.ConditionContainsType

func (*FilterConditionContains) Evaluate

func (cond *FilterConditionContains) Evaluate(res *LogCondition) bool

func (*FilterConditionContains) EvaluateRaw

func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionContains) GetFieldPath

func (cond *FilterConditionContains) GetFieldPath() LogCondition_FieldPath

func (*FilterConditionContains) GetRawFieldPath

func (cond *FilterConditionContains) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionContains) GetRawFieldPathItemValue

func (cond *FilterConditionContains) GetRawFieldPathItemValue() gotenobject.FieldPathArrayItemValue

func (*FilterConditionContains) GetRawFieldPathItemValues

func (cond *FilterConditionContains) GetRawFieldPathItemValues() (res []gotenobject.FieldPathArrayItemValue)

func (*FilterConditionContains) Satisfies

func (cond *FilterConditionContains) Satisfies(other FilterCondition) bool

func (*FilterConditionContains) SatisfiesRaw

func (cond *FilterConditionContains) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionContains) SpecifiesFieldPath

func (cond *FilterConditionContains) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionContains) SpecifiesRawFieldPath

func (cond *FilterConditionContains) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionContains) String

func (cond *FilterConditionContains) String() string

type FilterConditionIn

type FilterConditionIn struct {
	LogCondition_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *LogCondition) bool

func (*FilterConditionIn) EvaluateRaw

func (cond *FilterConditionIn) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionIn) GetRawFieldPath

func (cond *FilterConditionIn) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionIn) GetRawFieldPathArrayOfValues

func (cond *FilterConditionIn) GetRawFieldPathArrayOfValues() gotenobject.FieldPathArrayOfValues

func (*FilterConditionIn) Satisfies

func (cond *FilterConditionIn) Satisfies(other FilterCondition) bool

func (*FilterConditionIn) SatisfiesRaw

func (cond *FilterConditionIn) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionIn) SpecifiesFieldPath

func (cond *FilterConditionIn) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionIn) SpecifiesRawFieldPath

func (cond *FilterConditionIn) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionIn) String

func (cond *FilterConditionIn) String() string

type FilterConditionIsNaN

type FilterConditionIsNaN struct {
	Not       bool
	FieldPath LogCondition_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *LogCondition) bool

func (*FilterConditionIsNaN) EvaluateRaw

func (cond *FilterConditionIsNaN) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionIsNaN) GetRawFieldPath

func (cond *FilterConditionIsNaN) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionIsNaN) Satisfies

func (cond *FilterConditionIsNaN) Satisfies(other FilterCondition) bool

func (*FilterConditionIsNaN) SatisfiesRaw

func (cond *FilterConditionIsNaN) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionIsNaN) SpecifiesFieldPath

func (cond *FilterConditionIsNaN) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionIsNaN) SpecifiesRawFieldPath

func (cond *FilterConditionIsNaN) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionIsNaN) String

func (cond *FilterConditionIsNaN) String() string

type FilterConditionIsNull

type FilterConditionIsNull struct {
	Not       bool
	FieldPath LogCondition_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *LogCondition) bool

func (*FilterConditionIsNull) EvaluateRaw

func (cond *FilterConditionIsNull) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionIsNull) GetRawFieldPath

func (cond *FilterConditionIsNull) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionIsNull) NotNull

func (cond *FilterConditionIsNull) NotNull() bool

func (*FilterConditionIsNull) Satisfies

func (cond *FilterConditionIsNull) Satisfies(other FilterCondition) bool

func (*FilterConditionIsNull) SatisfiesRaw

func (cond *FilterConditionIsNull) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionIsNull) SpecifiesFieldPath

func (cond *FilterConditionIsNull) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionIsNull) SpecifiesRawFieldPath

func (cond *FilterConditionIsNull) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionIsNull) String

func (cond *FilterConditionIsNull) String() string

type FilterConditionNot

type FilterConditionNot struct {
	FilterCondition
}

func (*FilterConditionNot) And

func (*FilterConditionNot) ConditionNot

func (cond *FilterConditionNot) ConditionNot()

func (*FilterConditionNot) Evaluate

func (cond *FilterConditionNot) Evaluate(res *LogCondition) bool

func (*FilterConditionNot) EvaluateRaw

func (cond *FilterConditionNot) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionNot) GetSubCondition

func (cond *FilterConditionNot) GetSubCondition() gotenresource.FilterCondition

func (*FilterConditionNot) Satisfies

func (cond *FilterConditionNot) Satisfies(other FilterCondition) bool

func (*FilterConditionNot) SatisfiesRaw

func (cond *FilterConditionNot) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionNot) SpecifiesFieldPath

func (cond *FilterConditionNot) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionNot) SpecifiesRawFieldPath

func (cond *FilterConditionNot) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionNot) String

func (cond *FilterConditionNot) String() string

type FilterConditionNotIn

type FilterConditionNotIn struct {
	LogCondition_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *LogCondition) bool

func (*FilterConditionNotIn) EvaluateRaw

func (cond *FilterConditionNotIn) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionNotIn) GetRawFieldPath

func (cond *FilterConditionNotIn) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionNotIn) GetRawFieldPathArrayOfValues

func (cond *FilterConditionNotIn) GetRawFieldPathArrayOfValues() gotenobject.FieldPathArrayOfValues

func (*FilterConditionNotIn) Satisfies

func (cond *FilterConditionNotIn) Satisfies(other FilterCondition) bool

func (*FilterConditionNotIn) SatisfiesRaw

func (cond *FilterConditionNotIn) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionNotIn) SpecifiesFieldPath

func (cond *FilterConditionNotIn) SpecifiesFieldPath(fp LogCondition_FieldPath) bool

func (*FilterConditionNotIn) SpecifiesRawFieldPath

func (cond *FilterConditionNotIn) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionNotIn) String

func (cond *FilterConditionNotIn) String() string

type GetQuery

type GetQuery struct {
	Reference *Reference
	Mask      *LogCondition_FieldMask
}

func (*GetQuery) GetFieldMask

func (q *GetQuery) GetFieldMask() gotenobject.FieldMask

func (*GetQuery) GetReference

func (q *GetQuery) GetReference() gotenresource.Reference

func (*GetQuery) GetResourceDescriptor

func (q *GetQuery) GetResourceDescriptor() gotenresource.Descriptor

func (*GetQuery) GotenQuery

func (q *GetQuery) GotenQuery()

func (*GetQuery) SetFieldMask

func (q *GetQuery) SetFieldMask(mask gotenobject.FieldMask)

func (*GetQuery) SetReference

func (q *GetQuery) SetReference(ref gotenresource.Reference)

func (*GetQuery) String

func (q *GetQuery) String() string

type ListQuery

type ListQuery struct {
	Filter         *Filter
	Pager          *PagerQuery
	Mask           *LogCondition_FieldMask
	WithPagingInfo bool
}

func (*ListQuery) GetFieldMask

func (q *ListQuery) GetFieldMask() gotenobject.FieldMask

func (*ListQuery) GetFilter

func (q *ListQuery) GetFilter() gotenresource.Filter

func (*ListQuery) GetPager

func (q *ListQuery) GetPager() gotenresource.PagerQuery

func (*ListQuery) GetResourceDescriptor

func (q *ListQuery) GetResourceDescriptor() gotenresource.Descriptor

func (*ListQuery) GetWithPagingInfo

func (q *ListQuery) GetWithPagingInfo() bool

func (*ListQuery) GotenQuery

func (q *ListQuery) GotenQuery()

func (*ListQuery) SetFieldMask

func (q *ListQuery) SetFieldMask(mask gotenobject.FieldMask)

func (*ListQuery) SetFilter

func (q *ListQuery) SetFilter(filter gotenresource.Filter)

func (*ListQuery) SetPager

func (q *ListQuery) SetPager(pager gotenresource.PagerQuery)

func (*ListQuery) SetWithPagingInfo

func (q *ListQuery) SetWithPagingInfo(with bool)

func (*ListQuery) String

func (q *ListQuery) String() string

type LogCondition

type LogCondition struct {

	// Name of LogCondition
	// When creating a new instance, this field is optional and if not provided,
	// it will be generated automatically. Last ID segment must conform to the
	// following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9]
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
	// Metadata is an object with information like create, update and delete time
	// (for async deleted resources), has user labels/annotations, sharding
	// information, multi-region syncing information and may have non-schema
	// owners (useful for taking ownership of resources belonging to lower level
	// services by higher ones).
	Metadata *meta.Meta `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Display Name
	DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// Long description
	Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	// List of documents useful for troubleshooting and fixing alerts triggered
	// by this condition.
	SupportingDocs []*document.Reference `protobuf:"bytes,5,rep,customtype=Reference,name=supporting_docs,json=supportingDocs,proto3" json:"supporting_docs,omitempty"`
	// Defines what query is being monitored, and what content must trigger an
	// Alert.
	Spec *rcommon.LogCndSpec `protobuf:"bytes,6,opt,name=spec,proto3" json:"spec,omitempty"`
	// Internal field.
	Internal *LogCondition_Internal `protobuf:"bytes,7,opt,name=internal,proto3" json:"internal,omitempty"`
	// template source for current LogCondition
	TemplateSource *LogCondition_TemplateSource `protobuf:"bytes,8,opt,name=template_source,json=templateSource,proto3" json:"template_source,omitempty"`
	// contains filtered or unexported fields
}

LogCondition describes when Alert based on Logs data should be raised.

func (*LogCondition) Clone

func (o *LogCondition) Clone() *LogCondition

func (*LogCondition) CloneRaw

func (o *LogCondition) CloneRaw() gotenobject.GotenObjectExt

func (*LogCondition) Descriptor

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

Deprecated, Use LogCondition.ProtoReflect.Descriptor instead.

func (*LogCondition) EnsureMetadata

func (r *LogCondition) EnsureMetadata() *meta.Meta

func (*LogCondition) GetDescription

func (m *LogCondition) GetDescription() string

func (*LogCondition) GetDisplayName

func (m *LogCondition) GetDisplayName() string

func (*LogCondition) GetInternal

func (m *LogCondition) GetInternal() *LogCondition_Internal

func (*LogCondition) GetMetadata

func (m *LogCondition) GetMetadata() *meta.Meta

func (*LogCondition) GetName

func (m *LogCondition) GetName() *Name

func (*LogCondition) GetRawName

func (r *LogCondition) GetRawName() gotenresource.Name

func (*LogCondition) GetResourceDescriptor

func (r *LogCondition) GetResourceDescriptor() gotenresource.Descriptor

func (*LogCondition) GetSpec

func (m *LogCondition) GetSpec() *rcommon.LogCndSpec

func (*LogCondition) GetSupportingDocs

func (m *LogCondition) GetSupportingDocs() []*document.Reference

func (*LogCondition) GetTemplateSource added in v1.13.6

func (m *LogCondition) GetTemplateSource() *LogCondition_TemplateSource

func (*LogCondition) GotenMessage

func (*LogCondition) GotenMessage()

func (*LogCondition) GotenObjectExt

func (o *LogCondition) GotenObjectExt()

func (*LogCondition) GotenValidate

func (obj *LogCondition) GotenValidate() error

func (*LogCondition) MakeDiffFieldMask

func (o *LogCondition) MakeDiffFieldMask(other *LogCondition) *LogCondition_FieldMask

func (*LogCondition) MakeFullFieldMask

func (o *LogCondition) MakeFullFieldMask() *LogCondition_FieldMask

func (*LogCondition) MakeRawDiffFieldMask

func (o *LogCondition) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask

func (*LogCondition) MakeRawFullFieldMask

func (o *LogCondition) MakeRawFullFieldMask() gotenobject.FieldMask

func (*LogCondition) Marshal

func (m *LogCondition) Marshal() ([]byte, error)

func (*LogCondition) MarshalJSON

func (m *LogCondition) MarshalJSON() ([]byte, error)

func (*LogCondition) MaybePopulateDefaults

func (r *LogCondition) MaybePopulateDefaults() error

func (*LogCondition) Merge

func (o *LogCondition) Merge(source *LogCondition)

func (*LogCondition) MergeRaw

func (o *LogCondition) MergeRaw(source gotenobject.GotenObjectExt)

func (*LogCondition) ProtoMessage

func (*LogCondition) ProtoMessage()

func (*LogCondition) ProtoReflect

func (m *LogCondition) ProtoReflect() preflect.Message

func (*LogCondition) Reset

func (m *LogCondition) Reset()

func (*LogCondition) SetDescription

func (m *LogCondition) SetDescription(fv string)

func (*LogCondition) SetDisplayName

func (m *LogCondition) SetDisplayName(fv string)

func (*LogCondition) SetInternal

func (m *LogCondition) SetInternal(fv *LogCondition_Internal)

func (*LogCondition) SetMetadata

func (m *LogCondition) SetMetadata(fv *meta.Meta)

func (*LogCondition) SetName

func (m *LogCondition) SetName(fv *Name)

func (*LogCondition) SetSpec

func (m *LogCondition) SetSpec(fv *rcommon.LogCndSpec)

func (*LogCondition) SetSupportingDocs

func (m *LogCondition) SetSupportingDocs(fv []*document.Reference)

func (*LogCondition) SetTemplateSource added in v1.13.6

func (m *LogCondition) SetTemplateSource(fv *LogCondition_TemplateSource)

func (*LogCondition) String

func (m *LogCondition) String() string

func (*LogCondition) Unmarshal

func (m *LogCondition) Unmarshal(b []byte) error

func (*LogCondition) UnmarshalJSON

func (m *LogCondition) UnmarshalJSON(data []byte) error

type LogConditionChange

type LogConditionChange struct {

	// LogCondition change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*LogConditionChange_Added_
	//	*LogConditionChange_Modified_
	//	*LogConditionChange_Current_
	//	*LogConditionChange_Removed_
	ChangeType isLogConditionChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

LogConditionChange is used by Watch notifications Responses to describe change of single LogCondition One of Added, Modified, Removed

func (*LogConditionChange) Descriptor

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

Deprecated, Use LogConditionChange.ProtoReflect.Descriptor instead.

func (*LogConditionChange) GetAdded

func (*LogConditionChange) GetChangeType

func (m *LogConditionChange) GetChangeType() isLogConditionChange_ChangeType

func (*LogConditionChange) GetCurrent

func (*LogConditionChange) GetCurrentViewIndex

func (c *LogConditionChange) GetCurrentViewIndex() int32

func (*LogConditionChange) GetLogCondition

func (c *LogConditionChange) GetLogCondition() *LogCondition

func (*LogConditionChange) GetLogConditionName

func (c *LogConditionChange) GetLogConditionName() *Name

func (*LogConditionChange) GetModified

func (*LogConditionChange) GetPreviousViewIndex

func (c *LogConditionChange) GetPreviousViewIndex() int32

func (*LogConditionChange) GetRawName

func (c *LogConditionChange) GetRawName() gotenresource.Name

func (*LogConditionChange) GetRawResource

func (c *LogConditionChange) GetRawResource() gotenresource.Resource

func (*LogConditionChange) GetRemoved

func (*LogConditionChange) GotenMessage

func (*LogConditionChange) GotenMessage()

func (*LogConditionChange) GotenValidate

func (obj *LogConditionChange) GotenValidate() error

func (*LogConditionChange) IsAdd

func (c *LogConditionChange) IsAdd() bool

func (*LogConditionChange) IsCurrent

func (c *LogConditionChange) IsCurrent() bool

func (*LogConditionChange) IsDelete

func (c *LogConditionChange) IsDelete() bool

func (*LogConditionChange) IsModify

func (c *LogConditionChange) IsModify() bool

func (*LogConditionChange) Marshal

func (m *LogConditionChange) Marshal() ([]byte, error)

func (*LogConditionChange) MarshalJSON

func (m *LogConditionChange) MarshalJSON() ([]byte, error)

func (*LogConditionChange) ProtoMessage

func (*LogConditionChange) ProtoMessage()

func (*LogConditionChange) ProtoReflect

func (m *LogConditionChange) ProtoReflect() preflect.Message

func (*LogConditionChange) Reset

func (m *LogConditionChange) Reset()

func (*LogConditionChange) SetAdded

func (*LogConditionChange) SetAddedRaw

func (c *LogConditionChange) SetAddedRaw(snapshot gotenresource.Resource, idx int)

func (*LogConditionChange) SetChangeType

func (m *LogConditionChange) SetChangeType(ofv isLogConditionChange_ChangeType)

func (*LogConditionChange) SetCurrent

func (*LogConditionChange) SetCurrentRaw

func (c *LogConditionChange) SetCurrentRaw(snapshot gotenresource.Resource)

func (*LogConditionChange) SetDeletedRaw

func (c *LogConditionChange) SetDeletedRaw(name gotenresource.Name, idx int)

func (*LogConditionChange) SetModified

func (m *LogConditionChange) SetModified(fv *LogConditionChange_Modified)

func (*LogConditionChange) SetModifiedRaw

func (c *LogConditionChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, newIdx int)

func (*LogConditionChange) SetRemoved

func (*LogConditionChange) String

func (m *LogConditionChange) String() string

func (*LogConditionChange) Unmarshal

func (m *LogConditionChange) Unmarshal(b []byte) error

func (*LogConditionChange) UnmarshalJSON

func (m *LogConditionChange) UnmarshalJSON(data []byte) error

type LogConditionChangeList

type LogConditionChangeList []*LogConditionChange

func (LogConditionChangeList) Append

func (LogConditionChangeList) AppendList

func (LogConditionChangeList) At

func (LogConditionChangeList) Length

func (l LogConditionChangeList) Length() int

func (LogConditionChangeList) Set

func (LogConditionChangeList) Slice

type LogConditionChangeMap

type LogConditionChangeMap map[Name]*LogConditionChange

func (LogConditionChangeMap) Delete

func (m LogConditionChangeMap) Delete(name gotenresource.Name)

func (LogConditionChangeMap) ForEach

func (LogConditionChangeMap) Get

func (LogConditionChangeMap) Length

func (m LogConditionChangeMap) Length() int

func (LogConditionChangeMap) Set

type LogConditionChange_Added

type LogConditionChange_Added struct {
	LogCondition *LogCondition `protobuf:"bytes,1,opt,name=log_condition,json=logCondition,proto3" json:"log_condition,omitempty"`
	// Integer describing index of added LogCondition in resulting query view.
	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
	// contains filtered or unexported fields
}

LogCondition has been added to query view

func (*LogConditionChange_Added) Descriptor

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

Deprecated, Use LogConditionChange_Added.ProtoReflect.Descriptor instead.

func (*LogConditionChange_Added) GetLogCondition

func (m *LogConditionChange_Added) GetLogCondition() *LogCondition

func (*LogConditionChange_Added) GetViewIndex

func (m *LogConditionChange_Added) GetViewIndex() int32

func (*LogConditionChange_Added) GotenMessage

func (*LogConditionChange_Added) GotenMessage()

func (*LogConditionChange_Added) GotenValidate

func (obj *LogConditionChange_Added) GotenValidate() error

func (*LogConditionChange_Added) Marshal

func (m *LogConditionChange_Added) Marshal() ([]byte, error)

func (*LogConditionChange_Added) MarshalJSON

func (m *LogConditionChange_Added) MarshalJSON() ([]byte, error)

func (*LogConditionChange_Added) ProtoMessage

func (*LogConditionChange_Added) ProtoMessage()

func (*LogConditionChange_Added) ProtoReflect

func (m *LogConditionChange_Added) ProtoReflect() preflect.Message

func (*LogConditionChange_Added) Reset

func (m *LogConditionChange_Added) Reset()

func (*LogConditionChange_Added) SetLogCondition

func (m *LogConditionChange_Added) SetLogCondition(fv *LogCondition)

func (*LogConditionChange_Added) SetViewIndex

func (m *LogConditionChange_Added) SetViewIndex(fv int32)

func (*LogConditionChange_Added) String

func (m *LogConditionChange_Added) String() string

func (*LogConditionChange_Added) Unmarshal

func (m *LogConditionChange_Added) Unmarshal(b []byte) error

func (*LogConditionChange_Added) UnmarshalJSON

func (m *LogConditionChange_Added) UnmarshalJSON(data []byte) error

type LogConditionChange_Added_

type LogConditionChange_Added_ struct {
	// Added is returned when watched document is added, either created or
	// enters Query view
	Added *LogConditionChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof"`
}

type LogConditionChange_Current

type LogConditionChange_Current struct {
	LogCondition *LogCondition `protobuf:"bytes,1,opt,name=log_condition,json=logCondition,proto3" json:"log_condition,omitempty"`
	// contains filtered or unexported fields
}

LogCondition has been added or modified in a query view. Version used for stateless watching

func (*LogConditionChange_Current) Descriptor

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

Deprecated, Use LogConditionChange_Current.ProtoReflect.Descriptor instead.

func (*LogConditionChange_Current) GetLogCondition

func (m *LogConditionChange_Current) GetLogCondition() *LogCondition

func (*LogConditionChange_Current) GotenMessage

func (*LogConditionChange_Current) GotenMessage()

func (*LogConditionChange_Current) GotenValidate

func (obj *LogConditionChange_Current) GotenValidate() error

func (*LogConditionChange_Current) Marshal

func (m *LogConditionChange_Current) Marshal() ([]byte, error)

func (*LogConditionChange_Current) MarshalJSON

func (m *LogConditionChange_Current) MarshalJSON() ([]byte, error)

func (*LogConditionChange_Current) ProtoMessage

func (*LogConditionChange_Current) ProtoMessage()

func (*LogConditionChange_Current) ProtoReflect

func (m *LogConditionChange_Current) ProtoReflect() preflect.Message

func (*LogConditionChange_Current) Reset

func (m *LogConditionChange_Current) Reset()

func (*LogConditionChange_Current) SetLogCondition

func (m *LogConditionChange_Current) SetLogCondition(fv *LogCondition)

func (*LogConditionChange_Current) String

func (m *LogConditionChange_Current) String() string

func (*LogConditionChange_Current) Unmarshal

func (m *LogConditionChange_Current) Unmarshal(b []byte) error

func (*LogConditionChange_Current) UnmarshalJSON

func (m *LogConditionChange_Current) UnmarshalJSON(data []byte) error

type LogConditionChange_Current_

type LogConditionChange_Current_ struct {
	// Current is returned in stateless watch when document enters query view or
	// is modified within.
	Current *LogConditionChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof"`
}

type LogConditionChange_Modified

type LogConditionChange_Modified struct {

	// Name of modified LogCondition
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
	// New version of LogCondition or masked difference, depending on
	// mask_changes instrumentation of issued [WatchLogConditionRequest] or
	// [WatchLogConditionsRequest]
	LogCondition *LogCondition `protobuf:"bytes,2,opt,name=log_condition,json=logCondition,proto3" json:"log_condition,omitempty"`
	// Used when mask_changes is set, contains field paths of modified
	// properties.
	FieldMask *LogCondition_FieldMask `protobuf:"bytes,3,opt,customtype=LogCondition_FieldMask,name=field_mask,json=fieldMask,proto3" json:"field_mask,omitempty"`
	// Previous view index specifies previous position of modified LogCondition.
	// When modification doesn't affect sorted order, value will remain
	// identical to [view_index].
	PreviousViewIndex int32 `protobuf:"varint,4,opt,name=previous_view_index,json=previousViewIndex,proto3" json:"previous_view_index,omitempty"`
	// Integer specifying LogCondition new index in resulting query view.
	ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
	// contains filtered or unexported fields
}

LogCondition changed some of it's fields - contains either full document or masked change

func (*LogConditionChange_Modified) Descriptor

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

Deprecated, Use LogConditionChange_Modified.ProtoReflect.Descriptor instead.

func (*LogConditionChange_Modified) GetFieldMask

func (*LogConditionChange_Modified) GetLogCondition

func (m *LogConditionChange_Modified) GetLogCondition() *LogCondition

func (*LogConditionChange_Modified) GetName

func (m *LogConditionChange_Modified) GetName() *Name

func (*LogConditionChange_Modified) GetPreviousViewIndex

func (m *LogConditionChange_Modified) GetPreviousViewIndex() int32

func (*LogConditionChange_Modified) GetViewIndex

func (m *LogConditionChange_Modified) GetViewIndex() int32

func (*LogConditionChange_Modified) GotenMessage

func (*LogConditionChange_Modified) GotenMessage()

func (*LogConditionChange_Modified) GotenValidate

func (obj *LogConditionChange_Modified) GotenValidate() error

func (*LogConditionChange_Modified) Marshal

func (m *LogConditionChange_Modified) Marshal() ([]byte, error)

func (*LogConditionChange_Modified) MarshalJSON

func (m *LogConditionChange_Modified) MarshalJSON() ([]byte, error)

func (*LogConditionChange_Modified) ProtoMessage

func (*LogConditionChange_Modified) ProtoMessage()

func (*LogConditionChange_Modified) ProtoReflect

func (m *LogConditionChange_Modified) ProtoReflect() preflect.Message

func (*LogConditionChange_Modified) Reset

func (m *LogConditionChange_Modified) Reset()

func (*LogConditionChange_Modified) SetFieldMask

func (*LogConditionChange_Modified) SetLogCondition

func (m *LogConditionChange_Modified) SetLogCondition(fv *LogCondition)

func (*LogConditionChange_Modified) SetName

func (m *LogConditionChange_Modified) SetName(fv *Name)

func (*LogConditionChange_Modified) SetPreviousViewIndex

func (m *LogConditionChange_Modified) SetPreviousViewIndex(fv int32)

func (*LogConditionChange_Modified) SetViewIndex

func (m *LogConditionChange_Modified) SetViewIndex(fv int32)

func (*LogConditionChange_Modified) String

func (m *LogConditionChange_Modified) String() string

func (*LogConditionChange_Modified) Unmarshal

func (m *LogConditionChange_Modified) Unmarshal(b []byte) error

func (*LogConditionChange_Modified) UnmarshalJSON

func (m *LogConditionChange_Modified) UnmarshalJSON(data []byte) error

type LogConditionChange_Modified_

type LogConditionChange_Modified_ struct {
	// Modified is returned when watched document is modified
	Modified *LogConditionChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof"`
}

type LogConditionChange_Removed

type LogConditionChange_Removed struct {
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty"`
	// Integer specifying removed LogCondition index. Not populated in stateless
	// watch type.
	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty"`
	// contains filtered or unexported fields
}

Removed is returned when LogCondition is deleted or leaves Query view

func (*LogConditionChange_Removed) Descriptor

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

Deprecated, Use LogConditionChange_Removed.ProtoReflect.Descriptor instead.

func (*LogConditionChange_Removed) GetName

func (m *LogConditionChange_Removed) GetName() *Name

func (*LogConditionChange_Removed) GetViewIndex

func (m *LogConditionChange_Removed) GetViewIndex() int32

func (*LogConditionChange_Removed) GotenMessage

func (*LogConditionChange_Removed) GotenMessage()

func (*LogConditionChange_Removed) GotenValidate

func (obj *LogConditionChange_Removed) GotenValidate() error

func (*LogConditionChange_Removed) Marshal

func (m *LogConditionChange_Removed) Marshal() ([]byte, error)

func (*LogConditionChange_Removed) MarshalJSON

func (m *LogConditionChange_Removed) MarshalJSON() ([]byte, error)

func (*LogConditionChange_Removed) ProtoMessage

func (*LogConditionChange_Removed) ProtoMessage()

func (*LogConditionChange_Removed) ProtoReflect

func (m *LogConditionChange_Removed) ProtoReflect() preflect.Message

func (*LogConditionChange_Removed) Reset

func (m *LogConditionChange_Removed) Reset()

func (*LogConditionChange_Removed) SetName

func (m *LogConditionChange_Removed) SetName(fv *Name)

func (*LogConditionChange_Removed) SetViewIndex

func (m *LogConditionChange_Removed) SetViewIndex(fv int32)

func (*LogConditionChange_Removed) String

func (m *LogConditionChange_Removed) String() string

func (*LogConditionChange_Removed) Unmarshal

func (m *LogConditionChange_Removed) Unmarshal(b []byte) error

func (*LogConditionChange_Removed) UnmarshalJSON

func (m *LogConditionChange_Removed) UnmarshalJSON(data []byte) error

type LogConditionChange_Removed_

type LogConditionChange_Removed_ struct {
	// Removed is returned when LogCondition is deleted or leaves Query view
	Removed *LogConditionChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof"`
}

type LogConditionFieldPathBuilder

type LogConditionFieldPathBuilder struct{}

func NewLogConditionFieldPathBuilder

func NewLogConditionFieldPathBuilder() LogConditionFieldPathBuilder

func (LogConditionFieldPathBuilder) Description

func (LogConditionFieldPathBuilder) DisplayName

func (LogConditionFieldPathBuilder) Internal

func (LogConditionFieldPathBuilder) Metadata

func (LogConditionFieldPathBuilder) Name

func (LogConditionFieldPathBuilder) Spec

func (LogConditionFieldPathBuilder) SupportingDocs

func (LogConditionFieldPathBuilder) TemplateSource added in v1.13.6

type LogConditionInternalFieldPathBuilder

type LogConditionInternalFieldPathBuilder struct{}

func NewLogConditionInternalFieldPathBuilder

func NewLogConditionInternalFieldPathBuilder() LogConditionInternalFieldPathBuilder

func (LogConditionInternalFieldPathBuilder) AlertingLocation

type LogConditionInternal_FieldPath

type LogConditionInternal_FieldPath interface {
	gotenobject.FieldPath
	Selector() LogConditionInternal_FieldPathSelector
	Get(source *LogCondition_Internal) []interface{}
	GetSingle(source *LogCondition_Internal) (interface{}, bool)
	ClearValue(item *LogCondition_Internal)

	// Those methods build corresponding LogConditionInternal_FieldPathValue
	// (or array of values) and holds passed value. Panics if injected type is incorrect.
	WithIValue(value interface{}) LogConditionInternal_FieldPathValue
	WithIArrayOfValues(values interface{}) LogConditionInternal_FieldPathArrayOfValues
	WithIArrayItemValue(value interface{}) LogConditionInternal_FieldPathArrayItemValue
}

FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto

func MustParseLogConditionInternal_FieldPath

func MustParseLogConditionInternal_FieldPath(rawField string) LogConditionInternal_FieldPath

func ParseLogConditionInternal_FieldPath

func ParseLogConditionInternal_FieldPath(rawField string) (LogConditionInternal_FieldPath, error)

type LogConditionInternal_FieldPathArrayItemValue

type LogConditionInternal_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	LogConditionInternal_FieldPath
	ContainsValue(*LogCondition_Internal) bool
}

LogConditionInternal_FieldPathArrayItemValue allows storing single item in Path-specific values for Internal according to their type Present only for array (repeated) types.

func MustParseLogConditionInternal_FieldPathArrayItemValue

func MustParseLogConditionInternal_FieldPathArrayItemValue(pathStr, valueStr string) LogConditionInternal_FieldPathArrayItemValue

func ParseLogConditionInternal_FieldPathArrayItemValue

func ParseLogConditionInternal_FieldPathArrayItemValue(pathStr, valueStr string) (LogConditionInternal_FieldPathArrayItemValue, error)

ParseLogConditionInternal_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type LogConditionInternal_FieldPathArrayOfValues

type LogConditionInternal_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	LogConditionInternal_FieldPath
}

LogConditionInternal_FieldPathArrayOfValues allows storing slice of values for Internal fields according to their type

func MustParseLogConditionInternal_FieldPathArrayOfValues

func MustParseLogConditionInternal_FieldPathArrayOfValues(pathStr, valuesStr string) LogConditionInternal_FieldPathArrayOfValues

func ParseLogConditionInternal_FieldPathArrayOfValues

func ParseLogConditionInternal_FieldPathArrayOfValues(pathStr, valuesStr string) (LogConditionInternal_FieldPathArrayOfValues, error)

type LogConditionInternal_FieldPathSelector

type LogConditionInternal_FieldPathSelector int32
const (
	LogConditionInternal_FieldPathSelectorAlertingLocation LogConditionInternal_FieldPathSelector = 0
)

func (LogConditionInternal_FieldPathSelector) String

type LogConditionInternal_FieldPathValue

type LogConditionInternal_FieldPathValue interface {
	LogConditionInternal_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **LogCondition_Internal)
	CompareWith(*LogCondition_Internal) (cmp int, comparable bool)
}

LogConditionInternal_FieldPathValue allows storing values for Internal fields according to their type

func MustParseLogConditionInternal_FieldPathValue

func MustParseLogConditionInternal_FieldPathValue(pathStr, valueStr string) LogConditionInternal_FieldPathValue

func ParseLogConditionInternal_FieldPathValue

func ParseLogConditionInternal_FieldPathValue(pathStr, valueStr string) (LogConditionInternal_FieldPathValue, error)

type LogConditionInternal_FieldTerminalPath

type LogConditionInternal_FieldTerminalPath struct {
	// contains filtered or unexported fields
}

func (*LogConditionInternal_FieldTerminalPath) ClearValue

func (*LogConditionInternal_FieldTerminalPath) ClearValueRaw

func (fp *LogConditionInternal_FieldTerminalPath) ClearValueRaw(item proto.Message)

func (*LogConditionInternal_FieldTerminalPath) Get

func (fp *LogConditionInternal_FieldTerminalPath) Get(source *LogCondition_Internal) (values []interface{})

Get returns all values pointed by specific field from source LogCondition_Internal

func (*LogConditionInternal_FieldTerminalPath) GetDefault

func (fp *LogConditionInternal_FieldTerminalPath) GetDefault() interface{}

GetDefault returns a default value of the field type

func (*LogConditionInternal_FieldTerminalPath) GetRaw

func (fp *LogConditionInternal_FieldTerminalPath) GetRaw(source proto.Message) []interface{}

func (*LogConditionInternal_FieldTerminalPath) GetSingle

func (fp *LogConditionInternal_FieldTerminalPath) GetSingle(source *LogCondition_Internal) (interface{}, bool)

GetSingle returns value pointed by specific field of from source LogCondition_Internal

func (*LogConditionInternal_FieldTerminalPath) GetSingleRaw

func (fp *LogConditionInternal_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)

func (*LogConditionInternal_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*LogConditionInternal_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*LogConditionInternal_FieldTerminalPath) Selector

func (*LogConditionInternal_FieldTerminalPath) SplitIntoTerminalIPaths

func (fp *LogConditionInternal_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath

func (*LogConditionInternal_FieldTerminalPath) String

String returns path representation in proto convention

func (*LogConditionInternal_FieldTerminalPath) WithIArrayItemValue

func (*LogConditionInternal_FieldTerminalPath) WithIArrayOfValues

func (*LogConditionInternal_FieldTerminalPath) WithIValue

func (*LogConditionInternal_FieldTerminalPath) WithRawIArrayItemValue

func (fp *LogConditionInternal_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue

func (*LogConditionInternal_FieldTerminalPath) WithRawIArrayOfValues

func (fp *LogConditionInternal_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues

func (*LogConditionInternal_FieldTerminalPath) WithRawIValue

func (fp *LogConditionInternal_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue

type LogConditionInternal_FieldTerminalPathArrayItemValue

type LogConditionInternal_FieldTerminalPathArrayItemValue struct {
	LogConditionInternal_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionInternal_FieldTerminalPathArrayItemValue) ContainsValue

Contains returns a boolean indicating if value that is being held is present in given 'Internal'

func (*LogConditionInternal_FieldTerminalPathArrayItemValue) GetRawItemValue

func (fpaiv *LogConditionInternal_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}

GetRawValue returns stored element value for array in object LogCondition_Internal as interface{}

func (*LogConditionInternal_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *LogConditionInternal_FieldTerminalPathArrayItemValue) GetSingle(source *LogCondition_Internal) (interface{}, bool)

func (*LogConditionInternal_FieldTerminalPathArrayItemValue) GetSingleRaw

func (fpaiv *LogConditionInternal_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)

type LogConditionInternal_FieldTerminalPathArrayOfValues

type LogConditionInternal_FieldTerminalPathArrayOfValues struct {
	LogConditionInternal_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionInternal_FieldTerminalPathArrayOfValues) AsAlertingLocationArrayOfValues

func (*LogConditionInternal_FieldTerminalPathArrayOfValues) GetRawValues

func (fpaov *LogConditionInternal_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})

type LogConditionInternal_FieldTerminalPathValue

type LogConditionInternal_FieldTerminalPathValue struct {
	LogConditionInternal_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionInternal_FieldTerminalPathValue) AsAlertingLocationValue

func (*LogConditionInternal_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'LogConditionInternal_FieldTerminalPathValue' with the value under path in 'LogCondition_Internal'.

func (*LogConditionInternal_FieldTerminalPathValue) CompareWithRaw

func (fpv *LogConditionInternal_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)

func (*LogConditionInternal_FieldTerminalPathValue) GetRawValue

func (fpv *LogConditionInternal_FieldTerminalPathValue) GetRawValue() interface{}

GetRawValue returns raw value stored under selected path for 'Internal' as interface{}

func (*LogConditionInternal_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Internal

func (*LogConditionInternal_FieldTerminalPathValue) SetToRaw

type LogConditionList

type LogConditionList []*LogCondition

func (LogConditionList) Append

func (LogConditionList) AppendList

func (LogConditionList) At

func (LogConditionList) Length

func (l LogConditionList) Length() int

func (LogConditionList) Set

func (l LogConditionList) Set(idx int, res gotenresource.Resource)

func (LogConditionList) Slice

func (l LogConditionList) Slice(first, second int) gotenresource.ResourceList

type LogConditionMap

type LogConditionMap map[Name]*LogCondition

func (LogConditionMap) Delete

func (m LogConditionMap) Delete(name gotenresource.Name)

func (LogConditionMap) ForEach

func (LogConditionMap) Get

func (LogConditionMap) Length

func (m LogConditionMap) Length() int

func (LogConditionMap) Set

type LogConditionMapPathSelectorMetadataAnnotations

type LogConditionMapPathSelectorMetadataAnnotations struct {
	// contains filtered or unexported fields
}

func (LogConditionMapPathSelectorMetadataAnnotations) FieldPath

func (LogConditionMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (LogConditionMapPathSelectorMetadataAnnotations) WithValue

type LogConditionMapPathSelectorMetadataLabels

type LogConditionMapPathSelectorMetadataLabels struct {
	// contains filtered or unexported fields
}

func (LogConditionMapPathSelectorMetadataLabels) FieldPath

func (LogConditionMapPathSelectorMetadataLabels) WithArrayOfValues

func (LogConditionMapPathSelectorMetadataLabels) WithValue

type LogConditionMapPathSelectorMetadataShards

type LogConditionMapPathSelectorMetadataShards struct {
	// contains filtered or unexported fields
}

func (LogConditionMapPathSelectorMetadataShards) FieldPath

func (LogConditionMapPathSelectorMetadataShards) WithArrayOfValues

func (LogConditionMapPathSelectorMetadataShards) WithValue

type LogConditionNameList

type LogConditionNameList []*Name

func (LogConditionNameList) Append

func (LogConditionNameList) AppendList

func (LogConditionNameList) At

func (LogConditionNameList) Length

func (l LogConditionNameList) Length() int

func (LogConditionNameList) Set

func (l LogConditionNameList) Set(idx int, name gotenresource.Name)

func (LogConditionNameList) Slice

func (l LogConditionNameList) Slice(first, second int) gotenresource.NameList

type LogConditionParentNameList

type LogConditionParentNameList []*ParentName

func (LogConditionParentNameList) Append

func (LogConditionParentNameList) AppendList

func (LogConditionParentNameList) At

func (LogConditionParentNameList) Length

func (l LogConditionParentNameList) Length() int

func (LogConditionParentNameList) Set

func (LogConditionParentNameList) Slice

type LogConditionParentReferenceList

type LogConditionParentReferenceList []*ParentReference

func (LogConditionParentReferenceList) Append

func (LogConditionParentReferenceList) AppendList

func (LogConditionParentReferenceList) At

func (LogConditionParentReferenceList) Length

func (LogConditionParentReferenceList) Set

func (LogConditionParentReferenceList) Slice

type LogConditionPathSelectorDescription

type LogConditionPathSelectorDescription struct{}

func (LogConditionPathSelectorDescription) FieldPath

func (LogConditionPathSelectorDescription) WithArrayOfValues

func (LogConditionPathSelectorDescription) WithValue

type LogConditionPathSelectorDisplayName

type LogConditionPathSelectorDisplayName struct{}

func (LogConditionPathSelectorDisplayName) FieldPath

func (LogConditionPathSelectorDisplayName) WithArrayOfValues

func (LogConditionPathSelectorDisplayName) WithValue

type LogConditionPathSelectorInternal

type LogConditionPathSelectorInternal struct{}

func (LogConditionPathSelectorInternal) AlertingLocation

func (LogConditionPathSelectorInternal) FieldPath

func (LogConditionPathSelectorInternal) WithArrayOfValues

func (LogConditionPathSelectorInternal) WithSubArrayItemValue

func (LogConditionPathSelectorInternal) WithSubArrayOfValues

func (LogConditionPathSelectorInternal) WithSubPath

func (LogConditionPathSelectorInternal) WithSubValue

func (LogConditionPathSelectorInternal) WithValue

type LogConditionPathSelectorInternalAlertingLocation

type LogConditionPathSelectorInternalAlertingLocation struct{}

func (LogConditionPathSelectorInternalAlertingLocation) FieldPath

func (LogConditionPathSelectorInternalAlertingLocation) WithArrayOfValues

func (LogConditionPathSelectorInternalAlertingLocation) WithValue

type LogConditionPathSelectorMetadata

type LogConditionPathSelectorMetadata struct{}

func (LogConditionPathSelectorMetadata) Annotations

func (LogConditionPathSelectorMetadata) CreateTime

func (LogConditionPathSelectorMetadata) DeleteTime

func (LogConditionPathSelectorMetadata) FieldPath

func (LogConditionPathSelectorMetadata) Generation

func (LogConditionPathSelectorMetadata) Labels

func (LogConditionPathSelectorMetadata) Lifecycle

func (LogConditionPathSelectorMetadata) OwnerReferences

func (LogConditionPathSelectorMetadata) ResourceVersion

func (LogConditionPathSelectorMetadata) Services

func (LogConditionPathSelectorMetadata) Shards

func (LogConditionPathSelectorMetadata) Syncing

func (LogConditionPathSelectorMetadata) Tags

func (LogConditionPathSelectorMetadata) UpdateTime

func (LogConditionPathSelectorMetadata) Uuid

func (LogConditionPathSelectorMetadata) WithArrayOfValues

func (LogConditionPathSelectorMetadata) WithSubArrayItemValue

func (LogConditionPathSelectorMetadata) WithSubArrayOfValues

func (LogConditionPathSelectorMetadata) WithSubPath

func (LogConditionPathSelectorMetadata) WithSubValue

func (LogConditionPathSelectorMetadata) WithValue

type LogConditionPathSelectorMetadataAnnotations

type LogConditionPathSelectorMetadataAnnotations struct{}

func (LogConditionPathSelectorMetadataAnnotations) FieldPath

func (LogConditionPathSelectorMetadataAnnotations) WithArrayOfValues

func (LogConditionPathSelectorMetadataAnnotations) WithKey

func (LogConditionPathSelectorMetadataAnnotations) WithValue

type LogConditionPathSelectorMetadataCreateTime

type LogConditionPathSelectorMetadataCreateTime struct{}

func (LogConditionPathSelectorMetadataCreateTime) FieldPath

func (LogConditionPathSelectorMetadataCreateTime) WithArrayOfValues

func (LogConditionPathSelectorMetadataCreateTime) WithValue

type LogConditionPathSelectorMetadataDeleteTime

type LogConditionPathSelectorMetadataDeleteTime struct{}

func (LogConditionPathSelectorMetadataDeleteTime) FieldPath

func (LogConditionPathSelectorMetadataDeleteTime) WithArrayOfValues

func (LogConditionPathSelectorMetadataDeleteTime) WithValue

type LogConditionPathSelectorMetadataGeneration

type LogConditionPathSelectorMetadataGeneration struct{}

func (LogConditionPathSelectorMetadataGeneration) FieldPath

func (LogConditionPathSelectorMetadataGeneration) WithArrayOfValues

func (LogConditionPathSelectorMetadataGeneration) WithValue

type LogConditionPathSelectorMetadataLabels

type LogConditionPathSelectorMetadataLabels struct{}

func (LogConditionPathSelectorMetadataLabels) FieldPath

func (LogConditionPathSelectorMetadataLabels) WithArrayOfValues

func (LogConditionPathSelectorMetadataLabels) WithKey

func (LogConditionPathSelectorMetadataLabels) WithValue

type LogConditionPathSelectorMetadataLifecycle

type LogConditionPathSelectorMetadataLifecycle struct{}

func (LogConditionPathSelectorMetadataLifecycle) BlockDeletion

func (LogConditionPathSelectorMetadataLifecycle) FieldPath

func (LogConditionPathSelectorMetadataLifecycle) State

func (LogConditionPathSelectorMetadataLifecycle) WithArrayOfValues

func (LogConditionPathSelectorMetadataLifecycle) WithValue

type LogConditionPathSelectorMetadataLifecycleBlockDeletion

type LogConditionPathSelectorMetadataLifecycleBlockDeletion struct{}

func (LogConditionPathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (LogConditionPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (LogConditionPathSelectorMetadataLifecycleBlockDeletion) WithValue

type LogConditionPathSelectorMetadataLifecycleState

type LogConditionPathSelectorMetadataLifecycleState struct{}

func (LogConditionPathSelectorMetadataLifecycleState) FieldPath

func (LogConditionPathSelectorMetadataLifecycleState) WithArrayOfValues

func (LogConditionPathSelectorMetadataLifecycleState) WithValue

type LogConditionPathSelectorMetadataOwnerReferences

type LogConditionPathSelectorMetadataOwnerReferences struct{}

func (LogConditionPathSelectorMetadataOwnerReferences) Controller

func (LogConditionPathSelectorMetadataOwnerReferences) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferences) Kind

func (LogConditionPathSelectorMetadataOwnerReferences) Name

func (LogConditionPathSelectorMetadataOwnerReferences) Region

func (LogConditionPathSelectorMetadataOwnerReferences) UnsetOnDelete

func (LogConditionPathSelectorMetadataOwnerReferences) Version

func (LogConditionPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferences) WithItemValue

func (LogConditionPathSelectorMetadataOwnerReferences) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesController

type LogConditionPathSelectorMetadataOwnerReferencesController struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesController) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesController) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesKind

type LogConditionPathSelectorMetadataOwnerReferencesKind struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesKind) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesKind) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesName

type LogConditionPathSelectorMetadataOwnerReferencesName struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesName) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesName) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesRegion

type LogConditionPathSelectorMetadataOwnerReferencesRegion struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesRegion) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesRegion) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesRequiresOwnerReference

type LogConditionPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesUnsetOnDelete

type LogConditionPathSelectorMetadataOwnerReferencesUnsetOnDelete struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesUnsetOnDelete) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesUnsetOnDelete) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesUnsetOnDelete) WithValue

type LogConditionPathSelectorMetadataOwnerReferencesVersion

type LogConditionPathSelectorMetadataOwnerReferencesVersion struct{}

func (LogConditionPathSelectorMetadataOwnerReferencesVersion) FieldPath

func (LogConditionPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (LogConditionPathSelectorMetadataOwnerReferencesVersion) WithValue

type LogConditionPathSelectorMetadataResourceVersion

type LogConditionPathSelectorMetadataResourceVersion struct{}

func (LogConditionPathSelectorMetadataResourceVersion) FieldPath

func (LogConditionPathSelectorMetadataResourceVersion) WithArrayOfValues

func (LogConditionPathSelectorMetadataResourceVersion) WithValue

type LogConditionPathSelectorMetadataServices

type LogConditionPathSelectorMetadataServices struct{}

func (LogConditionPathSelectorMetadataServices) AllowedServices

func (LogConditionPathSelectorMetadataServices) FieldPath

func (LogConditionPathSelectorMetadataServices) OwningService

func (LogConditionPathSelectorMetadataServices) WithArrayOfValues

func (LogConditionPathSelectorMetadataServices) WithValue

type LogConditionPathSelectorMetadataServicesAllowedServices

type LogConditionPathSelectorMetadataServicesAllowedServices struct{}

func (LogConditionPathSelectorMetadataServicesAllowedServices) FieldPath

func (LogConditionPathSelectorMetadataServicesAllowedServices) WithArrayOfValues

func (LogConditionPathSelectorMetadataServicesAllowedServices) WithItemValue

func (LogConditionPathSelectorMetadataServicesAllowedServices) WithValue

type LogConditionPathSelectorMetadataServicesOwningService

type LogConditionPathSelectorMetadataServicesOwningService struct{}

func (LogConditionPathSelectorMetadataServicesOwningService) FieldPath

func (LogConditionPathSelectorMetadataServicesOwningService) WithArrayOfValues

func (LogConditionPathSelectorMetadataServicesOwningService) WithValue

type LogConditionPathSelectorMetadataShards

type LogConditionPathSelectorMetadataShards struct{}

func (LogConditionPathSelectorMetadataShards) FieldPath

func (LogConditionPathSelectorMetadataShards) WithArrayOfValues

func (LogConditionPathSelectorMetadataShards) WithKey

func (LogConditionPathSelectorMetadataShards) WithValue

type LogConditionPathSelectorMetadataSyncing

type LogConditionPathSelectorMetadataSyncing struct{}

func (LogConditionPathSelectorMetadataSyncing) FieldPath

func (LogConditionPathSelectorMetadataSyncing) OwningRegion

func (LogConditionPathSelectorMetadataSyncing) Regions

func (LogConditionPathSelectorMetadataSyncing) WithArrayOfValues

func (LogConditionPathSelectorMetadataSyncing) WithValue

type LogConditionPathSelectorMetadataSyncingOwningRegion

type LogConditionPathSelectorMetadataSyncingOwningRegion struct{}

func (LogConditionPathSelectorMetadataSyncingOwningRegion) FieldPath

func (LogConditionPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (LogConditionPathSelectorMetadataSyncingOwningRegion) WithValue

type LogConditionPathSelectorMetadataSyncingRegions

type LogConditionPathSelectorMetadataSyncingRegions struct{}

func (LogConditionPathSelectorMetadataSyncingRegions) FieldPath

func (LogConditionPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (LogConditionPathSelectorMetadataSyncingRegions) WithItemValue

func (LogConditionPathSelectorMetadataSyncingRegions) WithValue

type LogConditionPathSelectorMetadataTags

type LogConditionPathSelectorMetadataTags struct{}

func (LogConditionPathSelectorMetadataTags) FieldPath

func (LogConditionPathSelectorMetadataTags) WithArrayOfValues

func (LogConditionPathSelectorMetadataTags) WithItemValue

func (LogConditionPathSelectorMetadataTags) WithValue

type LogConditionPathSelectorMetadataUpdateTime

type LogConditionPathSelectorMetadataUpdateTime struct{}

func (LogConditionPathSelectorMetadataUpdateTime) FieldPath

func (LogConditionPathSelectorMetadataUpdateTime) WithArrayOfValues

func (LogConditionPathSelectorMetadataUpdateTime) WithValue

type LogConditionPathSelectorMetadataUuid

type LogConditionPathSelectorMetadataUuid struct{}

func (LogConditionPathSelectorMetadataUuid) FieldPath

func (LogConditionPathSelectorMetadataUuid) WithArrayOfValues

func (LogConditionPathSelectorMetadataUuid) WithValue

type LogConditionPathSelectorName

type LogConditionPathSelectorName struct{}

func (LogConditionPathSelectorName) FieldPath

func (LogConditionPathSelectorName) WithArrayOfValues

func (LogConditionPathSelectorName) WithValue

type LogConditionPathSelectorSpec

type LogConditionPathSelectorSpec struct{}

func (LogConditionPathSelectorSpec) FieldPath

func (LogConditionPathSelectorSpec) GroupByLabels

func (LogConditionPathSelectorSpec) Query

func (LogConditionPathSelectorSpec) WithArrayOfValues

func (LogConditionPathSelectorSpec) WithSubArrayItemValue

func (LogConditionPathSelectorSpec) WithSubArrayOfValues

func (LogConditionPathSelectorSpec) WithSubPath

func (LogConditionPathSelectorSpec) WithSubValue

func (LogConditionPathSelectorSpec) WithValue

type LogConditionPathSelectorSpecGroupByLabels

type LogConditionPathSelectorSpecGroupByLabels struct{}

func (LogConditionPathSelectorSpecGroupByLabels) FieldPath

func (LogConditionPathSelectorSpecGroupByLabels) WithArrayOfValues

func (LogConditionPathSelectorSpecGroupByLabels) WithItemValue

func (LogConditionPathSelectorSpecGroupByLabels) WithValue

type LogConditionPathSelectorSpecQuery

type LogConditionPathSelectorSpecQuery struct{}

func (LogConditionPathSelectorSpecQuery) FieldPath

func (LogConditionPathSelectorSpecQuery) Filter

func (LogConditionPathSelectorSpecQuery) MinDuration

func (LogConditionPathSelectorSpecQuery) Trigger

func (LogConditionPathSelectorSpecQuery) WithArrayOfValues

func (LogConditionPathSelectorSpecQuery) WithValue

type LogConditionPathSelectorSpecQueryFilter

type LogConditionPathSelectorSpecQueryFilter struct{}

func (LogConditionPathSelectorSpecQueryFilter) FieldPath

func (LogConditionPathSelectorSpecQueryFilter) WithArrayOfValues

func (LogConditionPathSelectorSpecQueryFilter) WithValue

type LogConditionPathSelectorSpecQueryMinDuration

type LogConditionPathSelectorSpecQueryMinDuration struct{}

func (LogConditionPathSelectorSpecQueryMinDuration) FieldPath

func (LogConditionPathSelectorSpecQueryMinDuration) WithArrayOfValues

func (LogConditionPathSelectorSpecQueryMinDuration) WithValue

type LogConditionPathSelectorSpecQueryTrigger

type LogConditionPathSelectorSpecQueryTrigger struct{}

func (LogConditionPathSelectorSpecQueryTrigger) FieldPath

func (LogConditionPathSelectorSpecQueryTrigger) WithArrayOfValues

func (LogConditionPathSelectorSpecQueryTrigger) WithValue

type LogConditionPathSelectorSupportingDocs

type LogConditionPathSelectorSupportingDocs struct{}

func (LogConditionPathSelectorSupportingDocs) FieldPath

func (LogConditionPathSelectorSupportingDocs) WithArrayOfValues

func (LogConditionPathSelectorSupportingDocs) WithItemValue

func (LogConditionPathSelectorSupportingDocs) WithValue

type LogConditionPathSelectorTemplateSource added in v1.13.6

type LogConditionPathSelectorTemplateSource struct{}

func (LogConditionPathSelectorTemplateSource) FieldPath added in v1.13.6

func (LogConditionPathSelectorTemplateSource) Template added in v1.13.6

func (LogConditionPathSelectorTemplateSource) UpdatedFields added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithArrayOfValues added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithSubArrayItemValue added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithSubArrayOfValues added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithSubPath added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithSubValue added in v1.13.6

func (LogConditionPathSelectorTemplateSource) WithValue added in v1.13.6

type LogConditionPathSelectorTemplateSourceTemplate added in v1.13.6

type LogConditionPathSelectorTemplateSourceTemplate struct{}

func (LogConditionPathSelectorTemplateSourceTemplate) FieldPath added in v1.13.6

func (LogConditionPathSelectorTemplateSourceTemplate) WithArrayOfValues added in v1.13.6

func (LogConditionPathSelectorTemplateSourceTemplate) WithValue added in v1.13.6

type LogConditionPathSelectorTemplateSourceUpdatedFields added in v1.13.6

type LogConditionPathSelectorTemplateSourceUpdatedFields struct{}

func (LogConditionPathSelectorTemplateSourceUpdatedFields) FieldPath added in v1.13.6

func (LogConditionPathSelectorTemplateSourceUpdatedFields) WithArrayOfValues added in v1.13.6

func (LogConditionPathSelectorTemplateSourceUpdatedFields) WithValue added in v1.13.6

type LogConditionReferenceList

type LogConditionReferenceList []*Reference

func (LogConditionReferenceList) Append

func (LogConditionReferenceList) AppendList

func (LogConditionReferenceList) At

func (LogConditionReferenceList) Length

func (l LogConditionReferenceList) Length() int

func (LogConditionReferenceList) Set

func (LogConditionReferenceList) Slice

type LogConditionTemplateSourceFieldPathBuilder added in v1.13.6

type LogConditionTemplateSourceFieldPathBuilder struct{}

func NewLogConditionTemplateSourceFieldPathBuilder added in v1.13.6

func NewLogConditionTemplateSourceFieldPathBuilder() LogConditionTemplateSourceFieldPathBuilder

func (LogConditionTemplateSourceFieldPathBuilder) Template added in v1.13.6

func (LogConditionTemplateSourceFieldPathBuilder) UpdatedFields added in v1.13.6

type LogConditionTemplateSource_FieldPath added in v1.13.6

type LogConditionTemplateSource_FieldPath interface {
	gotenobject.FieldPath
	Selector() LogConditionTemplateSource_FieldPathSelector
	Get(source *LogCondition_TemplateSource) []interface{}
	GetSingle(source *LogCondition_TemplateSource) (interface{}, bool)
	ClearValue(item *LogCondition_TemplateSource)

	// Those methods build corresponding LogConditionTemplateSource_FieldPathValue
	// (or array of values) and holds passed value. Panics if injected type is incorrect.
	WithIValue(value interface{}) LogConditionTemplateSource_FieldPathValue
	WithIArrayOfValues(values interface{}) LogConditionTemplateSource_FieldPathArrayOfValues
	WithIArrayItemValue(value interface{}) LogConditionTemplateSource_FieldPathArrayItemValue
}

FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto

func BuildLogConditionTemplateSource_FieldPath added in v1.13.6

func BuildLogConditionTemplateSource_FieldPath(fp gotenobject.RawFieldPath) (LogConditionTemplateSource_FieldPath, error)

func MustParseLogConditionTemplateSource_FieldPath added in v1.13.6

func MustParseLogConditionTemplateSource_FieldPath(rawField string) LogConditionTemplateSource_FieldPath

func ParseLogConditionTemplateSource_FieldPath added in v1.13.6

func ParseLogConditionTemplateSource_FieldPath(rawField string) (LogConditionTemplateSource_FieldPath, error)

type LogConditionTemplateSource_FieldPathArrayItemValue added in v1.13.6

type LogConditionTemplateSource_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	LogConditionTemplateSource_FieldPath
	ContainsValue(*LogCondition_TemplateSource) bool
}

LogConditionTemplateSource_FieldPathArrayItemValue allows storing single item in Path-specific values for TemplateSource according to their type Present only for array (repeated) types.

func MustParseLogConditionTemplateSource_FieldPathArrayItemValue added in v1.13.6

func MustParseLogConditionTemplateSource_FieldPathArrayItemValue(pathStr, valueStr string) LogConditionTemplateSource_FieldPathArrayItemValue

func ParseLogConditionTemplateSource_FieldPathArrayItemValue added in v1.13.6

func ParseLogConditionTemplateSource_FieldPathArrayItemValue(pathStr, valueStr string) (LogConditionTemplateSource_FieldPathArrayItemValue, error)

ParseLogConditionTemplateSource_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type LogConditionTemplateSource_FieldPathArrayOfValues added in v1.13.6

type LogConditionTemplateSource_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	LogConditionTemplateSource_FieldPath
}

LogConditionTemplateSource_FieldPathArrayOfValues allows storing slice of values for TemplateSource fields according to their type

func MustParseLogConditionTemplateSource_FieldPathArrayOfValues added in v1.13.6

func MustParseLogConditionTemplateSource_FieldPathArrayOfValues(pathStr, valuesStr string) LogConditionTemplateSource_FieldPathArrayOfValues

func ParseLogConditionTemplateSource_FieldPathArrayOfValues added in v1.13.6

func ParseLogConditionTemplateSource_FieldPathArrayOfValues(pathStr, valuesStr string) (LogConditionTemplateSource_FieldPathArrayOfValues, error)

type LogConditionTemplateSource_FieldPathSelector added in v1.13.6

type LogConditionTemplateSource_FieldPathSelector int32
const (
	LogConditionTemplateSource_FieldPathSelectorTemplate      LogConditionTemplateSource_FieldPathSelector = 0
	LogConditionTemplateSource_FieldPathSelectorUpdatedFields LogConditionTemplateSource_FieldPathSelector = 1
)

func (LogConditionTemplateSource_FieldPathSelector) String added in v1.13.6

type LogConditionTemplateSource_FieldPathValue added in v1.13.6

type LogConditionTemplateSource_FieldPathValue interface {
	LogConditionTemplateSource_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **LogCondition_TemplateSource)
	CompareWith(*LogCondition_TemplateSource) (cmp int, comparable bool)
}

LogConditionTemplateSource_FieldPathValue allows storing values for TemplateSource fields according to their type

func MustParseLogConditionTemplateSource_FieldPathValue added in v1.13.6

func MustParseLogConditionTemplateSource_FieldPathValue(pathStr, valueStr string) LogConditionTemplateSource_FieldPathValue

func ParseLogConditionTemplateSource_FieldPathValue added in v1.13.6

func ParseLogConditionTemplateSource_FieldPathValue(pathStr, valueStr string) (LogConditionTemplateSource_FieldPathValue, error)

type LogConditionTemplateSource_FieldTerminalPath added in v1.13.6

type LogConditionTemplateSource_FieldTerminalPath struct {
	// contains filtered or unexported fields
}

func (*LogConditionTemplateSource_FieldTerminalPath) ClearValue added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) ClearValueRaw added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) Get added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) Get(source *LogCondition_TemplateSource) (values []interface{})

Get returns all values pointed by specific field from source LogCondition_TemplateSource

func (*LogConditionTemplateSource_FieldTerminalPath) GetDefault added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) GetDefault() interface{}

GetDefault returns a default value of the field type

func (*LogConditionTemplateSource_FieldTerminalPath) GetRaw added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) GetRaw(source proto.Message) []interface{}

func (*LogConditionTemplateSource_FieldTerminalPath) GetSingle added in v1.13.6

GetSingle returns value pointed by specific field of from source LogCondition_TemplateSource

func (*LogConditionTemplateSource_FieldTerminalPath) GetSingleRaw added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)

func (*LogConditionTemplateSource_FieldTerminalPath) IsLeaf added in v1.13.6

IsLeaf - whether field path is holds simple value

func (*LogConditionTemplateSource_FieldTerminalPath) JSONString added in v1.13.6

JSONString returns path representation is JSON convention

func (*LogConditionTemplateSource_FieldTerminalPath) Selector added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath

func (*LogConditionTemplateSource_FieldTerminalPath) String added in v1.13.6

String returns path representation in proto convention

func (*LogConditionTemplateSource_FieldTerminalPath) WithIArrayItemValue added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) WithIArrayOfValues added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) WithIValue added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPath) WithRawIArrayItemValue added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue

func (*LogConditionTemplateSource_FieldTerminalPath) WithRawIArrayOfValues added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues

func (*LogConditionTemplateSource_FieldTerminalPath) WithRawIValue added in v1.13.6

func (fp *LogConditionTemplateSource_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue

type LogConditionTemplateSource_FieldTerminalPathArrayItemValue added in v1.13.6

type LogConditionTemplateSource_FieldTerminalPathArrayItemValue struct {
	LogConditionTemplateSource_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionTemplateSource_FieldTerminalPathArrayItemValue) ContainsValue added in v1.13.6

Contains returns a boolean indicating if value that is being held is present in given 'TemplateSource'

func (*LogConditionTemplateSource_FieldTerminalPathArrayItemValue) GetRawItemValue added in v1.13.6

func (fpaiv *LogConditionTemplateSource_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}

GetRawValue returns stored element value for array in object LogCondition_TemplateSource as interface{}

func (*LogConditionTemplateSource_FieldTerminalPathArrayItemValue) GetSingle added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPathArrayItemValue) GetSingleRaw added in v1.13.6

func (fpaiv *LogConditionTemplateSource_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)

type LogConditionTemplateSource_FieldTerminalPathArrayOfValues added in v1.13.6

type LogConditionTemplateSource_FieldTerminalPathArrayOfValues struct {
	LogConditionTemplateSource_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionTemplateSource_FieldTerminalPathArrayOfValues) AsTemplateArrayOfValues added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPathArrayOfValues) AsUpdatedFieldsArrayOfValues added in v1.13.6

func (fpaov *LogConditionTemplateSource_FieldTerminalPathArrayOfValues) AsUpdatedFieldsArrayOfValues() ([]*fieldmaskpb.FieldMask, bool)

func (*LogConditionTemplateSource_FieldTerminalPathArrayOfValues) GetRawValues added in v1.13.6

func (fpaov *LogConditionTemplateSource_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})

type LogConditionTemplateSource_FieldTerminalPathValue added in v1.13.6

type LogConditionTemplateSource_FieldTerminalPathValue struct {
	LogConditionTemplateSource_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogConditionTemplateSource_FieldTerminalPathValue) AsTemplateValue added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPathValue) AsUpdatedFieldsValue added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPathValue) CompareWith added in v1.13.6

CompareWith compares value in the 'LogConditionTemplateSource_FieldTerminalPathValue' with the value under path in 'LogCondition_TemplateSource'.

func (*LogConditionTemplateSource_FieldTerminalPathValue) CompareWithRaw added in v1.13.6

func (*LogConditionTemplateSource_FieldTerminalPathValue) GetRawValue added in v1.13.6

func (fpv *LogConditionTemplateSource_FieldTerminalPathValue) GetRawValue() interface{}

GetRawValue returns raw value stored under selected path for 'TemplateSource' as interface{}

func (*LogConditionTemplateSource_FieldTerminalPathValue) SetTo added in v1.13.6

SetTo stores value for selected field for object TemplateSource

func (*LogConditionTemplateSource_FieldTerminalPathValue) SetToRaw added in v1.13.6

type LogCondition_FieldMask

type LogCondition_FieldMask struct {
	Paths []LogCondition_FieldPath
}

func FullLogCondition_FieldMask

func FullLogCondition_FieldMask() *LogCondition_FieldMask

func ResourceViewFieldMask

func ResourceViewFieldMask(viewName view.View, extraMask *LogCondition_FieldMask) *LogCondition_FieldMask

func (*LogCondition_FieldMask) AppendPath

func (fieldMask *LogCondition_FieldMask) AppendPath(path LogCondition_FieldPath)

func (*LogCondition_FieldMask) AppendRawPath

func (fieldMask *LogCondition_FieldMask) AppendRawPath(path gotenobject.FieldPath)

func (*LogCondition_FieldMask) FilterInputFields

func (fieldMask *LogCondition_FieldMask) FilterInputFields() *LogCondition_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*LogCondition_FieldMask) FromProtoFieldMask

func (fieldMask *LogCondition_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error

func (*LogCondition_FieldMask) GetPaths

func (fieldMask *LogCondition_FieldMask) GetPaths() []LogCondition_FieldPath

func (*LogCondition_FieldMask) GetRawPaths

func (fieldMask *LogCondition_FieldMask) GetRawPaths() []gotenobject.FieldPath

func (*LogCondition_FieldMask) IsFull

func (fieldMask *LogCondition_FieldMask) IsFull() bool

func (LogCondition_FieldMask) Marshal

func (fieldMask LogCondition_FieldMask) Marshal() ([]byte, error)

implement methods required by customType

func (LogCondition_FieldMask) MarshalJSON

func (fieldMask LogCondition_FieldMask) MarshalJSON() ([]byte, error)

func (*LogCondition_FieldMask) PathsCount

func (fieldMask *LogCondition_FieldMask) PathsCount() int

func (*LogCondition_FieldMask) Project

func (fieldMask *LogCondition_FieldMask) Project(source *LogCondition) *LogCondition

func (*LogCondition_FieldMask) ProjectRaw

func (*LogCondition_FieldMask) ProtoMessage

func (fieldMask *LogCondition_FieldMask) ProtoMessage()

func (*LogCondition_FieldMask) ProtoReflect

func (fieldMask *LogCondition_FieldMask) ProtoReflect() preflect.Message

func (*LogCondition_FieldMask) Reset

func (fieldMask *LogCondition_FieldMask) Reset()

func (*LogCondition_FieldMask) Set

func (fieldMask *LogCondition_FieldMask) Set(target, source *LogCondition)

func (*LogCondition_FieldMask) SetFromCliFlag

func (fieldMask *LogCondition_FieldMask) SetFromCliFlag(raw string) error

func (*LogCondition_FieldMask) SetRaw

func (fieldMask *LogCondition_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)

func (*LogCondition_FieldMask) Size

func (fieldMask *LogCondition_FieldMask) Size() int

func (*LogCondition_FieldMask) String

func (fieldMask *LogCondition_FieldMask) String() string

func (*LogCondition_FieldMask) Subtract

func (*LogCondition_FieldMask) SubtractRaw

func (fieldMask *LogCondition_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask

func (*LogCondition_FieldMask) ToProtoFieldMask

func (fieldMask *LogCondition_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask

ToFieldMask is used for proto conversions

func (*LogCondition_FieldMask) Unmarshal

func (fieldMask *LogCondition_FieldMask) Unmarshal(data []byte) error

func (*LogCondition_FieldMask) UnmarshalJSON

func (fieldMask *LogCondition_FieldMask) UnmarshalJSON(data []byte) error

type LogCondition_FieldPath

type LogCondition_FieldPath interface {
	gotenobject.FieldPath
	Selector() LogCondition_FieldPathSelector
	Get(source *LogCondition) []interface{}
	GetSingle(source *LogCondition) (interface{}, bool)
	ClearValue(item *LogCondition)

	// Those methods build corresponding LogCondition_FieldPathValue
	// (or array of values) and holds passed value. Panics if injected type is incorrect.
	WithIValue(value interface{}) LogCondition_FieldPathValue
	WithIArrayOfValues(values interface{}) LogCondition_FieldPathArrayOfValues
	WithIArrayItemValue(value interface{}) LogCondition_FieldPathArrayItemValue
}

FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto

func MustParseLogCondition_FieldPath

func MustParseLogCondition_FieldPath(rawField string) LogCondition_FieldPath

func ParseLogCondition_FieldPath

func ParseLogCondition_FieldPath(rawField string) (LogCondition_FieldPath, error)

type LogCondition_FieldPathArrayItemValue

type LogCondition_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	LogCondition_FieldPath
	ContainsValue(*LogCondition) bool
}

LogCondition_FieldPathArrayItemValue allows storing single item in Path-specific values for LogCondition according to their type Present only for array (repeated) types.

func MustParseLogCondition_FieldPathArrayItemValue

func MustParseLogCondition_FieldPathArrayItemValue(pathStr, valueStr string) LogCondition_FieldPathArrayItemValue

func ParseLogCondition_FieldPathArrayItemValue

func ParseLogCondition_FieldPathArrayItemValue(pathStr, valueStr string) (LogCondition_FieldPathArrayItemValue, error)

ParseLogCondition_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type LogCondition_FieldPathArrayOfValues

type LogCondition_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	LogCondition_FieldPath
}

LogCondition_FieldPathArrayOfValues allows storing slice of values for LogCondition fields according to their type

func MustParseLogCondition_FieldPathArrayOfValues

func MustParseLogCondition_FieldPathArrayOfValues(pathStr, valuesStr string) LogCondition_FieldPathArrayOfValues

func ParseLogCondition_FieldPathArrayOfValues

func ParseLogCondition_FieldPathArrayOfValues(pathStr, valuesStr string) (LogCondition_FieldPathArrayOfValues, error)

type LogCondition_FieldPathSelector

type LogCondition_FieldPathSelector int32
const (
	LogCondition_FieldPathSelectorName           LogCondition_FieldPathSelector = 0
	LogCondition_FieldPathSelectorMetadata       LogCondition_FieldPathSelector = 1
	LogCondition_FieldPathSelectorDisplayName    LogCondition_FieldPathSelector = 2
	LogCondition_FieldPathSelectorDescription    LogCondition_FieldPathSelector = 3
	LogCondition_FieldPathSelectorSupportingDocs LogCondition_FieldPathSelector = 4
	LogCondition_FieldPathSelectorSpec           LogCondition_FieldPathSelector = 5
	LogCondition_FieldPathSelectorInternal       LogCondition_FieldPathSelector = 6
	LogCondition_FieldPathSelectorTemplateSource LogCondition_FieldPathSelector = 7
)

func (LogCondition_FieldPathSelector) String

type LogCondition_FieldPathValue

type LogCondition_FieldPathValue interface {
	LogCondition_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **LogCondition)
	CompareWith(*LogCondition) (cmp int, comparable bool)
}

LogCondition_FieldPathValue allows storing values for LogCondition fields according to their type

func MustParseLogCondition_FieldPathValue

func MustParseLogCondition_FieldPathValue(pathStr, valueStr string) LogCondition_FieldPathValue

func ParseLogCondition_FieldPathValue

func ParseLogCondition_FieldPathValue(pathStr, valueStr string) (LogCondition_FieldPathValue, error)

type LogCondition_FieldSubPath

type LogCondition_FieldSubPath struct {
	// contains filtered or unexported fields
}

func (*LogCondition_FieldSubPath) AsInternalSubPath

func (*LogCondition_FieldSubPath) AsMetadataSubPath

func (fps *LogCondition_FieldSubPath) AsMetadataSubPath() (meta.Meta_FieldPath, bool)

func (*LogCondition_FieldSubPath) AsSpecSubPath

func (*LogCondition_FieldSubPath) AsTemplateSourceSubPath added in v1.13.6

func (fps *LogCondition_FieldSubPath) AsTemplateSourceSubPath() (LogConditionTemplateSource_FieldPath, bool)

func (*LogCondition_FieldSubPath) ClearValue

func (fps *LogCondition_FieldSubPath) ClearValue(item *LogCondition)

func (*LogCondition_FieldSubPath) ClearValueRaw

func (fps *LogCondition_FieldSubPath) ClearValueRaw(item proto.Message)

func (*LogCondition_FieldSubPath) Get

func (fps *LogCondition_FieldSubPath) Get(source *LogCondition) (values []interface{})

Get returns all values pointed by selected field from source LogCondition

func (*LogCondition_FieldSubPath) GetDefault

func (fps *LogCondition_FieldSubPath) GetDefault() interface{}

GetDefault returns a default value of the field type

func (*LogCondition_FieldSubPath) GetRaw

func (fps *LogCondition_FieldSubPath) GetRaw(source proto.Message) []interface{}

func (*LogCondition_FieldSubPath) GetSingle

func (fps *LogCondition_FieldSubPath) GetSingle(source *LogCondition) (interface{}, bool)

GetSingle returns value of selected field from source LogCondition

func (*LogCondition_FieldSubPath) GetSingleRaw

func (fps *LogCondition_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)

func (*LogCondition_FieldSubPath) IsLeaf

func (fps *LogCondition_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*LogCondition_FieldSubPath) JSONString

func (fps *LogCondition_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*LogCondition_FieldSubPath) Selector

func (*LogCondition_FieldSubPath) SplitIntoTerminalIPaths

func (fps *LogCondition_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath

func (*LogCondition_FieldSubPath) String

func (fps *LogCondition_FieldSubPath) String() string

String returns path representation in proto convention

func (*LogCondition_FieldSubPath) WithIArrayItemValue

func (fps *LogCondition_FieldSubPath) WithIArrayItemValue(value interface{}) LogCondition_FieldPathArrayItemValue

func (*LogCondition_FieldSubPath) WithIArrayOfValues

func (fps *LogCondition_FieldSubPath) WithIArrayOfValues(values interface{}) LogCondition_FieldPathArrayOfValues

func (*LogCondition_FieldSubPath) WithIValue

func (fps *LogCondition_FieldSubPath) WithIValue(value interface{}) LogCondition_FieldPathValue

func (*LogCondition_FieldSubPath) WithRawIArrayItemValue

func (fps *LogCondition_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue

func (*LogCondition_FieldSubPath) WithRawIArrayOfValues

func (fps *LogCondition_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues

func (*LogCondition_FieldSubPath) WithRawIValue

func (fps *LogCondition_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue

type LogCondition_FieldSubPathArrayItemValue

type LogCondition_FieldSubPathArrayItemValue struct {
	LogCondition_FieldPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldSubPathArrayItemValue) AsInternalPathItemValue

func (*LogCondition_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*LogCondition_FieldSubPathArrayItemValue) AsSpecPathItemValue

func (*LogCondition_FieldSubPathArrayItemValue) AsTemplateSourcePathItemValue added in v1.13.6

func (*LogCondition_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *LogCondition_FieldSubPathArrayItemValue) ContainsValue(source *LogCondition) bool

Contains returns a boolean indicating if value that is being held is present in given 'LogCondition'

func (*LogCondition_FieldSubPathArrayItemValue) GetRawItemValue

func (fpaivs *LogCondition_FieldSubPathArrayItemValue) GetRawItemValue() interface{}

GetRawValue returns stored array item value

type LogCondition_FieldSubPathArrayOfValues

type LogCondition_FieldSubPathArrayOfValues struct {
	LogCondition_FieldPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldSubPathArrayOfValues) AsInternalPathArrayOfValues

func (*LogCondition_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (fpsaov *LogCondition_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (meta.Meta_FieldPathArrayOfValues, bool)

func (*LogCondition_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues

func (*LogCondition_FieldSubPathArrayOfValues) AsTemplateSourcePathArrayOfValues added in v1.13.6

func (*LogCondition_FieldSubPathArrayOfValues) GetRawValues

func (fpsaov *LogCondition_FieldSubPathArrayOfValues) GetRawValues() []interface{}

type LogCondition_FieldSubPathValue

type LogCondition_FieldSubPathValue struct {
	LogCondition_FieldPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldSubPathValue) AsInternalPathValue

func (*LogCondition_FieldSubPathValue) AsMetadataPathValue

func (fpvs *LogCondition_FieldSubPathValue) AsMetadataPathValue() (meta.Meta_FieldPathValue, bool)

func (*LogCondition_FieldSubPathValue) AsSpecPathValue

func (*LogCondition_FieldSubPathValue) AsTemplateSourcePathValue added in v1.13.6

func (*LogCondition_FieldSubPathValue) CompareWith

func (fpvs *LogCondition_FieldSubPathValue) CompareWith(source *LogCondition) (int, bool)

func (*LogCondition_FieldSubPathValue) CompareWithRaw

func (fpvs *LogCondition_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)

func (*LogCondition_FieldSubPathValue) GetRawValue

func (fpvs *LogCondition_FieldSubPathValue) GetRawValue() interface{}

func (*LogCondition_FieldSubPathValue) SetTo

func (fpvs *LogCondition_FieldSubPathValue) SetTo(target **LogCondition)

func (*LogCondition_FieldSubPathValue) SetToRaw

func (fpvs *LogCondition_FieldSubPathValue) SetToRaw(target proto.Message)

type LogCondition_FieldTerminalPath

type LogCondition_FieldTerminalPath struct {
	// contains filtered or unexported fields
}

func (*LogCondition_FieldTerminalPath) ClearValue

func (fp *LogCondition_FieldTerminalPath) ClearValue(item *LogCondition)

func (*LogCondition_FieldTerminalPath) ClearValueRaw

func (fp *LogCondition_FieldTerminalPath) ClearValueRaw(item proto.Message)

func (*LogCondition_FieldTerminalPath) Get

func (fp *LogCondition_FieldTerminalPath) Get(source *LogCondition) (values []interface{})

Get returns all values pointed by specific field from source LogCondition

func (*LogCondition_FieldTerminalPath) GetDefault

func (fp *LogCondition_FieldTerminalPath) GetDefault() interface{}

GetDefault returns a default value of the field type

func (*LogCondition_FieldTerminalPath) GetRaw

func (fp *LogCondition_FieldTerminalPath) GetRaw(source proto.Message) []interface{}

func (*LogCondition_FieldTerminalPath) GetSingle

func (fp *LogCondition_FieldTerminalPath) GetSingle(source *LogCondition) (interface{}, bool)

GetSingle returns value pointed by specific field of from source LogCondition

func (*LogCondition_FieldTerminalPath) GetSingleRaw

func (fp *LogCondition_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)

func (*LogCondition_FieldTerminalPath) IsLeaf

func (fp *LogCondition_FieldTerminalPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*LogCondition_FieldTerminalPath) JSONString

func (fp *LogCondition_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*LogCondition_FieldTerminalPath) Selector

func (*LogCondition_FieldTerminalPath) SplitIntoTerminalIPaths

func (fp *LogCondition_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath

func (*LogCondition_FieldTerminalPath) String

String returns path representation in proto convention

func (*LogCondition_FieldTerminalPath) WithIArrayItemValue

func (fp *LogCondition_FieldTerminalPath) WithIArrayItemValue(value interface{}) LogCondition_FieldPathArrayItemValue

func (*LogCondition_FieldTerminalPath) WithIArrayOfValues

func (fp *LogCondition_FieldTerminalPath) WithIArrayOfValues(values interface{}) LogCondition_FieldPathArrayOfValues

func (*LogCondition_FieldTerminalPath) WithIValue

func (fp *LogCondition_FieldTerminalPath) WithIValue(value interface{}) LogCondition_FieldPathValue

func (*LogCondition_FieldTerminalPath) WithRawIArrayItemValue

func (fp *LogCondition_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue

func (*LogCondition_FieldTerminalPath) WithRawIArrayOfValues

func (fp *LogCondition_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues

func (*LogCondition_FieldTerminalPath) WithRawIValue

func (fp *LogCondition_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue

type LogCondition_FieldTerminalPathArrayItemValue

type LogCondition_FieldTerminalPathArrayItemValue struct {
	LogCondition_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldTerminalPathArrayItemValue) AsSupportingDocsItemValue

func (fpaiv *LogCondition_FieldTerminalPathArrayItemValue) AsSupportingDocsItemValue() (*document.Reference, bool)

func (*LogCondition_FieldTerminalPathArrayItemValue) ContainsValue

func (fpaiv *LogCondition_FieldTerminalPathArrayItemValue) ContainsValue(source *LogCondition) bool

Contains returns a boolean indicating if value that is being held is present in given 'LogCondition'

func (*LogCondition_FieldTerminalPathArrayItemValue) GetRawItemValue

func (fpaiv *LogCondition_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}

GetRawValue returns stored element value for array in object LogCondition as interface{}

func (*LogCondition_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *LogCondition_FieldTerminalPathArrayItemValue) GetSingle(source *LogCondition) (interface{}, bool)

func (*LogCondition_FieldTerminalPathArrayItemValue) GetSingleRaw

func (fpaiv *LogCondition_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)

type LogCondition_FieldTerminalPathArrayOfValues

type LogCondition_FieldTerminalPathArrayOfValues struct {
	LogCondition_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldTerminalPathArrayOfValues) AsDescriptionArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsDescriptionArrayOfValues() ([]string, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues() ([]string, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsInternalArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsInternalArrayOfValues() ([]*LogCondition_Internal, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*meta.Meta, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]*Name, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues() ([]*rcommon.LogCndSpec, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsSupportingDocsArrayOfValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsSupportingDocsArrayOfValues() ([][]*document.Reference, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) AsTemplateSourceArrayOfValues added in v1.13.6

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) AsTemplateSourceArrayOfValues() ([]*LogCondition_TemplateSource, bool)

func (*LogCondition_FieldTerminalPathArrayOfValues) GetRawValues

func (fpaov *LogCondition_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})

type LogCondition_FieldTerminalPathValue

type LogCondition_FieldTerminalPathValue struct {
	LogCondition_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*LogCondition_FieldTerminalPathValue) AsDescriptionValue

func (fpv *LogCondition_FieldTerminalPathValue) AsDescriptionValue() (string, bool)

func (*LogCondition_FieldTerminalPathValue) AsDisplayNameValue

func (fpv *LogCondition_FieldTerminalPathValue) AsDisplayNameValue() (string, bool)

func (*LogCondition_FieldTerminalPathValue) AsInternalValue

func (*LogCondition_FieldTerminalPathValue) AsMetadataValue

func (fpv *LogCondition_FieldTerminalPathValue) AsMetadataValue() (*meta.Meta, bool)

func (*LogCondition_FieldTerminalPathValue) AsNameValue

func (fpv *LogCondition_FieldTerminalPathValue) AsNameValue() (*Name, bool)

func (*LogCondition_FieldTerminalPathValue) AsSpecValue

func (*LogCondition_FieldTerminalPathValue) AsSupportingDocsValue

func (fpv *LogCondition_FieldTerminalPathValue) AsSupportingDocsValue() ([]*document.Reference, bool)

func (*LogCondition_FieldTerminalPathValue) AsTemplateSourceValue added in v1.13.6

func (fpv *LogCondition_FieldTerminalPathValue) AsTemplateSourceValue() (*LogCondition_TemplateSource, bool)

func (*LogCondition_FieldTerminalPathValue) CompareWith

func (fpv *LogCondition_FieldTerminalPathValue) CompareWith(source *LogCondition) (int, bool)

CompareWith compares value in the 'LogCondition_FieldTerminalPathValue' with the value under path in 'LogCondition'.

func (*LogCondition_FieldTerminalPathValue) CompareWithRaw

func (fpv *LogCondition_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)

func (*LogCondition_FieldTerminalPathValue) GetRawValue

func (fpv *LogCondition_FieldTerminalPathValue) GetRawValue() interface{}

GetRawValue returns raw value stored under selected path for 'LogCondition' as interface{}

func (*LogCondition_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object LogCondition

func (*LogCondition_FieldTerminalPathValue) SetToRaw

func (fpv *LogCondition_FieldTerminalPathValue) SetToRaw(target proto.Message)

type LogCondition_Internal

type LogCondition_Internal struct {

	// Informs if log condition is processed at the backend or on edge.
	AlertingLocation rcommon.PolicySpec_ProcessingLocation `` /* 161-byte string literal not displayed */
	// contains filtered or unexported fields
}

Internal data.

func (*LogCondition_Internal) Clone

func (*LogCondition_Internal) CloneRaw

func (*LogCondition_Internal) Descriptor

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

Deprecated, Use LogCondition_Internal.ProtoReflect.Descriptor instead.

func (*LogCondition_Internal) GetAlertingLocation

func (*LogCondition_Internal) GotenMessage

func (*LogCondition_Internal) GotenMessage()

func (*LogCondition_Internal) GotenObjectExt

func (o *LogCondition_Internal) GotenObjectExt()

func (*LogCondition_Internal) GotenValidate

func (obj *LogCondition_Internal) GotenValidate() error

func (*LogCondition_Internal) MakeDiffFieldMask

func (*LogCondition_Internal) MakeFullFieldMask

func (*LogCondition_Internal) MakeRawDiffFieldMask

func (o *LogCondition_Internal) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask

func (*LogCondition_Internal) MakeRawFullFieldMask

func (o *LogCondition_Internal) MakeRawFullFieldMask() gotenobject.FieldMask

func (*LogCondition_Internal) Marshal

func (m *LogCondition_Internal) Marshal() ([]byte, error)

func (*LogCondition_Internal) MarshalJSON

func (m *LogCondition_Internal) MarshalJSON() ([]byte, error)

func (*LogCondition_Internal) Merge

func (o *LogCondition_Internal) Merge(source *LogCondition_Internal)

func (*LogCondition_Internal) MergeRaw

func (o *LogCondition_Internal) MergeRaw(source gotenobject.GotenObjectExt)

func (*LogCondition_Internal) ProtoMessage

func (*LogCondition_Internal) ProtoMessage()

func (*LogCondition_Internal) ProtoReflect

func (m *LogCondition_Internal) ProtoReflect() preflect.Message

func (*LogCondition_Internal) Reset

func (m *LogCondition_Internal) Reset()

func (*LogCondition_Internal) SetAlertingLocation

func (m *LogCondition_Internal) SetAlertingLocation(fv rcommon.PolicySpec_ProcessingLocation)

func (*LogCondition_Internal) String

func (m *LogCondition_Internal) String() string

func (*LogCondition_Internal) Unmarshal

func (m *LogCondition_Internal) Unmarshal(b []byte) error

func (*LogCondition_Internal) UnmarshalJSON

func (m *LogCondition_Internal) UnmarshalJSON(data []byte) error

type LogCondition_InternalPathSelectorAlertingLocation

type LogCondition_InternalPathSelectorAlertingLocation struct{}

func (LogCondition_InternalPathSelectorAlertingLocation) FieldPath

type LogCondition_Internal_FieldMask

type LogCondition_Internal_FieldMask struct {
	Paths []LogConditionInternal_FieldPath
}

func FullLogCondition_Internal_FieldMask

func FullLogCondition_Internal_FieldMask() *LogCondition_Internal_FieldMask

func (*LogCondition_Internal_FieldMask) AppendPath

func (*LogCondition_Internal_FieldMask) AppendRawPath

func (fieldMask *LogCondition_Internal_FieldMask) AppendRawPath(path gotenobject.FieldPath)

func (*LogCondition_Internal_FieldMask) FilterInputFields

func (fieldMask *LogCondition_Internal_FieldMask) FilterInputFields() *LogCondition_Internal_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*LogCondition_Internal_FieldMask) FromProtoFieldMask

func (fieldMask *LogCondition_Internal_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error

func (*LogCondition_Internal_FieldMask) GetPaths

func (*LogCondition_Internal_FieldMask) GetRawPaths

func (fieldMask *LogCondition_Internal_FieldMask) GetRawPaths() []gotenobject.FieldPath

func (*LogCondition_Internal_FieldMask) IsFull

func (fieldMask *LogCondition_Internal_FieldMask) IsFull() bool

func (LogCondition_Internal_FieldMask) Marshal

func (fieldMask LogCondition_Internal_FieldMask) Marshal() ([]byte, error)

implement methods required by customType

func (LogCondition_Internal_FieldMask) MarshalJSON

func (fieldMask LogCondition_Internal_FieldMask) MarshalJSON() ([]byte, error)

func (*LogCondition_Internal_FieldMask) PathsCount

func (fieldMask *LogCondition_Internal_FieldMask) PathsCount() int

func (*LogCondition_Internal_FieldMask) Project

func (*LogCondition_Internal_FieldMask) ProjectRaw

func (*LogCondition_Internal_FieldMask) ProtoMessage

func (fieldMask *LogCondition_Internal_FieldMask) ProtoMessage()

func (*LogCondition_Internal_FieldMask) ProtoReflect

func (fieldMask *LogCondition_Internal_FieldMask) ProtoReflect() preflect.Message

func (*LogCondition_Internal_FieldMask) Reset

func (fieldMask *LogCondition_Internal_FieldMask) Reset()

func (*LogCondition_Internal_FieldMask) Set

func (fieldMask *LogCondition_Internal_FieldMask) Set(target, source *LogCondition_Internal)

func (*LogCondition_Internal_FieldMask) SetFromCliFlag

func (fieldMask *LogCondition_Internal_FieldMask) SetFromCliFlag(raw string) error

func (*LogCondition_Internal_FieldMask) SetRaw

func (fieldMask *LogCondition_Internal_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)

func (*LogCondition_Internal_FieldMask) Size

func (fieldMask *LogCondition_Internal_FieldMask) Size() int

func (*LogCondition_Internal_FieldMask) String

func (fieldMask *LogCondition_Internal_FieldMask) String() string

func (*LogCondition_Internal_FieldMask) Subtract

func (*LogCondition_Internal_FieldMask) SubtractRaw

func (*LogCondition_Internal_FieldMask) ToProtoFieldMask

func (fieldMask *LogCondition_Internal_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask

ToFieldMask is used for proto conversions

func (*LogCondition_Internal_FieldMask) Unmarshal

func (fieldMask *LogCondition_Internal_FieldMask) Unmarshal(data []byte) error

func (*LogCondition_Internal_FieldMask) UnmarshalJSON

func (fieldMask *LogCondition_Internal_FieldMask) UnmarshalJSON(data []byte) error

type LogCondition_TemplateSource added in v1.13.6

type LogCondition_TemplateSource struct {

	// Reference to template
	Template *log_condition_template.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=template,proto3" json:"template,omitempty"`
	// List of modified fields compared to the template.
	// It is a mask of Spec object.
	UpdatedFields *fieldmaskpb.FieldMask `protobuf:"bytes,2,opt,name=updated_fields,json=updatedFields,proto3" json:"updated_fields,omitempty"`
	// contains filtered or unexported fields
}

TemplateSource describes where condition is coming from originally.

func (*LogCondition_TemplateSource) Clone added in v1.13.6

func (*LogCondition_TemplateSource) CloneRaw added in v1.13.6

func (*LogCondition_TemplateSource) Descriptor added in v1.13.6

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

Deprecated, Use LogCondition_TemplateSource.ProtoReflect.Descriptor instead.

func (*LogCondition_TemplateSource) GetTemplate added in v1.13.6

func (*LogCondition_TemplateSource) GetUpdatedFields added in v1.13.6

func (m *LogCondition_TemplateSource) GetUpdatedFields() *fieldmaskpb.FieldMask

func (*LogCondition_TemplateSource) GotenMessage added in v1.13.6

func (*LogCondition_TemplateSource) GotenMessage()

func (*LogCondition_TemplateSource) GotenObjectExt added in v1.13.6

func (o *LogCondition_TemplateSource) GotenObjectExt()

func (*LogCondition_TemplateSource) GotenValidate added in v1.13.6

func (obj *LogCondition_TemplateSource) GotenValidate() error

func (*LogCondition_TemplateSource) MakeDiffFieldMask added in v1.13.6

func (*LogCondition_TemplateSource) MakeFullFieldMask added in v1.13.6

func (*LogCondition_TemplateSource) MakeRawDiffFieldMask added in v1.13.6

func (*LogCondition_TemplateSource) MakeRawFullFieldMask added in v1.13.6

func (o *LogCondition_TemplateSource) MakeRawFullFieldMask() gotenobject.FieldMask

func (*LogCondition_TemplateSource) Marshal added in v1.13.6

func (m *LogCondition_TemplateSource) Marshal() ([]byte, error)

func (*LogCondition_TemplateSource) MarshalJSON added in v1.13.6

func (m *LogCondition_TemplateSource) MarshalJSON() ([]byte, error)

func (*LogCondition_TemplateSource) Merge added in v1.13.6

func (*LogCondition_TemplateSource) MergeRaw added in v1.13.6

func (*LogCondition_TemplateSource) ProtoMessage added in v1.13.6

func (*LogCondition_TemplateSource) ProtoMessage()

func (*LogCondition_TemplateSource) ProtoReflect added in v1.13.6

func (m *LogCondition_TemplateSource) ProtoReflect() preflect.Message

func (*LogCondition_TemplateSource) Reset added in v1.13.6

func (m *LogCondition_TemplateSource) Reset()

func (*LogCondition_TemplateSource) SetTemplate added in v1.13.6

func (*LogCondition_TemplateSource) SetUpdatedFields added in v1.13.6

func (m *LogCondition_TemplateSource) SetUpdatedFields(fv *fieldmaskpb.FieldMask)

func (*LogCondition_TemplateSource) String added in v1.13.6

func (m *LogCondition_TemplateSource) String() string

func (*LogCondition_TemplateSource) Unmarshal added in v1.13.6

func (m *LogCondition_TemplateSource) Unmarshal(b []byte) error

func (*LogCondition_TemplateSource) UnmarshalJSON added in v1.13.6

func (m *LogCondition_TemplateSource) UnmarshalJSON(data []byte) error

type LogCondition_TemplateSourcePathSelectorTemplate added in v1.13.6

type LogCondition_TemplateSourcePathSelectorTemplate struct{}

func (LogCondition_TemplateSourcePathSelectorTemplate) FieldPath added in v1.13.6

func (LogCondition_TemplateSourcePathSelectorTemplate) WithArrayOfValues added in v1.13.6

func (LogCondition_TemplateSourcePathSelectorTemplate) WithValue added in v1.13.6

type LogCondition_TemplateSourcePathSelectorUpdatedFields added in v1.13.6

type LogCondition_TemplateSourcePathSelectorUpdatedFields struct{}

func (LogCondition_TemplateSourcePathSelectorUpdatedFields) FieldPath added in v1.13.6

func (LogCondition_TemplateSourcePathSelectorUpdatedFields) WithArrayOfValues added in v1.13.6

func (LogCondition_TemplateSourcePathSelectorUpdatedFields) WithValue added in v1.13.6

type LogCondition_TemplateSource_FieldMask added in v1.13.6

type LogCondition_TemplateSource_FieldMask struct {
	Paths []LogConditionTemplateSource_FieldPath
}

func FullLogCondition_TemplateSource_FieldMask added in v1.13.6

func FullLogCondition_TemplateSource_FieldMask() *LogCondition_TemplateSource_FieldMask

func (*LogCondition_TemplateSource_FieldMask) AppendPath added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) AppendRawPath added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) AppendRawPath(path gotenobject.FieldPath)

func (*LogCondition_TemplateSource_FieldMask) FilterInputFields added in v1.13.6

FilterInputFields generates copy of field paths with output_only field paths removed

func (*LogCondition_TemplateSource_FieldMask) FromProtoFieldMask added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error

func (*LogCondition_TemplateSource_FieldMask) GetPaths added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) GetRawPaths added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) GetRawPaths() []gotenobject.FieldPath

func (*LogCondition_TemplateSource_FieldMask) IsFull added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) IsFull() bool

func (LogCondition_TemplateSource_FieldMask) Marshal added in v1.13.6

func (fieldMask LogCondition_TemplateSource_FieldMask) Marshal() ([]byte, error)

implement methods required by customType

func (LogCondition_TemplateSource_FieldMask) MarshalJSON added in v1.13.6

func (fieldMask LogCondition_TemplateSource_FieldMask) MarshalJSON() ([]byte, error)

func (*LogCondition_TemplateSource_FieldMask) PathsCount added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) PathsCount() int

func (*LogCondition_TemplateSource_FieldMask) Project added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) ProjectRaw added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) ProtoMessage added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) ProtoMessage()

func (*LogCondition_TemplateSource_FieldMask) ProtoReflect added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) ProtoReflect() preflect.Message

func (*LogCondition_TemplateSource_FieldMask) Reset added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) Reset()

func (*LogCondition_TemplateSource_FieldMask) Set added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) SetFromCliFlag added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) SetFromCliFlag(raw string) error

func (*LogCondition_TemplateSource_FieldMask) SetRaw added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)

func (*LogCondition_TemplateSource_FieldMask) Size added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) Size() int

func (*LogCondition_TemplateSource_FieldMask) String added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) String() string

func (*LogCondition_TemplateSource_FieldMask) Subtract added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) SubtractRaw added in v1.13.6

func (*LogCondition_TemplateSource_FieldMask) ToProtoFieldMask added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask

ToFieldMask is used for proto conversions

func (*LogCondition_TemplateSource_FieldMask) Unmarshal added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) Unmarshal(data []byte) error

func (*LogCondition_TemplateSource_FieldMask) UnmarshalJSON added in v1.13.6

func (fieldMask *LogCondition_TemplateSource_FieldMask) UnmarshalJSON(data []byte) error

type Name

type Name struct {
	ParentName
	LogConditionId string `firestore:"logConditionId"`
}

func MustParseName

func MustParseName(name string) *Name

func ParseName

func ParseName(name string) (*Name, error)

func ParseNameOrId

func ParseNameOrId(nameOrId string) (*Name, error)

func (*Name) AsRawReference

func (name *Name) AsRawReference() gotenresource.Reference

func (*Name) AsReference

func (name *Name) AsReference() *Reference

func (*Name) FullyQualifiedName

func (name *Name) FullyQualifiedName() (string, error)

func (*Name) GetIParentName

func (name *Name) GetIParentName() gotenresource.Name

func (*Name) GetIUnderlyingParentName

func (name *Name) GetIUnderlyingParentName() gotenresource.Name

func (*Name) GetIdParts

func (name *Name) GetIdParts() map[string]string

func (*Name) GetPattern

func (name *Name) GetPattern() gotenresource.NamePattern

func (*Name) GetPolicyName

func (name *Name) GetPolicyName() *policy.Name

func (*Name) GetResourceDescriptor

func (name *Name) GetResourceDescriptor() gotenresource.Descriptor

func (*Name) GetSegments

func (name *Name) GetSegments() gotenresource.NameSegments

func (*Name) GotenEqual

func (name *Name) GotenEqual(other interface{}) bool

GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Matches

func (name *Name) Matches(other interface{}) bool

Matches is same as GotenEqual, but also will accept "other" if name is wildcard.

func (*Name) ParseProtoString

func (name *Name) ParseProtoString(data string) error

func (*Name) ProtoString

func (name *Name) ProtoString() (string, error)

func (*Name) SetFromCliFlag

func (name *Name) SetFromCliFlag(raw string) error

implement CustomTypeCliValue method

func (*Name) SetFromSegments

func (name *Name) SetFromSegments(segments gotenresource.NameSegments) error

func (*Name) String

func (name *Name) String() string

type NameBuilder

type NameBuilder struct {
	// contains filtered or unexported fields
}

func NewNameBuilder

func NewNameBuilder() *NameBuilder

func (*NameBuilder) Name

func (b *NameBuilder) Name() *Name

func (*NameBuilder) Parent

func (b *NameBuilder) Parent() *ParentName

func (*NameBuilder) ParentReference

func (b *NameBuilder) ParentReference() *ParentReference

func (*NameBuilder) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

func (b *NameBuilder) SetId(id string) *NameBuilder

func (*NameBuilder) SetPolicy

func (b *NameBuilder) SetPolicy(parent *policy.Name) *NameBuilder

func (*NameBuilder) SetPolicyId

func (b *NameBuilder) SetPolicyId(id string) *NameBuilder

func (*NameBuilder) SetProjectId

func (b *NameBuilder) SetProjectId(id string) *NameBuilder

type NamePattern

type NamePattern struct {
	Pattern gotenresource.NamePattern `firestore:"pattern"`
}

type OrderBy

type OrderBy struct {
	OrderByFields []OrderByField
}

OrderBy Is string encoded Custom Protobuf type, which handles "order_by" field order_by consists of coma delimited OrderBy specs, which denote ordering priority, e.g. "state.value asc, state.capacity desc"

func (*OrderBy) Compare

func (orderBy *OrderBy) Compare(left, right *LogCondition) int

func (*OrderBy) CompareRaw

func (orderBy *OrderBy) CompareRaw(left, right gotenresource.Resource) int

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *LogCondition_FieldMask

func (*OrderBy) GetOrderByFields

func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField

func (*OrderBy) GetRawFieldMask

func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask

func (*OrderBy) InsertSorted

func (orderBy *OrderBy) InsertSorted(sorted LogConditionList, elem *LogCondition) (LogConditionList, int)

func (*OrderBy) InsertSortedRaw

func (orderBy *OrderBy) InsertSortedRaw(sorted gotenresource.ResourceList, elem gotenresource.Resource) (gotenresource.ResourceList, int)

func (*OrderBy) ParseProtoString

func (orderBy *OrderBy) ParseProtoString(data string) error

func (*OrderBy) ProtoString

func (orderBy *OrderBy) ProtoString() (string, error)

func (*OrderBy) SetFromCliFlag

func (orderBy *OrderBy) SetFromCliFlag(raw string) error

func (*OrderBy) Sort

func (orderBy *OrderBy) Sort(results LogConditionList)

func (*OrderBy) SortRaw

func (orderBy *OrderBy) SortRaw(results gotenresource.ResourceList)

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

type OrderByField struct {
	FieldPath LogCondition_FieldPath
	Direction gotenresource.OrderDirection
}

OrderByField is single item in order_by specification it's string format is composed of 2 white-space separated values: - fieldPath and direction, e.g. "state.capacity desc". if direction is not provided, it defaults to "asc" (ascending)

func (*OrderByField) CompareWithDirection

func (orderByFld *OrderByField) CompareWithDirection(left, right *LogCondition) int

func (*OrderByField) GetDirection

func (orderByFld *OrderByField) GetDirection() gotenresource.OrderDirection

func (*OrderByField) GetFieldPath

func (orderByFld *OrderByField) GetFieldPath() gotenobject.FieldPath

type PagerCursor

type PagerCursor struct {
	CursorValue   gotenresource.CursorValue
	Inclusion     gotenresource.CursorInclusion
	PageDirection gotenresource.PageDirection
}

PagerCursor is protobuf Custom Type, which (de)serializes "string page_token" for API List processing Database adapter implementation must use this cursor when Paginating list views Token is composed of 3 values (dot separated in serialized form) - CursorValue: Backend-specific value of the cursor. - PageDirection: either l (left) or r (right), which hints DB Adapter whether Snapshot marks Start or End of result - Inclusion: either i (inclusive) or e (exclusive) - Whether cursor marks exact point or right before/after (depending on direction)

func (*PagerCursor) GetInclusion

func (cursor *PagerCursor) GetInclusion() gotenresource.CursorInclusion

func (*PagerCursor) GetPageDirection

func (cursor *PagerCursor) GetPageDirection() gotenresource.PageDirection

func (*PagerCursor) GetValue

func (cursor *PagerCursor) GetValue() gotenresource.CursorValue

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

func (cursor *PagerCursor) ParseProtoString(data string) (err error)

func (*PagerCursor) ProtoString

func (cursor *PagerCursor) ProtoString() (string, error)

func (*PagerCursor) SetCursorValue

func (cursor *PagerCursor) SetCursorValue(value gotenresource.CursorValue)

func (*PagerCursor) SetFromCliFlag

func (cursor *PagerCursor) SetFromCliFlag(raw string) error

func (*PagerCursor) SetInclusion

func (cursor *PagerCursor) SetInclusion(inclusion gotenresource.CursorInclusion)

func (*PagerCursor) SetPageDirection

func (cursor *PagerCursor) SetPageDirection(direction gotenresource.PageDirection)

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

type PagerQuery struct {
	OrderBy     *OrderBy
	Cursor      *PagerCursor
	Limit       int
	PeekForward bool
}

PagerQuery is main struct used for assisting server and database to perform Pagination

func MakePagerQuery

func MakePagerQuery(orderBy *OrderBy, cursor *PagerCursor, pageSize int32, peekForward bool) *PagerQuery

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

func (p *PagerQuery) GetCursor() gotenresource.Cursor

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

func (p *PagerQuery) GetOrderBy() gotenresource.OrderBy

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

func (p *PagerQuery) GetResourceDescriptor() gotenresource.Descriptor

func (*PagerQuery) PageDirection

func (p *PagerQuery) PageDirection() gotenresource.PageDirection

func (*PagerQuery) SetCursor

func (p *PagerQuery) SetCursor(cursor gotenresource.Cursor)

func (*PagerQuery) SetLimit

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy

func (p *PagerQuery) SetOrderBy(orderBy gotenresource.OrderBy)

func (*PagerQuery) SetPageDirection

func (p *PagerQuery) SetPageDirection(direction gotenresource.PageDirection)

func (*PagerQuery) SetPeekForward

func (p *PagerQuery) SetPeekForward(peekForward bool)

type ParentName

type ParentName struct {
	NamePattern
	ProjectId string `firestore:"projectId"`
	PolicyId  string `firestore:"policyId"`
}

func MustParseParentName

func MustParseParentName(name string) *ParentName

func ParseParentName

func ParseParentName(name string) (*ParentName, error)

func (*ParentName) AsRawReference

func (name *ParentName) AsRawReference() gotenresource.Reference

func (*ParentName) AsReference

func (name *ParentName) AsReference() *ParentReference

func (*ParentName) DescendsFrom

func (name *ParentName) DescendsFrom(ancestor string) bool

func (*ParentName) FullyQualifiedName

func (name *ParentName) FullyQualifiedName() (string, error)

func (*ParentName) GetIParentName

func (name *ParentName) GetIParentName() gotenresource.Name

func (*ParentName) GetIUnderlyingParentName

func (name *ParentName) GetIUnderlyingParentName() gotenresource.Name

func (*ParentName) GetIdParts

func (name *ParentName) GetIdParts() map[string]string

func (*ParentName) GetPattern

func (name *ParentName) GetPattern() gotenresource.NamePattern

func (*ParentName) GetPolicyName

func (name *ParentName) GetPolicyName() *policy.Name

func (*ParentName) GetResourceDescriptor

func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor

func (*ParentName) GetSegments

func (name *ParentName) GetSegments() gotenresource.NameSegments

func (*ParentName) GotenEqual

func (name *ParentName) GotenEqual(other interface{}) bool

GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)

func (*ParentName) IsFullyQualified

func (name *ParentName) IsFullyQualified() bool

func (*ParentName) IsSpecified

func (name *ParentName) IsSpecified() bool

func (*ParentName) Matches

func (name *ParentName) Matches(other interface{}) bool

Matches is same as GotenEqual, but also will accept "other" if name is wildcard.

func (*ParentName) ParseProtoString

func (name *ParentName) ParseProtoString(data string) error

func (*ParentName) ProtoString

func (name *ParentName) ProtoString() (string, error)

func (*ParentName) SetFromCliFlag

func (name *ParentName) SetFromCliFlag(raw string) error

implement CustomTypeCliValue method

func (*ParentName) SetFromSegments

func (name *ParentName) SetFromSegments(segments gotenresource.NameSegments) error

func (*ParentName) String

func (name *ParentName) String() string

type ParentReference

type ParentReference struct {
	ParentName
	// contains filtered or unexported fields
}

func MakeParentReference

func MakeParentReference(name *ParentName) (*ParentReference, error)

func MustParseParentReference

func MustParseParentReference(name string) *ParentReference

func ParseParentReference

func ParseParentReference(name string) (*ParentReference, error)

func (*ParentReference) ClearCached

func (ref *ParentReference) ClearCached()

func (*ParentReference) GetIParentName

func (ref *ParentReference) GetIParentName() gotenresource.Name

func (*ParentReference) GetIUnderlyingParentName

func (ref *ParentReference) GetIUnderlyingParentName() gotenresource.Name

func (*ParentReference) GetIdParts

func (ref *ParentReference) GetIdParts() map[string]string

func (*ParentReference) GetPattern

func (ref *ParentReference) GetPattern() gotenresource.NamePattern

func (*ParentReference) GetPolicy

func (ref *ParentReference) GetPolicy() *policy.Policy

func (*ParentReference) GetPolicyReference

func (ref *ParentReference) GetPolicyReference() *policy.Reference

func (*ParentReference) GetRawResource

func (ref *ParentReference) GetRawResource() gotenresource.Resource

func (*ParentReference) GetResourceDescriptor

func (ref *ParentReference) GetResourceDescriptor() gotenresource.Descriptor

func (*ParentReference) GetSegments

func (ref *ParentReference) GetSegments() gotenresource.NameSegments

func (*ParentReference) GetUnderlyingReference

func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference

func (*ParentReference) GotenEqual

func (ref *ParentReference) GotenEqual(other interface{}) bool

GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)

func (*ParentReference) IsFullyQualified

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

func (*ParentReference) Matches

func (name *ParentReference) Matches(other interface{}) bool

Matches is same as GotenEqual, but also will accept "other" if name is wildcard.

func (*ParentReference) ParseProtoString

func (ref *ParentReference) ParseProtoString(data string) error

func (*ParentReference) ProtoString

func (ref *ParentReference) ProtoString() (string, error)

func (*ParentReference) ResolveRaw

func (ref *ParentReference) ResolveRaw(res gotenresource.Resource) error

func (*ParentReference) Resolved

func (ref *ParentReference) Resolved() bool

func (*ParentReference) SetFromCliFlag

func (ref *ParentReference) SetFromCliFlag(raw string) error

implement CustomTypeCliValue method

func (*ParentReference) String

func (ref *ParentReference) String() string

type QueryResultChange

type QueryResultChange struct {
	Changes        []*LogConditionChange
	PrevPageCursor *PagerCursor
	NextPageCursor *PagerCursor
	ResumeToken    string
	IsCurrent      bool
	IsHardReset    bool
	IsSoftReset    bool
	SnapshotSize   int64
}

func (*QueryResultChange) GetIsCurrent

func (qr *QueryResultChange) GetIsCurrent() bool

func (*QueryResultChange) GetIsHardReset

func (qr *QueryResultChange) GetIsHardReset() bool

func (*QueryResultChange) GetIsSoftReset

func (qr *QueryResultChange) GetIsSoftReset() bool

func (*QueryResultChange) GetNextPageCursor

func (qr *QueryResultChange) GetNextPageCursor() gotenresource.Cursor

func (*QueryResultChange) GetPrevPageCursor

func (qr *QueryResultChange) GetPrevPageCursor() gotenresource.Cursor

func (*QueryResultChange) GetResults

func (*QueryResultChange) GetResumeToken

func (qr *QueryResultChange) GetResumeToken() string

func (*QueryResultChange) GetSnapshotSize

func (qr *QueryResultChange) GetSnapshotSize() int64

func (*QueryResultChange) SetCursors

func (qr *QueryResultChange) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)

func (*QueryResultChange) SetIsCurrent

func (qr *QueryResultChange) SetIsCurrent()

func (*QueryResultChange) SetIsHardReset

func (qr *QueryResultChange) SetIsHardReset()

func (*QueryResultChange) SetIsSoftReset

func (qr *QueryResultChange) SetIsSoftReset()

func (*QueryResultChange) SetResults

func (qr *QueryResultChange) SetResults(results gotenresource.ResourceChangeList)

func (*QueryResultChange) SetResumeToken

func (qr *QueryResultChange) SetResumeToken(token string)

func (*QueryResultChange) SetSnapshotSize

func (qr *QueryResultChange) SetSnapshotSize(size int64)

type QueryResultSnapshot

type QueryResultSnapshot struct {
	LogConditions     []*LogCondition
	PrevPageCursor    *PagerCursor
	NextPageCursor    *PagerCursor
	TotalResultsCount int32
	CurrentOffset     int32
}

func (*QueryResultSnapshot) GetNextPageCursor

func (qr *QueryResultSnapshot) GetNextPageCursor() gotenresource.Cursor

func (*QueryResultSnapshot) GetPagingInfo

func (qr *QueryResultSnapshot) GetPagingInfo() (totalCount, offset int32)

func (*QueryResultSnapshot) GetPrevPageCursor

func (qr *QueryResultSnapshot) GetPrevPageCursor() gotenresource.Cursor

func (*QueryResultSnapshot) GetResults

func (*QueryResultSnapshot) SetCursors

func (qr *QueryResultSnapshot) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)

func (*QueryResultSnapshot) SetPagingInfo

func (qr *QueryResultSnapshot) SetPagingInfo(totalCount, offset int32)

func (*QueryResultSnapshot) SetResults

func (qr *QueryResultSnapshot) SetResults(results gotenresource.ResourceList)

type Reference

type Reference struct {
	Name
	// contains filtered or unexported fields
}

func MakeReference

func MakeReference(name *Name, logCondition *LogCondition) (*Reference, error)

func MustParseReference

func MustParseReference(name string) *Reference

func ParseReference

func ParseReference(name string) (*Reference, error)

func (*Reference) ClearCached

func (ref *Reference) ClearCached()

func (*Reference) FullyQualifiedName

func (ref *Reference) FullyQualifiedName() (string, error)

func (*Reference) GetIParentName

func (ref *Reference) GetIParentName() gotenresource.Name

func (*Reference) GetIUnderlyingParentName

func (ref *Reference) GetIUnderlyingParentName() gotenresource.Name

func (*Reference) GetIdParts

func (ref *Reference) GetIdParts() map[string]string

func (*Reference) GetLogCondition

func (ref *Reference) GetLogCondition() *LogCondition

func (*Reference) GetPattern

func (ref *Reference) GetPattern() gotenresource.NamePattern

func (*Reference) GetRawResource

func (ref *Reference) GetRawResource() gotenresource.Resource

func (*Reference) GetResourceDescriptor

func (ref *Reference) GetResourceDescriptor() gotenresource.Descriptor

func (*Reference) GetSegments

func (ref *Reference) GetSegments() gotenresource.NameSegments

func (*Reference) GotenEqual

func (ref *Reference) GotenEqual(other interface{}) bool

GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)

func (*Reference) IsFullyQualified

func (ref *Reference) IsFullyQualified() bool

func (*Reference) IsSpecified

func (ref *Reference) IsSpecified() bool

func (*Reference) Matches

func (name *Reference) Matches(other interface{}) bool

Matches is same as GotenEqual, but also will accept "other" if name is wildcard.

func (*Reference) ParseProtoString

func (ref *Reference) ParseProtoString(data string) error

func (*Reference) ProtoString

func (ref *Reference) ProtoString() (string, error)

func (*Reference) Resolve

func (ref *Reference) Resolve(resolved *LogCondition)

func (*Reference) ResolveRaw

func (ref *Reference) ResolveRaw(res gotenresource.Resource) error

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

func (ref *Reference) SetFromCliFlag(raw string) error

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type SearchQuery

type SearchQuery struct {
	ListQuery
	Phrase string
}

func (*SearchQuery) GetPhrase

func (q *SearchQuery) GetPhrase() string

func (*SearchQuery) GetWithPagingInfo

func (q *SearchQuery) GetWithPagingInfo() bool

func (*SearchQuery) SetPhrase

func (q *SearchQuery) SetPhrase(phrase string)

func (*SearchQuery) String

func (q *SearchQuery) String() string

type WatchQuery

type WatchQuery struct {
	ListQuery
	WatchType    watch_type.WatchType
	ChunkSize    int
	ResumeToken  string
	StartingTime *timestamppb.Timestamp
}

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime

func (q *WatchQuery) GetStartingTime() *timestamppb.Timestamp

func (*WatchQuery) GetWatchType

func (q *WatchQuery) GetWatchType() watch_type.WatchType

func (*WatchQuery) SetMaximumChunkSize

func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)

func (*WatchQuery) SetResumeToken

func (q *WatchQuery) SetResumeToken(token string)

func (*WatchQuery) SetStartingTime

func (q *WatchQuery) SetStartingTime(startingTime *timestamppb.Timestamp)

func (*WatchQuery) SetWatchType

func (q *WatchQuery) SetWatchType(watchType watch_type.WatchType)

func (*WatchQuery) String

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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