probing_target

package
v0.12.9 Latest Latest
Warning

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

Go to latest
Published: Nov 14, 2023 License: Apache-2.0 Imports: 60 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NamePattern_Project = "projects/{project}/probingTargets/{probing_target}"
)

Variables

View Source
var (
	ProbingTarget_TargetType_name = map[int32]string{
		0: "UNMANAGED_TARGET",
		1: "MANAGED_TARGET",
	}

	ProbingTarget_TargetType_value = map[string]int32{
		"UNMANAGED_TARGET": 0,
		"MANAGED_TARGET":   1,
	}
)

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access ProbingTargetAccess) gotenresource.Access

Types

type Descriptor

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

func GetDescriptor

func GetDescriptor() *Descriptor

func (*Descriptor) GetNameDescriptor

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

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 added in v0.7.13

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)

type Filter

type Filter struct {
	FilterCondition
}

func (*Filter) ConvertToNative

func (filter *Filter) ConvertToNative(typeDesc reflect.Type) (interface{}, error)

func (*Filter) ConvertToType

func (filter *Filter) ConvertToType(typeVal ref.Type) ref.Val

func (*Filter) DecodeFirestore

func (filter *Filter) DecodeFirestore(fpbv *firestorepb.Value) error

func (*Filter) EncodeFirestore

func (filter *Filter) EncodeFirestore() (*firestorepb.Value, error)

firestore encoding/decoding integration

func (*Filter) Equal

func (filter *Filter) Equal(other ref.Val) ref.Val

func (*Filter) Evaluate

func (filter *Filter) Evaluate(res *ProbingTarget) 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 []*ProbingTarget) (out []*ProbingTarget)

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) HasTrait

func (filter *Filter) HasTrait(trait int) bool

func (*Filter) Match

func (filter *Filter) Match(pattern ref.Val) ref.Val

func (*Filter) ParseProtoString

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

func (*Filter) ProtoString

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

func (*Filter) Receive

func (filter *Filter) Receive(function string, overload string, args []ref.Val) ref.Val

func (*Filter) SetFromCliFlag

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

func (*Filter) String

func (filter *Filter) String() string

func (*Filter) Type

func (filter *Filter) Type() ref.Type

func (*Filter) TypeName

func (filter *Filter) TypeName() string

func (*Filter) Value

func (filter *Filter) Value() interface{}

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 ProbingTarget_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 *ProbingTarget) bool

	// Whether this condition is at least as specific as other.
	// When true, any ProbingTarget 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 ProbingTarget_FieldPath) bool
	// contains filtered or unexported methods
}

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	ProbingTarget_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *ProbingTarget) 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 ProbingTarget_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 *ProbingTarget) 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 ProbingTarget_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 *ProbingTarget) bool

func (*FilterConditionContains) EvaluateRaw

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

func (*FilterConditionContains) GetFieldPath

func (cond *FilterConditionContains) GetFieldPath() ProbingTarget_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 ProbingTarget_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 {
	ProbingTarget_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *ProbingTarget) 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 ProbingTarget_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 ProbingTarget_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *ProbingTarget) 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 ProbingTarget_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 ProbingTarget_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *ProbingTarget) 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 ProbingTarget_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 *ProbingTarget) 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 ProbingTarget_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 {
	ProbingTarget_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *ProbingTarget) 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 ProbingTarget_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      *ProbingTarget_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           *ProbingTarget_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 added in v0.8.3

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 added in v0.8.3

func (q *ListQuery) SetWithPagingInfo(with bool)

func (*ListQuery) String

func (q *ListQuery) String() string

type Name

type Name struct {
	ParentName
	ProbingTargetId string `firestore:"probingTargetId"`
}

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) ConvertToNative

func (name *Name) ConvertToNative(typeDesc reflect.Type) (interface{}, error)

func (*Name) ConvertToType

func (name *Name) ConvertToType(typeVal ref.Type) ref.Val

func (*Name) Equal

func (name *Name) Equal(other ref.Val) ref.Val

func (*Name) FullyQualifiedName

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

func (*Name) GetIParentName added in v0.7.1

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

func (*Name) GetIUnderlyingParentName added in v0.7.1

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) GetProjectName

func (name *Name) GetProjectName() *project.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) HasTrait

func (name *Name) HasTrait(trait int) bool

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Match

func (name *Name) Match(pattern ref.Val) ref.Val

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) Receive

func (name *Name) Receive(function string, overload string, args []ref.Val) ref.Val

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

func (*Name) Type

func (name *Name) Type() ref.Type

func (*Name) TypeName

func (name *Name) TypeName() string

func (*Name) Value

func (name *Name) Value() interface{}

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) SetProject

func (b *NameBuilder) SetProject(parent *project.Name) *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 *ProbingTarget) int

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *ProbingTarget_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 ProbingTargetList, elem *ProbingTarget) (ProbingTargetList, 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 ProbingTargetList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

type OrderByField struct {
	FieldPath ProbingTarget_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 *ProbingTarget) 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 added in v0.7.1

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

func (*PagerQuery) SetLimit added in v0.7.1

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy added in v0.7.1

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

func (*PagerQuery) SetPageDirection added in v0.7.1

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

func (*PagerQuery) SetPeekForward added in v0.7.1

func (p *PagerQuery) SetPeekForward(peekForward bool)

type ParentName

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

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 added in v0.7.1

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

func (*ParentName) GetIUnderlyingParentName added in v0.7.1

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) GetProjectName

func (name *ParentName) GetProjectName() *project.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) ConvertToNative added in v0.6.2

func (name *ParentReference) ConvertToNative(typeDesc reflect.Type) (interface{}, error)

func (*ParentReference) ConvertToType added in v0.6.2

func (name *ParentReference) ConvertToType(typeVal ref.Type) ref.Val

func (*ParentReference) Equal added in v0.6.2

func (name *ParentReference) Equal(other ref.Val) ref.Val

func (*ParentReference) GetIParentName added in v0.7.1

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

func (*ParentReference) GetIUnderlyingParentName added in v0.7.1

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) GetProject

func (ref *ParentReference) GetProject() *project.Project

func (*ParentReference) GetProjectReference

func (ref *ParentReference) GetProjectReference() *project.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) HasTrait added in v0.6.2

func (name *ParentReference) HasTrait(trait int) bool

func (*ParentReference) IsFullyQualified

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

func (*ParentReference) Match added in v0.6.2

func (name *ParentReference) Match(pattern ref.Val) ref.Val

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) Receive added in v0.6.2

func (name *ParentReference) Receive(function string, overload string, args []ref.Val) ref.Val

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

func (*ParentReference) Type added in v0.6.2

func (name *ParentReference) Type() ref.Type

func (*ParentReference) TypeName added in v0.6.2

func (name *ParentReference) TypeName() string

func (*ParentReference) Value added in v0.6.2

func (name *ParentReference) Value() interface{}

type ProbingTarget

type ProbingTarget struct {

	// Name of ProbingTarget
	// 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" firestore:"name"`
	// Display name is a human readable representation of the target
	DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	// Metadata
	Metadata *ntt_meta.Meta `protobuf:"bytes,13,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// group reference
	Group *probing_target_group.Reference `protobuf:"bytes,17,opt,customtype=Reference,name=group,proto3" json:"group,omitempty" firestore:"group"`
	// Target group display name
	GroupName string `protobuf:"bytes,25,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty" firestore:"groupName"`
	// mode defines the mode for this probe target - icmp/udp/http/tcp
	Mode common.ProbingMode `protobuf:"varint,2,opt,name=mode,proto3,enum=ntt.watchdog.v1alpha2.ProbingMode" json:"mode,omitempty" firestore:"mode"`
	// ip_version defines which IP version should be used.
	IpVersion common.IpVersion `` /* 148-byte string literal not displayed */
	// address is the actual target for the probe - IP addreses/http endpoint
	Address string `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty" firestore:"address"`
	// Additional Category Name to enrich data
	Category string `protobuf:"bytes,12,opt,name=category,proto3" json:"category,omitempty" firestore:"category"`
	// Target location type
	LocationType common.LocationType `` /* 164-byte string literal not displayed */
	// Specific location if applicable
	Location *common.Location `protobuf:"bytes,15,opt,name=location,proto3" json:"location,omitempty" firestore:"location"`
	// Additional configuration for http probing
	HttpProbingConfig *common.HTTPProbingConfig `` /* 145-byte string literal not displayed */
	// Proxy override configuration for http probing
	ProxyConfiguration *common.ProxyConfiguration `` /* 147-byte string literal not displayed */
	Agent              *probe.Reference           `protobuf:"bytes,20,opt,customtype=Reference,name=agent,proto3" json:"agent,omitempty" firestore:"agent"`
	// addresses list the list of IP addresses that this target is reachable on
	// used for managed targets that might have dual stack
	Addresses  []string                 `protobuf:"bytes,21,rep,name=addresses,proto3" json:"addresses,omitempty" firestore:"addresses"`
	TargetType ProbingTarget_TargetType `` /* 168-byte string literal not displayed */
	// Default value is 5001
	UdpPort int32 `protobuf:"varint,23,opt,name=udp_port,json=udpPort,proto3" json:"udp_port,omitempty" firestore:"udpPort"`
	// Default value is 8080
	SpeedtestTcpPort int32 `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

ProbingTarget Resource

func (*ProbingTarget) Clone

func (o *ProbingTarget) Clone() *ProbingTarget

func (*ProbingTarget) CloneRaw

func (*ProbingTarget) Descriptor

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

Deprecated, Use ProbingTarget.ProtoReflect.Descriptor instead.

func (*ProbingTarget) GetAddress

func (m *ProbingTarget) GetAddress() string

func (*ProbingTarget) GetAddresses

func (m *ProbingTarget) GetAddresses() []string

func (*ProbingTarget) GetAgent

func (m *ProbingTarget) GetAgent() *probe.Reference

func (*ProbingTarget) GetCategory

func (m *ProbingTarget) GetCategory() string

func (*ProbingTarget) GetDisplayName

func (m *ProbingTarget) GetDisplayName() string

func (*ProbingTarget) GetGroup

func (*ProbingTarget) GetGroupName added in v0.10.6

func (m *ProbingTarget) GetGroupName() string

func (*ProbingTarget) GetHttpProbingConfig

func (m *ProbingTarget) GetHttpProbingConfig() *common.HTTPProbingConfig

func (*ProbingTarget) GetIpVersion

func (m *ProbingTarget) GetIpVersion() common.IpVersion

func (*ProbingTarget) GetLocation

func (m *ProbingTarget) GetLocation() *common.Location

func (*ProbingTarget) GetLocationType

func (m *ProbingTarget) GetLocationType() common.LocationType

func (*ProbingTarget) GetMetadata

func (m *ProbingTarget) GetMetadata() *ntt_meta.Meta

func (*ProbingTarget) GetMode

func (m *ProbingTarget) GetMode() common.ProbingMode

func (*ProbingTarget) GetName

func (m *ProbingTarget) GetName() *Name

func (*ProbingTarget) GetProxyConfiguration added in v0.11.11

func (m *ProbingTarget) GetProxyConfiguration() *common.ProxyConfiguration

func (*ProbingTarget) GetRawName

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

func (*ProbingTarget) GetResourceDescriptor

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

func (*ProbingTarget) GetSpeedtestTcpPort added in v0.4.36

func (m *ProbingTarget) GetSpeedtestTcpPort() int32

func (*ProbingTarget) GetTargetType added in v0.4.26

func (m *ProbingTarget) GetTargetType() ProbingTarget_TargetType

func (*ProbingTarget) GetUdpPort added in v0.4.36

func (m *ProbingTarget) GetUdpPort() int32

func (*ProbingTarget) GotenMessage

func (*ProbingTarget) GotenMessage()

func (*ProbingTarget) GotenObjectExt

func (o *ProbingTarget) GotenObjectExt()

func (*ProbingTarget) GotenValidate

func (obj *ProbingTarget) GotenValidate() error

func (*ProbingTarget) MakeDiffFieldMask

func (o *ProbingTarget) MakeDiffFieldMask(other *ProbingTarget) *ProbingTarget_FieldMask

func (*ProbingTarget) MakeFullFieldMask

func (o *ProbingTarget) MakeFullFieldMask() *ProbingTarget_FieldMask

func (*ProbingTarget) MakeRawDiffFieldMask

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

func (*ProbingTarget) MakeRawFullFieldMask

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

func (*ProbingTarget) Marshal

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

func (*ProbingTarget) MarshalJSON

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

func (*ProbingTarget) MaybePopulateDefaults

func (r *ProbingTarget) MaybePopulateDefaults() error

func (*ProbingTarget) Merge

func (o *ProbingTarget) Merge(source *ProbingTarget)

func (*ProbingTarget) MergeRaw

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

func (*ProbingTarget) ProtoMessage

func (*ProbingTarget) ProtoMessage()

func (*ProbingTarget) ProtoReflect

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

func (*ProbingTarget) Reset

func (m *ProbingTarget) Reset()

func (*ProbingTarget) SetAddress

func (m *ProbingTarget) SetAddress(fv string)

func (*ProbingTarget) SetAddresses

func (m *ProbingTarget) SetAddresses(fv []string)

func (*ProbingTarget) SetAgent

func (m *ProbingTarget) SetAgent(fv *probe.Reference)

func (*ProbingTarget) SetCategory

func (m *ProbingTarget) SetCategory(fv string)

func (*ProbingTarget) SetDisplayName

func (m *ProbingTarget) SetDisplayName(fv string)

func (*ProbingTarget) SetGroup

func (m *ProbingTarget) SetGroup(fv *probing_target_group.Reference)

func (*ProbingTarget) SetGroupName added in v0.10.6

func (m *ProbingTarget) SetGroupName(fv string)

func (*ProbingTarget) SetHttpProbingConfig

func (m *ProbingTarget) SetHttpProbingConfig(fv *common.HTTPProbingConfig)

func (*ProbingTarget) SetIpVersion

func (m *ProbingTarget) SetIpVersion(fv common.IpVersion)

func (*ProbingTarget) SetLocation

func (m *ProbingTarget) SetLocation(fv *common.Location)

func (*ProbingTarget) SetLocationType

func (m *ProbingTarget) SetLocationType(fv common.LocationType)

func (*ProbingTarget) SetMetadata

func (m *ProbingTarget) SetMetadata(fv *ntt_meta.Meta)

func (*ProbingTarget) SetMode

func (m *ProbingTarget) SetMode(fv common.ProbingMode)

func (*ProbingTarget) SetName

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

func (*ProbingTarget) SetProxyConfiguration added in v0.11.11

func (m *ProbingTarget) SetProxyConfiguration(fv *common.ProxyConfiguration)

func (*ProbingTarget) SetSpeedtestTcpPort added in v0.4.36

func (m *ProbingTarget) SetSpeedtestTcpPort(fv int32)

func (*ProbingTarget) SetTargetType added in v0.4.26

func (m *ProbingTarget) SetTargetType(fv ProbingTarget_TargetType)

func (*ProbingTarget) SetUdpPort added in v0.4.36

func (m *ProbingTarget) SetUdpPort(fv int32)

func (*ProbingTarget) String

func (m *ProbingTarget) String() string

func (*ProbingTarget) Unmarshal

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

func (*ProbingTarget) UnmarshalJSON

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

type ProbingTargetAccess

type ProbingTargetAccess interface {
	GetProbingTarget(context.Context, *GetQuery) (*ProbingTarget, error)
	BatchGetProbingTargets(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryProbingTargets(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	SearchProbingTargets(context.Context, *SearchQuery) (*QueryResultSnapshot, error)
	WatchProbingTarget(context.Context, *GetQuery, func(*ProbingTargetChange) error) error
	WatchProbingTargets(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveProbingTarget(context.Context, *ProbingTarget, ...gotenresource.SaveOption) error
	DeleteProbingTarget(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type ProbingTargetChange

type ProbingTargetChange struct {

	// ProbingTarget change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*ProbingTargetChange_Added_
	//	*ProbingTargetChange_Modified_
	//	*ProbingTargetChange_Current_
	//	*ProbingTargetChange_Removed_
	ChangeType isProbingTargetChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*ProbingTargetChange) Descriptor

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

Deprecated, Use ProbingTargetChange.ProtoReflect.Descriptor instead.

func (*ProbingTargetChange) GetAdded

func (*ProbingTargetChange) GetChangeType

func (m *ProbingTargetChange) GetChangeType() isProbingTargetChange_ChangeType

func (*ProbingTargetChange) GetCurrent

func (*ProbingTargetChange) GetCurrentViewIndex

func (c *ProbingTargetChange) GetCurrentViewIndex() int32

func (*ProbingTargetChange) GetModified

func (*ProbingTargetChange) GetPreviousViewIndex

func (c *ProbingTargetChange) GetPreviousViewIndex() int32

func (*ProbingTargetChange) GetProbingTarget

func (c *ProbingTargetChange) GetProbingTarget() *ProbingTarget

func (*ProbingTargetChange) GetProbingTargetName

func (c *ProbingTargetChange) GetProbingTargetName() *Name

func (*ProbingTargetChange) GetRawName

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

func (*ProbingTargetChange) GetRawResource added in v0.5.1

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

func (*ProbingTargetChange) GetRemoved

func (*ProbingTargetChange) GotenMessage

func (*ProbingTargetChange) GotenMessage()

func (*ProbingTargetChange) GotenValidate

func (obj *ProbingTargetChange) GotenValidate() error

func (*ProbingTargetChange) IsAdd

func (c *ProbingTargetChange) IsAdd() bool

func (*ProbingTargetChange) IsCurrent

func (c *ProbingTargetChange) IsCurrent() bool

func (*ProbingTargetChange) IsDelete

func (c *ProbingTargetChange) IsDelete() bool

func (*ProbingTargetChange) IsModify

func (c *ProbingTargetChange) IsModify() bool

func (*ProbingTargetChange) Marshal

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

func (*ProbingTargetChange) MarshalJSON

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

func (*ProbingTargetChange) ProtoMessage

func (*ProbingTargetChange) ProtoMessage()

func (*ProbingTargetChange) ProtoReflect

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

func (*ProbingTargetChange) Reset

func (m *ProbingTargetChange) Reset()

func (*ProbingTargetChange) SetAdded

func (*ProbingTargetChange) SetAddedRaw

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

func (*ProbingTargetChange) SetChangeType

func (m *ProbingTargetChange) SetChangeType(ofv isProbingTargetChange_ChangeType)

func (*ProbingTargetChange) SetCurrent

func (*ProbingTargetChange) SetCurrentRaw

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

func (*ProbingTargetChange) SetDeletedRaw

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

func (*ProbingTargetChange) SetModified

func (*ProbingTargetChange) SetModifiedRaw

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

func (*ProbingTargetChange) SetRemoved

func (*ProbingTargetChange) String

func (m *ProbingTargetChange) String() string

func (*ProbingTargetChange) Unmarshal

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

func (*ProbingTargetChange) UnmarshalJSON

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

type ProbingTargetChangeList

type ProbingTargetChangeList []*ProbingTargetChange

func (ProbingTargetChangeList) Append

func (ProbingTargetChangeList) AppendList

func (ProbingTargetChangeList) At

func (ProbingTargetChangeList) Length

func (l ProbingTargetChangeList) Length() int

func (ProbingTargetChangeList) Set

func (ProbingTargetChangeList) Slice

type ProbingTargetChangeMap

type ProbingTargetChangeMap map[Name]*ProbingTargetChange

func (ProbingTargetChangeMap) Delete

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

func (ProbingTargetChangeMap) ForEach

func (ProbingTargetChangeMap) Get

func (ProbingTargetChangeMap) Length

func (m ProbingTargetChangeMap) Length() int

func (ProbingTargetChangeMap) Set

type ProbingTargetChange_Added

type ProbingTargetChange_Added struct {
	ProbingTarget *ProbingTarget `` /* 126-byte string literal not displayed */
	// Integer describing index of added ProbingTarget in resulting query view.
	ViewIndex int32 `protobuf:"varint,2,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty" firestore:"viewIndex"`
	// contains filtered or unexported fields
}

ProbingTarget has been added to query view

func (*ProbingTargetChange_Added) Descriptor

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

Deprecated, Use ProbingTargetChange_Added.ProtoReflect.Descriptor instead.

func (*ProbingTargetChange_Added) GetProbingTarget

func (m *ProbingTargetChange_Added) GetProbingTarget() *ProbingTarget

func (*ProbingTargetChange_Added) GetViewIndex

func (m *ProbingTargetChange_Added) GetViewIndex() int32

func (*ProbingTargetChange_Added) GotenMessage

func (*ProbingTargetChange_Added) GotenMessage()

func (*ProbingTargetChange_Added) GotenValidate

func (obj *ProbingTargetChange_Added) GotenValidate() error

func (*ProbingTargetChange_Added) Marshal

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

func (*ProbingTargetChange_Added) MarshalJSON

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

func (*ProbingTargetChange_Added) ProtoMessage

func (*ProbingTargetChange_Added) ProtoMessage()

func (*ProbingTargetChange_Added) ProtoReflect

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

func (*ProbingTargetChange_Added) Reset

func (m *ProbingTargetChange_Added) Reset()

func (*ProbingTargetChange_Added) SetProbingTarget

func (m *ProbingTargetChange_Added) SetProbingTarget(fv *ProbingTarget)

func (*ProbingTargetChange_Added) SetViewIndex

func (m *ProbingTargetChange_Added) SetViewIndex(fv int32)

func (*ProbingTargetChange_Added) String

func (m *ProbingTargetChange_Added) String() string

func (*ProbingTargetChange_Added) Unmarshal

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

func (*ProbingTargetChange_Added) UnmarshalJSON

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

type ProbingTargetChange_Added_

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

type ProbingTargetChange_Current

type ProbingTargetChange_Current struct {
	ProbingTarget *ProbingTarget `` /* 126-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*ProbingTargetChange_Current) Descriptor

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

Deprecated, Use ProbingTargetChange_Current.ProtoReflect.Descriptor instead.

func (*ProbingTargetChange_Current) GetProbingTarget

func (m *ProbingTargetChange_Current) GetProbingTarget() *ProbingTarget

func (*ProbingTargetChange_Current) GotenMessage

func (*ProbingTargetChange_Current) GotenMessage()

func (*ProbingTargetChange_Current) GotenValidate

func (obj *ProbingTargetChange_Current) GotenValidate() error

func (*ProbingTargetChange_Current) Marshal

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

func (*ProbingTargetChange_Current) MarshalJSON

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

func (*ProbingTargetChange_Current) ProtoMessage

func (*ProbingTargetChange_Current) ProtoMessage()

func (*ProbingTargetChange_Current) ProtoReflect

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

func (*ProbingTargetChange_Current) Reset

func (m *ProbingTargetChange_Current) Reset()

func (*ProbingTargetChange_Current) SetProbingTarget

func (m *ProbingTargetChange_Current) SetProbingTarget(fv *ProbingTarget)

func (*ProbingTargetChange_Current) String

func (m *ProbingTargetChange_Current) String() string

func (*ProbingTargetChange_Current) Unmarshal

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

func (*ProbingTargetChange_Current) UnmarshalJSON

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

type ProbingTargetChange_Current_

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

type ProbingTargetChange_Modified

type ProbingTargetChange_Modified struct {

	// Name of modified ProbingTarget
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// New version of ProbingTarget or masked difference, depending on
	// mask_changes instrumentation of issued [WatchProbingTargetRequest] or
	// [WatchProbingTargetsRequest]
	ProbingTarget *ProbingTarget `` /* 126-byte string literal not displayed */
	// Used when mask_changes is set, contains field paths of modified
	// properties.
	FieldMask *ProbingTarget_FieldMask `` /* 145-byte string literal not displayed */
	// Previous view index specifies previous position of modified
	// ProbingTarget. When modification doesn't affect sorted order, value will
	// remain identical to [view_index].
	PreviousViewIndex int32 `` /* 145-byte string literal not displayed */
	// Integer specifying ProbingTarget new index in resulting query view.
	ViewIndex int32 `protobuf:"varint,5,opt,name=view_index,json=viewIndex,proto3" json:"view_index,omitempty" firestore:"viewIndex"`
	// contains filtered or unexported fields
}

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

func (*ProbingTargetChange_Modified) Descriptor

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

Deprecated, Use ProbingTargetChange_Modified.ProtoReflect.Descriptor instead.

func (*ProbingTargetChange_Modified) GetFieldMask

func (*ProbingTargetChange_Modified) GetName

func (m *ProbingTargetChange_Modified) GetName() *Name

func (*ProbingTargetChange_Modified) GetPreviousViewIndex

func (m *ProbingTargetChange_Modified) GetPreviousViewIndex() int32

func (*ProbingTargetChange_Modified) GetProbingTarget

func (m *ProbingTargetChange_Modified) GetProbingTarget() *ProbingTarget

func (*ProbingTargetChange_Modified) GetViewIndex

func (m *ProbingTargetChange_Modified) GetViewIndex() int32

func (*ProbingTargetChange_Modified) GotenMessage

func (*ProbingTargetChange_Modified) GotenMessage()

func (*ProbingTargetChange_Modified) GotenValidate

func (obj *ProbingTargetChange_Modified) GotenValidate() error

func (*ProbingTargetChange_Modified) Marshal

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

func (*ProbingTargetChange_Modified) MarshalJSON

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

func (*ProbingTargetChange_Modified) ProtoMessage

func (*ProbingTargetChange_Modified) ProtoMessage()

func (*ProbingTargetChange_Modified) ProtoReflect

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

func (*ProbingTargetChange_Modified) Reset

func (m *ProbingTargetChange_Modified) Reset()

func (*ProbingTargetChange_Modified) SetFieldMask

func (*ProbingTargetChange_Modified) SetName

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

func (*ProbingTargetChange_Modified) SetPreviousViewIndex

func (m *ProbingTargetChange_Modified) SetPreviousViewIndex(fv int32)

func (*ProbingTargetChange_Modified) SetProbingTarget

func (m *ProbingTargetChange_Modified) SetProbingTarget(fv *ProbingTarget)

func (*ProbingTargetChange_Modified) SetViewIndex

func (m *ProbingTargetChange_Modified) SetViewIndex(fv int32)

func (*ProbingTargetChange_Modified) String

func (*ProbingTargetChange_Modified) Unmarshal

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

func (*ProbingTargetChange_Modified) UnmarshalJSON

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

type ProbingTargetChange_Modified_

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

type ProbingTargetChange_Removed

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

Removed is returned when ProbingTarget is deleted or leaves Query view

func (*ProbingTargetChange_Removed) Descriptor

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

Deprecated, Use ProbingTargetChange_Removed.ProtoReflect.Descriptor instead.

func (*ProbingTargetChange_Removed) GetName

func (m *ProbingTargetChange_Removed) GetName() *Name

func (*ProbingTargetChange_Removed) GetViewIndex

func (m *ProbingTargetChange_Removed) GetViewIndex() int32

func (*ProbingTargetChange_Removed) GotenMessage

func (*ProbingTargetChange_Removed) GotenMessage()

func (*ProbingTargetChange_Removed) GotenValidate

func (obj *ProbingTargetChange_Removed) GotenValidate() error

func (*ProbingTargetChange_Removed) Marshal

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

func (*ProbingTargetChange_Removed) MarshalJSON

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

func (*ProbingTargetChange_Removed) ProtoMessage

func (*ProbingTargetChange_Removed) ProtoMessage()

func (*ProbingTargetChange_Removed) ProtoReflect

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

func (*ProbingTargetChange_Removed) Reset

func (m *ProbingTargetChange_Removed) Reset()

func (*ProbingTargetChange_Removed) SetName

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

func (*ProbingTargetChange_Removed) SetViewIndex

func (m *ProbingTargetChange_Removed) SetViewIndex(fv int32)

func (*ProbingTargetChange_Removed) String

func (m *ProbingTargetChange_Removed) String() string

func (*ProbingTargetChange_Removed) Unmarshal

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

func (*ProbingTargetChange_Removed) UnmarshalJSON

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

type ProbingTargetChange_Removed_

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

type ProbingTargetFieldPathBuilder

type ProbingTargetFieldPathBuilder struct{}

func NewProbingTargetFieldPathBuilder

func NewProbingTargetFieldPathBuilder() ProbingTargetFieldPathBuilder

func (ProbingTargetFieldPathBuilder) Address

func (ProbingTargetFieldPathBuilder) Addresses

func (ProbingTargetFieldPathBuilder) Agent

func (ProbingTargetFieldPathBuilder) Category

func (ProbingTargetFieldPathBuilder) DisplayName

func (ProbingTargetFieldPathBuilder) Group

func (ProbingTargetFieldPathBuilder) GroupName added in v0.10.6

func (ProbingTargetFieldPathBuilder) HttpProbingConfig

func (ProbingTargetFieldPathBuilder) IpVersion

func (ProbingTargetFieldPathBuilder) Location

func (ProbingTargetFieldPathBuilder) LocationType

func (ProbingTargetFieldPathBuilder) Metadata

func (ProbingTargetFieldPathBuilder) Mode

func (ProbingTargetFieldPathBuilder) Name

func (ProbingTargetFieldPathBuilder) ProxyConfiguration added in v0.11.11

func (ProbingTargetFieldPathBuilder) SpeedtestTcpPort added in v0.4.36

func (ProbingTargetFieldPathBuilder) TargetType added in v0.4.26

func (ProbingTargetFieldPathBuilder) UdpPort added in v0.4.36

type ProbingTargetList

type ProbingTargetList []*ProbingTarget

func (ProbingTargetList) Append

func (ProbingTargetList) AppendList

func (ProbingTargetList) At

func (ProbingTargetList) Length

func (l ProbingTargetList) Length() int

func (ProbingTargetList) Set

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

func (ProbingTargetList) Slice

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

type ProbingTargetMap

type ProbingTargetMap map[Name]*ProbingTarget

func (ProbingTargetMap) Delete

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

func (ProbingTargetMap) ForEach

func (ProbingTargetMap) Get

func (ProbingTargetMap) Length

func (m ProbingTargetMap) Length() int

func (ProbingTargetMap) Set

type ProbingTargetMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingTargetMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingTargetMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingTargetMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingTargetMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingTargetMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingTargetMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingTargetMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingTargetMapPathSelectorMetadataAnnotations

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

func (ProbingTargetMapPathSelectorMetadataAnnotations) FieldPath

func (ProbingTargetMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingTargetMapPathSelectorMetadataAnnotations) WithValue

type ProbingTargetMapPathSelectorMetadataLabels

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

func (ProbingTargetMapPathSelectorMetadataLabels) FieldPath

func (ProbingTargetMapPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingTargetMapPathSelectorMetadataLabels) WithValue

type ProbingTargetMapPathSelectorMetadataShards

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

func (ProbingTargetMapPathSelectorMetadataShards) FieldPath

func (ProbingTargetMapPathSelectorMetadataShards) WithArrayOfValues

func (ProbingTargetMapPathSelectorMetadataShards) WithValue

type ProbingTargetNameList

type ProbingTargetNameList []*Name

func (ProbingTargetNameList) Append

func (ProbingTargetNameList) AppendList

func (ProbingTargetNameList) At

func (ProbingTargetNameList) Length

func (l ProbingTargetNameList) Length() int

func (ProbingTargetNameList) Set

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

func (ProbingTargetNameList) Slice

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

type ProbingTargetParentNameList

type ProbingTargetParentNameList []*ParentName

func (ProbingTargetParentNameList) Append

func (ProbingTargetParentNameList) AppendList

func (ProbingTargetParentNameList) At

func (ProbingTargetParentNameList) Length

func (l ProbingTargetParentNameList) Length() int

func (ProbingTargetParentNameList) Set

func (ProbingTargetParentNameList) Slice

type ProbingTargetParentReferenceList

type ProbingTargetParentReferenceList []*ParentReference

func (ProbingTargetParentReferenceList) Append

func (ProbingTargetParentReferenceList) AppendList

func (ProbingTargetParentReferenceList) At

func (ProbingTargetParentReferenceList) Length

func (ProbingTargetParentReferenceList) Set

func (ProbingTargetParentReferenceList) Slice

type ProbingTargetPathSelectorAddress

type ProbingTargetPathSelectorAddress struct{}

func (ProbingTargetPathSelectorAddress) FieldPath

func (ProbingTargetPathSelectorAddress) WithArrayOfValues

func (ProbingTargetPathSelectorAddress) WithValue

type ProbingTargetPathSelectorAddresses

type ProbingTargetPathSelectorAddresses struct{}

func (ProbingTargetPathSelectorAddresses) FieldPath

func (ProbingTargetPathSelectorAddresses) WithArrayOfValues

func (ProbingTargetPathSelectorAddresses) WithItemValue

func (ProbingTargetPathSelectorAddresses) WithValue

type ProbingTargetPathSelectorAgent

type ProbingTargetPathSelectorAgent struct{}

func (ProbingTargetPathSelectorAgent) FieldPath

func (ProbingTargetPathSelectorAgent) WithArrayOfValues

func (ProbingTargetPathSelectorAgent) WithValue

type ProbingTargetPathSelectorCategory

type ProbingTargetPathSelectorCategory struct{}

func (ProbingTargetPathSelectorCategory) FieldPath

func (ProbingTargetPathSelectorCategory) WithArrayOfValues

func (ProbingTargetPathSelectorCategory) WithValue

type ProbingTargetPathSelectorDisplayName

type ProbingTargetPathSelectorDisplayName struct{}

func (ProbingTargetPathSelectorDisplayName) FieldPath

func (ProbingTargetPathSelectorDisplayName) WithArrayOfValues

func (ProbingTargetPathSelectorDisplayName) WithValue

type ProbingTargetPathSelectorGroup

type ProbingTargetPathSelectorGroup struct{}

func (ProbingTargetPathSelectorGroup) FieldPath

func (ProbingTargetPathSelectorGroup) WithArrayOfValues

func (ProbingTargetPathSelectorGroup) WithValue

type ProbingTargetPathSelectorGroupName added in v0.10.6

type ProbingTargetPathSelectorGroupName struct{}

func (ProbingTargetPathSelectorGroupName) FieldPath added in v0.10.6

func (ProbingTargetPathSelectorGroupName) WithArrayOfValues added in v0.10.6

func (ProbingTargetPathSelectorGroupName) WithValue added in v0.10.6

type ProbingTargetPathSelectorHttpProbingConfig

type ProbingTargetPathSelectorHttpProbingConfig struct{}

func (ProbingTargetPathSelectorHttpProbingConfig) AuthConfig

func (ProbingTargetPathSelectorHttpProbingConfig) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfig) HttpRequest

func (ProbingTargetPathSelectorHttpProbingConfig) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfig) WithSubArrayItemValue

func (ProbingTargetPathSelectorHttpProbingConfig) WithSubArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfig) WithSubPath

func (ProbingTargetPathSelectorHttpProbingConfig) WithSubValue

func (ProbingTargetPathSelectorHttpProbingConfig) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfig

type ProbingTargetPathSelectorHttpProbingConfigAuthConfig struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) Password

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) TokenRequest

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) Username

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfig) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigPassword

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigPassword struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigPassword) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequest

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigUsername

type ProbingTargetPathSelectorHttpProbingConfigAuthConfigUsername struct{}

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigAuthConfigUsername) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequest

type ProbingTargetPathSelectorHttpProbingConfigHttpRequest struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) RequestBody

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) Timeout

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) Url

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequest) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestBody

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestHeaders

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestMethod

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestTimeout

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestUrl

type ProbingTargetPathSelectorHttpProbingConfigHttpRequestUrl struct{}

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingTargetPathSelectorHttpProbingConfigHttpRequestUrl) WithValue

type ProbingTargetPathSelectorIpVersion

type ProbingTargetPathSelectorIpVersion struct{}

func (ProbingTargetPathSelectorIpVersion) FieldPath

func (ProbingTargetPathSelectorIpVersion) WithArrayOfValues

func (ProbingTargetPathSelectorIpVersion) WithValue

type ProbingTargetPathSelectorLocation

type ProbingTargetPathSelectorLocation struct{}

func (ProbingTargetPathSelectorLocation) Accuracy

func (ProbingTargetPathSelectorLocation) Address

func (ProbingTargetPathSelectorLocation) AdminHierarchy

func (ProbingTargetPathSelectorLocation) Coordinates

func (ProbingTargetPathSelectorLocation) FieldPath

func (ProbingTargetPathSelectorLocation) WithArrayOfValues

func (ProbingTargetPathSelectorLocation) WithSubArrayItemValue

func (ProbingTargetPathSelectorLocation) WithSubArrayOfValues

func (ProbingTargetPathSelectorLocation) WithSubPath

func (ProbingTargetPathSelectorLocation) WithSubValue

func (ProbingTargetPathSelectorLocation) WithValue

type ProbingTargetPathSelectorLocationAccuracy

type ProbingTargetPathSelectorLocationAccuracy struct{}

func (ProbingTargetPathSelectorLocationAccuracy) FieldPath

func (ProbingTargetPathSelectorLocationAccuracy) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAccuracy) WithValue

type ProbingTargetPathSelectorLocationAddress

type ProbingTargetPathSelectorLocationAddress struct{}

func (ProbingTargetPathSelectorLocationAddress) AdminArea1

func (ProbingTargetPathSelectorLocationAddress) AdminArea2

func (ProbingTargetPathSelectorLocationAddress) AdminArea3

func (ProbingTargetPathSelectorLocationAddress) AdminArea4

func (ProbingTargetPathSelectorLocationAddress) Continent

func (ProbingTargetPathSelectorLocationAddress) Country

func (ProbingTargetPathSelectorLocationAddress) CountryCode

func (ProbingTargetPathSelectorLocationAddress) FieldPath

func (ProbingTargetPathSelectorLocationAddress) PostalCode

func (ProbingTargetPathSelectorLocationAddress) StreetAddress

func (ProbingTargetPathSelectorLocationAddress) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddress) WithValue

type ProbingTargetPathSelectorLocationAddressAdminArea1

type ProbingTargetPathSelectorLocationAddressAdminArea1 struct{}

func (ProbingTargetPathSelectorLocationAddressAdminArea1) FieldPath

func (ProbingTargetPathSelectorLocationAddressAdminArea1) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressAdminArea1) WithValue

type ProbingTargetPathSelectorLocationAddressAdminArea2

type ProbingTargetPathSelectorLocationAddressAdminArea2 struct{}

func (ProbingTargetPathSelectorLocationAddressAdminArea2) FieldPath

func (ProbingTargetPathSelectorLocationAddressAdminArea2) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressAdminArea2) WithValue

type ProbingTargetPathSelectorLocationAddressAdminArea3

type ProbingTargetPathSelectorLocationAddressAdminArea3 struct{}

func (ProbingTargetPathSelectorLocationAddressAdminArea3) FieldPath

func (ProbingTargetPathSelectorLocationAddressAdminArea3) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressAdminArea3) WithValue

type ProbingTargetPathSelectorLocationAddressAdminArea4

type ProbingTargetPathSelectorLocationAddressAdminArea4 struct{}

func (ProbingTargetPathSelectorLocationAddressAdminArea4) FieldPath

func (ProbingTargetPathSelectorLocationAddressAdminArea4) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressAdminArea4) WithValue

type ProbingTargetPathSelectorLocationAddressContinent

type ProbingTargetPathSelectorLocationAddressContinent struct{}

func (ProbingTargetPathSelectorLocationAddressContinent) FieldPath

func (ProbingTargetPathSelectorLocationAddressContinent) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressContinent) WithValue

type ProbingTargetPathSelectorLocationAddressCountry

type ProbingTargetPathSelectorLocationAddressCountry struct{}

func (ProbingTargetPathSelectorLocationAddressCountry) FieldPath

func (ProbingTargetPathSelectorLocationAddressCountry) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressCountry) WithValue

type ProbingTargetPathSelectorLocationAddressCountryCode

type ProbingTargetPathSelectorLocationAddressCountryCode struct{}

func (ProbingTargetPathSelectorLocationAddressCountryCode) FieldPath

func (ProbingTargetPathSelectorLocationAddressCountryCode) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressCountryCode) WithValue

type ProbingTargetPathSelectorLocationAddressPostalCode

type ProbingTargetPathSelectorLocationAddressPostalCode struct{}

func (ProbingTargetPathSelectorLocationAddressPostalCode) FieldPath

func (ProbingTargetPathSelectorLocationAddressPostalCode) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressPostalCode) WithValue

type ProbingTargetPathSelectorLocationAddressStreetAddress

type ProbingTargetPathSelectorLocationAddressStreetAddress struct{}

func (ProbingTargetPathSelectorLocationAddressStreetAddress) FieldPath

func (ProbingTargetPathSelectorLocationAddressStreetAddress) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAddressStreetAddress) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchy

type ProbingTargetPathSelectorLocationAdminHierarchy struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchy) Admin1

func (ProbingTargetPathSelectorLocationAdminHierarchy) Admin2

func (ProbingTargetPathSelectorLocationAdminHierarchy) Admin3

func (ProbingTargetPathSelectorLocationAdminHierarchy) Admin4

func (ProbingTargetPathSelectorLocationAdminHierarchy) Admin5

func (ProbingTargetPathSelectorLocationAdminHierarchy) Continent

func (ProbingTargetPathSelectorLocationAdminHierarchy) Country

func (ProbingTargetPathSelectorLocationAdminHierarchy) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchy) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchy) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin1

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin1 struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin1) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin1) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin2

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin2 struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin2) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin2) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin3

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin3 struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin3) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin3) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin4

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin4 struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin4) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin4) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin5

type ProbingTargetPathSelectorLocationAdminHierarchyAdmin5 struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin5) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyAdmin5) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyContinent

type ProbingTargetPathSelectorLocationAdminHierarchyContinent struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyContinent) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyContinent) WithValue

type ProbingTargetPathSelectorLocationAdminHierarchyCountry

type ProbingTargetPathSelectorLocationAdminHierarchyCountry struct{}

func (ProbingTargetPathSelectorLocationAdminHierarchyCountry) FieldPath

func (ProbingTargetPathSelectorLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingTargetPathSelectorLocationAdminHierarchyCountry) WithValue

type ProbingTargetPathSelectorLocationCoordinates

type ProbingTargetPathSelectorLocationCoordinates struct{}

func (ProbingTargetPathSelectorLocationCoordinates) FieldPath

func (ProbingTargetPathSelectorLocationCoordinates) WithArrayOfValues

func (ProbingTargetPathSelectorLocationCoordinates) WithValue

type ProbingTargetPathSelectorLocationType

type ProbingTargetPathSelectorLocationType struct{}

func (ProbingTargetPathSelectorLocationType) FieldPath

func (ProbingTargetPathSelectorLocationType) WithArrayOfValues

func (ProbingTargetPathSelectorLocationType) WithValue

type ProbingTargetPathSelectorMetadata

type ProbingTargetPathSelectorMetadata struct{}

func (ProbingTargetPathSelectorMetadata) Annotations

func (ProbingTargetPathSelectorMetadata) CreateTime

func (ProbingTargetPathSelectorMetadata) DeleteTime added in v0.7.1

func (ProbingTargetPathSelectorMetadata) FieldPath

func (ProbingTargetPathSelectorMetadata) Generation

func (ProbingTargetPathSelectorMetadata) Labels

func (ProbingTargetPathSelectorMetadata) Lifecycle added in v0.7.1

func (ProbingTargetPathSelectorMetadata) OwnerReferences

func (ProbingTargetPathSelectorMetadata) ResourceVersion

func (ProbingTargetPathSelectorMetadata) Shards

func (ProbingTargetPathSelectorMetadata) Syncing

func (ProbingTargetPathSelectorMetadata) Tags

func (ProbingTargetPathSelectorMetadata) UpdateTime

func (ProbingTargetPathSelectorMetadata) Uuid

func (ProbingTargetPathSelectorMetadata) WithArrayOfValues

func (ProbingTargetPathSelectorMetadata) WithSubArrayItemValue

func (ProbingTargetPathSelectorMetadata) WithSubArrayOfValues

func (ProbingTargetPathSelectorMetadata) WithSubPath

func (ProbingTargetPathSelectorMetadata) WithSubValue

func (ProbingTargetPathSelectorMetadata) WithValue

type ProbingTargetPathSelectorMetadataAnnotations

type ProbingTargetPathSelectorMetadataAnnotations struct{}

func (ProbingTargetPathSelectorMetadataAnnotations) FieldPath

func (ProbingTargetPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataAnnotations) WithKey

func (ProbingTargetPathSelectorMetadataAnnotations) WithValue

type ProbingTargetPathSelectorMetadataCreateTime

type ProbingTargetPathSelectorMetadataCreateTime struct{}

func (ProbingTargetPathSelectorMetadataCreateTime) FieldPath

func (ProbingTargetPathSelectorMetadataCreateTime) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataCreateTime) WithValue

type ProbingTargetPathSelectorMetadataDeleteTime added in v0.7.1

type ProbingTargetPathSelectorMetadataDeleteTime struct{}

func (ProbingTargetPathSelectorMetadataDeleteTime) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataDeleteTime) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataDeleteTime) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataGeneration

type ProbingTargetPathSelectorMetadataGeneration struct{}

func (ProbingTargetPathSelectorMetadataGeneration) FieldPath

func (ProbingTargetPathSelectorMetadataGeneration) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataGeneration) WithValue

type ProbingTargetPathSelectorMetadataLabels

type ProbingTargetPathSelectorMetadataLabels struct{}

func (ProbingTargetPathSelectorMetadataLabels) FieldPath

func (ProbingTargetPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataLabels) WithKey

func (ProbingTargetPathSelectorMetadataLabels) WithValue

type ProbingTargetPathSelectorMetadataLifecycle added in v0.7.1

type ProbingTargetPathSelectorMetadataLifecycle struct{}

func (ProbingTargetPathSelectorMetadataLifecycle) BlockDeletion added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycle) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycle) State added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycle) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycle) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataLifecycleBlockDeletion added in v0.7.1

type ProbingTargetPathSelectorMetadataLifecycleBlockDeletion struct{}

func (ProbingTargetPathSelectorMetadataLifecycleBlockDeletion) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycleBlockDeletion) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataLifecycleState added in v0.7.1

type ProbingTargetPathSelectorMetadataLifecycleState struct{}

func (ProbingTargetPathSelectorMetadataLifecycleState) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycleState) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataLifecycleState) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferences

type ProbingTargetPathSelectorMetadataOwnerReferences struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferences) Controller

func (ProbingTargetPathSelectorMetadataOwnerReferences) FieldPath

func (ProbingTargetPathSelectorMetadataOwnerReferences) Kind

func (ProbingTargetPathSelectorMetadataOwnerReferences) Name

func (ProbingTargetPathSelectorMetadataOwnerReferences) Region added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferences) RequiresOwnerReference added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferences) Version added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataOwnerReferences) WithItemValue

func (ProbingTargetPathSelectorMetadataOwnerReferences) WithValue

type ProbingTargetPathSelectorMetadataOwnerReferencesBlockOwnerDeletion

type ProbingTargetPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath

func (ProbingTargetPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue

type ProbingTargetPathSelectorMetadataOwnerReferencesController

type ProbingTargetPathSelectorMetadataOwnerReferencesController struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesController) FieldPath

func (ProbingTargetPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataOwnerReferencesController) WithValue

type ProbingTargetPathSelectorMetadataOwnerReferencesKind

type ProbingTargetPathSelectorMetadataOwnerReferencesKind struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesKind) FieldPath

func (ProbingTargetPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataOwnerReferencesKind) WithValue

type ProbingTargetPathSelectorMetadataOwnerReferencesName

type ProbingTargetPathSelectorMetadataOwnerReferencesName struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesName) FieldPath

func (ProbingTargetPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataOwnerReferencesName) WithValue

type ProbingTargetPathSelectorMetadataOwnerReferencesRegion added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferencesRegion struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesRegion) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesRegion) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferencesRequiresOwnerReference added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferencesVersion added in v0.7.1

type ProbingTargetPathSelectorMetadataOwnerReferencesVersion struct{}

func (ProbingTargetPathSelectorMetadataOwnerReferencesVersion) FieldPath added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues added in v0.7.1

func (ProbingTargetPathSelectorMetadataOwnerReferencesVersion) WithValue added in v0.7.1

type ProbingTargetPathSelectorMetadataResourceVersion

type ProbingTargetPathSelectorMetadataResourceVersion struct{}

func (ProbingTargetPathSelectorMetadataResourceVersion) FieldPath

func (ProbingTargetPathSelectorMetadataResourceVersion) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataResourceVersion) WithValue

type ProbingTargetPathSelectorMetadataShards

type ProbingTargetPathSelectorMetadataShards struct{}

func (ProbingTargetPathSelectorMetadataShards) FieldPath

func (ProbingTargetPathSelectorMetadataShards) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataShards) WithKey

func (ProbingTargetPathSelectorMetadataShards) WithValue

type ProbingTargetPathSelectorMetadataSyncing

type ProbingTargetPathSelectorMetadataSyncing struct{}

func (ProbingTargetPathSelectorMetadataSyncing) FieldPath

func (ProbingTargetPathSelectorMetadataSyncing) OwningRegion

func (ProbingTargetPathSelectorMetadataSyncing) Regions

func (ProbingTargetPathSelectorMetadataSyncing) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataSyncing) WithValue

type ProbingTargetPathSelectorMetadataSyncingOwningRegion

type ProbingTargetPathSelectorMetadataSyncingOwningRegion struct{}

func (ProbingTargetPathSelectorMetadataSyncingOwningRegion) FieldPath

func (ProbingTargetPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataSyncingOwningRegion) WithValue

type ProbingTargetPathSelectorMetadataSyncingRegions

type ProbingTargetPathSelectorMetadataSyncingRegions struct{}

func (ProbingTargetPathSelectorMetadataSyncingRegions) FieldPath

func (ProbingTargetPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataSyncingRegions) WithItemValue

func (ProbingTargetPathSelectorMetadataSyncingRegions) WithValue

type ProbingTargetPathSelectorMetadataTags

type ProbingTargetPathSelectorMetadataTags struct{}

func (ProbingTargetPathSelectorMetadataTags) FieldPath

func (ProbingTargetPathSelectorMetadataTags) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataTags) WithItemValue

func (ProbingTargetPathSelectorMetadataTags) WithValue

type ProbingTargetPathSelectorMetadataUpdateTime

type ProbingTargetPathSelectorMetadataUpdateTime struct{}

func (ProbingTargetPathSelectorMetadataUpdateTime) FieldPath

func (ProbingTargetPathSelectorMetadataUpdateTime) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataUpdateTime) WithValue

type ProbingTargetPathSelectorMetadataUuid

type ProbingTargetPathSelectorMetadataUuid struct{}

func (ProbingTargetPathSelectorMetadataUuid) FieldPath

func (ProbingTargetPathSelectorMetadataUuid) WithArrayOfValues

func (ProbingTargetPathSelectorMetadataUuid) WithValue

type ProbingTargetPathSelectorMode

type ProbingTargetPathSelectorMode struct{}

func (ProbingTargetPathSelectorMode) FieldPath

func (ProbingTargetPathSelectorMode) WithArrayOfValues

func (ProbingTargetPathSelectorMode) WithValue

type ProbingTargetPathSelectorName

type ProbingTargetPathSelectorName struct{}

func (ProbingTargetPathSelectorName) FieldPath

func (ProbingTargetPathSelectorName) WithArrayOfValues

func (ProbingTargetPathSelectorName) WithValue

type ProbingTargetPathSelectorProxyConfiguration added in v0.11.11

type ProbingTargetPathSelectorProxyConfiguration struct{}

func (ProbingTargetPathSelectorProxyConfiguration) FieldPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) HttpProxy added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) HttpsProxy added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) NoProxy added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) ProxySetting added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithSubArrayItemValue added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithSubArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithSubPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithSubValue added in v0.11.11

func (ProbingTargetPathSelectorProxyConfiguration) WithValue added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationHttpProxy added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationHttpProxy struct{}

func (ProbingTargetPathSelectorProxyConfigurationHttpProxy) FieldPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationHttpProxy) WithArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationHttpProxy) WithValue added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationHttpsProxy added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationHttpsProxy struct{}

func (ProbingTargetPathSelectorProxyConfigurationHttpsProxy) FieldPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationHttpsProxy) WithArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationHttpsProxy) WithValue added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationNoProxy added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationNoProxy struct{}

func (ProbingTargetPathSelectorProxyConfigurationNoProxy) FieldPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationNoProxy) WithArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationNoProxy) WithValue added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationProxySetting added in v0.11.11

type ProbingTargetPathSelectorProxyConfigurationProxySetting struct{}

func (ProbingTargetPathSelectorProxyConfigurationProxySetting) FieldPath added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationProxySetting) WithArrayOfValues added in v0.11.11

func (ProbingTargetPathSelectorProxyConfigurationProxySetting) WithValue added in v0.11.11

type ProbingTargetPathSelectorSpeedtestTcpPort added in v0.4.36

type ProbingTargetPathSelectorSpeedtestTcpPort struct{}

func (ProbingTargetPathSelectorSpeedtestTcpPort) FieldPath added in v0.4.36

func (ProbingTargetPathSelectorSpeedtestTcpPort) WithArrayOfValues added in v0.4.36

func (ProbingTargetPathSelectorSpeedtestTcpPort) WithValue added in v0.4.36

type ProbingTargetPathSelectorTargetType added in v0.4.26

type ProbingTargetPathSelectorTargetType struct{}

func (ProbingTargetPathSelectorTargetType) FieldPath added in v0.4.26

func (ProbingTargetPathSelectorTargetType) WithArrayOfValues added in v0.4.26

func (ProbingTargetPathSelectorTargetType) WithValue added in v0.4.26

type ProbingTargetPathSelectorUdpPort added in v0.4.36

type ProbingTargetPathSelectorUdpPort struct{}

func (ProbingTargetPathSelectorUdpPort) FieldPath added in v0.4.36

func (ProbingTargetPathSelectorUdpPort) WithArrayOfValues added in v0.4.36

func (ProbingTargetPathSelectorUdpPort) WithValue added in v0.4.36

type ProbingTargetReferenceList

type ProbingTargetReferenceList []*Reference

func (ProbingTargetReferenceList) Append

func (ProbingTargetReferenceList) AppendList

func (ProbingTargetReferenceList) At

func (ProbingTargetReferenceList) Length

func (l ProbingTargetReferenceList) Length() int

func (ProbingTargetReferenceList) Set

func (ProbingTargetReferenceList) Slice

type ProbingTarget_FieldMask

type ProbingTarget_FieldMask struct {
	Paths []ProbingTarget_FieldPath
}

func FullProbingTarget_FieldMask

func FullProbingTarget_FieldMask() *ProbingTarget_FieldMask

func ResourceViewFieldMask

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

func (*ProbingTarget_FieldMask) AppendPath

func (fieldMask *ProbingTarget_FieldMask) AppendPath(path ProbingTarget_FieldPath)

func (*ProbingTarget_FieldMask) AppendRawPath

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

func (*ProbingTarget_FieldMask) DecodeFirestore

func (fieldMask *ProbingTarget_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error

func (*ProbingTarget_FieldMask) EncodeFirestore

func (fieldMask *ProbingTarget_FieldMask) EncodeFirestore() (*firestorepb.Value, error)

firestore encoding/decoding integration

func (*ProbingTarget_FieldMask) FilterInputFields

func (fieldMask *ProbingTarget_FieldMask) FilterInputFields() *ProbingTarget_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingTarget_FieldMask) FromProtoFieldMask

func (fieldMask *ProbingTarget_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error

func (*ProbingTarget_FieldMask) GetPaths

func (fieldMask *ProbingTarget_FieldMask) GetPaths() []ProbingTarget_FieldPath

func (*ProbingTarget_FieldMask) GetRawPaths

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

func (*ProbingTarget_FieldMask) IsFull

func (fieldMask *ProbingTarget_FieldMask) IsFull() bool

func (ProbingTarget_FieldMask) Marshal

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

implement methods required by customType

func (ProbingTarget_FieldMask) MarshalJSON

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

func (*ProbingTarget_FieldMask) PathsCount

func (fieldMask *ProbingTarget_FieldMask) PathsCount() int

func (*ProbingTarget_FieldMask) Project

func (fieldMask *ProbingTarget_FieldMask) Project(source *ProbingTarget) *ProbingTarget

func (*ProbingTarget_FieldMask) ProjectRaw

func (*ProbingTarget_FieldMask) ProtoMessage

func (fieldMask *ProbingTarget_FieldMask) ProtoMessage()

func (*ProbingTarget_FieldMask) ProtoReflect

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

func (*ProbingTarget_FieldMask) Reset

func (fieldMask *ProbingTarget_FieldMask) Reset()

func (*ProbingTarget_FieldMask) Set

func (fieldMask *ProbingTarget_FieldMask) Set(target, source *ProbingTarget)

func (*ProbingTarget_FieldMask) SetFromCliFlag

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

func (*ProbingTarget_FieldMask) SetRaw

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

func (*ProbingTarget_FieldMask) Size

func (fieldMask *ProbingTarget_FieldMask) Size() int

func (*ProbingTarget_FieldMask) String

func (fieldMask *ProbingTarget_FieldMask) String() string

func (*ProbingTarget_FieldMask) Subtract

func (*ProbingTarget_FieldMask) SubtractRaw

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

func (*ProbingTarget_FieldMask) ToProtoFieldMask

func (fieldMask *ProbingTarget_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask

ToFieldMask is used for proto conversions

func (*ProbingTarget_FieldMask) Unmarshal

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

func (*ProbingTarget_FieldMask) UnmarshalJSON

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

type ProbingTarget_FieldPath

type ProbingTarget_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingTarget_FieldPathSelector
	Get(source *ProbingTarget) []interface{}
	GetSingle(source *ProbingTarget) (interface{}, bool)
	ClearValue(item *ProbingTarget)

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

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

func MustParseProbingTarget_FieldPath

func MustParseProbingTarget_FieldPath(rawField string) ProbingTarget_FieldPath

func ParseProbingTarget_FieldPath

func ParseProbingTarget_FieldPath(rawField string) (ProbingTarget_FieldPath, error)

type ProbingTarget_FieldPathArrayItemValue

type ProbingTarget_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingTarget_FieldPath
	ContainsValue(*ProbingTarget) bool
}

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

func MustParseProbingTarget_FieldPathArrayItemValue

func MustParseProbingTarget_FieldPathArrayItemValue(pathStr, valueStr string) ProbingTarget_FieldPathArrayItemValue

func ParseProbingTarget_FieldPathArrayItemValue

func ParseProbingTarget_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingTarget_FieldPathArrayItemValue, error)

ParseProbingTarget_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingTarget_FieldPathArrayOfValues

type ProbingTarget_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingTarget_FieldPath
}

ProbingTarget_FieldPathArrayOfValues allows storing slice of values for ProbingTarget fields according to their type

func MustParseProbingTarget_FieldPathArrayOfValues

func MustParseProbingTarget_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingTarget_FieldPathArrayOfValues

func ParseProbingTarget_FieldPathArrayOfValues

func ParseProbingTarget_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingTarget_FieldPathArrayOfValues, error)

type ProbingTarget_FieldPathSelector

type ProbingTarget_FieldPathSelector int32
const (
	ProbingTarget_FieldPathSelectorName               ProbingTarget_FieldPathSelector = 0
	ProbingTarget_FieldPathSelectorDisplayName        ProbingTarget_FieldPathSelector = 1
	ProbingTarget_FieldPathSelectorMetadata           ProbingTarget_FieldPathSelector = 2
	ProbingTarget_FieldPathSelectorGroup              ProbingTarget_FieldPathSelector = 3
	ProbingTarget_FieldPathSelectorGroupName          ProbingTarget_FieldPathSelector = 4
	ProbingTarget_FieldPathSelectorMode               ProbingTarget_FieldPathSelector = 5
	ProbingTarget_FieldPathSelectorIpVersion          ProbingTarget_FieldPathSelector = 6
	ProbingTarget_FieldPathSelectorAddress            ProbingTarget_FieldPathSelector = 7
	ProbingTarget_FieldPathSelectorCategory           ProbingTarget_FieldPathSelector = 8
	ProbingTarget_FieldPathSelectorLocationType       ProbingTarget_FieldPathSelector = 9
	ProbingTarget_FieldPathSelectorLocation           ProbingTarget_FieldPathSelector = 10
	ProbingTarget_FieldPathSelectorHttpProbingConfig  ProbingTarget_FieldPathSelector = 11
	ProbingTarget_FieldPathSelectorProxyConfiguration ProbingTarget_FieldPathSelector = 12
	ProbingTarget_FieldPathSelectorAgent              ProbingTarget_FieldPathSelector = 13
	ProbingTarget_FieldPathSelectorAddresses          ProbingTarget_FieldPathSelector = 14
	ProbingTarget_FieldPathSelectorTargetType         ProbingTarget_FieldPathSelector = 15
	ProbingTarget_FieldPathSelectorUdpPort            ProbingTarget_FieldPathSelector = 16
	ProbingTarget_FieldPathSelectorSpeedtestTcpPort   ProbingTarget_FieldPathSelector = 17
)

func (ProbingTarget_FieldPathSelector) String

type ProbingTarget_FieldPathValue

type ProbingTarget_FieldPathValue interface {
	ProbingTarget_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingTarget)
	CompareWith(*ProbingTarget) (cmp int, comparable bool)
}

ProbingTarget_FieldPathValue allows storing values for ProbingTarget fields according to their type

func MustParseProbingTarget_FieldPathValue

func MustParseProbingTarget_FieldPathValue(pathStr, valueStr string) ProbingTarget_FieldPathValue

func ParseProbingTarget_FieldPathValue

func ParseProbingTarget_FieldPathValue(pathStr, valueStr string) (ProbingTarget_FieldPathValue, error)

type ProbingTarget_FieldSubPath

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

func (*ProbingTarget_FieldSubPath) AsHttpProbingConfigSubPath

func (fps *ProbingTarget_FieldSubPath) AsHttpProbingConfigSubPath() (common.HTTPProbingConfig_FieldPath, bool)

func (*ProbingTarget_FieldSubPath) AsLocationSubPath

func (fps *ProbingTarget_FieldSubPath) AsLocationSubPath() (common.Location_FieldPath, bool)

func (*ProbingTarget_FieldSubPath) AsMetadataSubPath

func (fps *ProbingTarget_FieldSubPath) AsMetadataSubPath() (ntt_meta.Meta_FieldPath, bool)

func (*ProbingTarget_FieldSubPath) AsProxyConfigurationSubPath added in v0.11.11

func (fps *ProbingTarget_FieldSubPath) AsProxyConfigurationSubPath() (common.ProxyConfiguration_FieldPath, bool)

func (*ProbingTarget_FieldSubPath) ClearValue

func (fps *ProbingTarget_FieldSubPath) ClearValue(item *ProbingTarget)

func (*ProbingTarget_FieldSubPath) ClearValueRaw

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

func (*ProbingTarget_FieldSubPath) Get

func (fps *ProbingTarget_FieldSubPath) Get(source *ProbingTarget) (values []interface{})

Get returns all values pointed by selected field from source ProbingTarget

func (*ProbingTarget_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingTarget_FieldSubPath) GetRaw

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

func (*ProbingTarget_FieldSubPath) GetSingle

func (fps *ProbingTarget_FieldSubPath) GetSingle(source *ProbingTarget) (interface{}, bool)

GetSingle returns value of selected field from source ProbingTarget

func (*ProbingTarget_FieldSubPath) GetSingleRaw

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

func (*ProbingTarget_FieldSubPath) IsLeaf

func (fps *ProbingTarget_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingTarget_FieldSubPath) JSONString

func (fps *ProbingTarget_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingTarget_FieldSubPath) Selector

func (*ProbingTarget_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingTarget_FieldSubPath) String

func (fps *ProbingTarget_FieldSubPath) String() string

String returns path representation in proto convention

func (*ProbingTarget_FieldSubPath) WithIArrayItemValue

func (fps *ProbingTarget_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingTarget_FieldPathArrayItemValue

func (*ProbingTarget_FieldSubPath) WithIArrayOfValues

func (fps *ProbingTarget_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingTarget_FieldPathArrayOfValues

func (*ProbingTarget_FieldSubPath) WithIValue

func (fps *ProbingTarget_FieldSubPath) WithIValue(value interface{}) ProbingTarget_FieldPathValue

func (*ProbingTarget_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingTarget_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingTarget_FieldSubPath) WithRawIValue

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

type ProbingTarget_FieldSubPathArrayItemValue

type ProbingTarget_FieldSubPathArrayItemValue struct {
	ProbingTarget_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldSubPathArrayItemValue) AsHttpProbingConfigPathItemValue

func (*ProbingTarget_FieldSubPathArrayItemValue) AsLocationPathItemValue

func (*ProbingTarget_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*ProbingTarget_FieldSubPathArrayItemValue) AsProxyConfigurationPathItemValue added in v0.11.11

func (*ProbingTarget_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *ProbingTarget_FieldSubPathArrayItemValue) ContainsValue(source *ProbingTarget) bool

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

func (*ProbingTarget_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingTarget_FieldSubPathArrayOfValues

type ProbingTarget_FieldSubPathArrayOfValues struct {
	ProbingTarget_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldSubPathArrayOfValues) AsHttpProbingConfigPathArrayOfValues

func (fpsaov *ProbingTarget_FieldSubPathArrayOfValues) AsHttpProbingConfigPathArrayOfValues() (common.HTTPProbingConfig_FieldPathArrayOfValues, bool)

func (*ProbingTarget_FieldSubPathArrayOfValues) AsLocationPathArrayOfValues

func (*ProbingTarget_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (fpsaov *ProbingTarget_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (ntt_meta.Meta_FieldPathArrayOfValues, bool)

func (*ProbingTarget_FieldSubPathArrayOfValues) AsProxyConfigurationPathArrayOfValues added in v0.11.11

func (fpsaov *ProbingTarget_FieldSubPathArrayOfValues) AsProxyConfigurationPathArrayOfValues() (common.ProxyConfiguration_FieldPathArrayOfValues, bool)

func (*ProbingTarget_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingTarget_FieldSubPathValue

type ProbingTarget_FieldSubPathValue struct {
	ProbingTarget_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldSubPathValue) AsHttpProbingConfigPathValue

func (fpvs *ProbingTarget_FieldSubPathValue) AsHttpProbingConfigPathValue() (common.HTTPProbingConfig_FieldPathValue, bool)

func (*ProbingTarget_FieldSubPathValue) AsLocationPathValue

func (fpvs *ProbingTarget_FieldSubPathValue) AsLocationPathValue() (common.Location_FieldPathValue, bool)

func (*ProbingTarget_FieldSubPathValue) AsMetadataPathValue

func (fpvs *ProbingTarget_FieldSubPathValue) AsMetadataPathValue() (ntt_meta.Meta_FieldPathValue, bool)

func (*ProbingTarget_FieldSubPathValue) AsProxyConfigurationPathValue added in v0.11.11

func (fpvs *ProbingTarget_FieldSubPathValue) AsProxyConfigurationPathValue() (common.ProxyConfiguration_FieldPathValue, bool)

func (*ProbingTarget_FieldSubPathValue) CompareWith

func (fpvs *ProbingTarget_FieldSubPathValue) CompareWith(source *ProbingTarget) (int, bool)

func (*ProbingTarget_FieldSubPathValue) CompareWithRaw

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

func (*ProbingTarget_FieldSubPathValue) GetRawValue

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

func (*ProbingTarget_FieldSubPathValue) SetTo

func (fpvs *ProbingTarget_FieldSubPathValue) SetTo(target **ProbingTarget)

func (*ProbingTarget_FieldSubPathValue) SetToRaw

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

type ProbingTarget_FieldTerminalPath

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

func (*ProbingTarget_FieldTerminalPath) ClearValue

func (fp *ProbingTarget_FieldTerminalPath) ClearValue(item *ProbingTarget)

func (*ProbingTarget_FieldTerminalPath) ClearValueRaw

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

func (*ProbingTarget_FieldTerminalPath) Get

func (fp *ProbingTarget_FieldTerminalPath) Get(source *ProbingTarget) (values []interface{})

Get returns all values pointed by specific field from source ProbingTarget

func (*ProbingTarget_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingTarget_FieldTerminalPath) GetRaw

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

func (*ProbingTarget_FieldTerminalPath) GetSingle

func (fp *ProbingTarget_FieldTerminalPath) GetSingle(source *ProbingTarget) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingTarget

func (*ProbingTarget_FieldTerminalPath) GetSingleRaw

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

func (*ProbingTarget_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingTarget_FieldTerminalPath) JSONString

func (fp *ProbingTarget_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingTarget_FieldTerminalPath) Selector

func (*ProbingTarget_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingTarget_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingTarget_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingTarget_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingTarget_FieldPathArrayItemValue

func (*ProbingTarget_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingTarget_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingTarget_FieldPathArrayOfValues

func (*ProbingTarget_FieldTerminalPath) WithIValue

func (fp *ProbingTarget_FieldTerminalPath) WithIValue(value interface{}) ProbingTarget_FieldPathValue

func (*ProbingTarget_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingTarget_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingTarget_FieldTerminalPath) WithRawIValue

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

type ProbingTarget_FieldTerminalPathArrayItemValue

type ProbingTarget_FieldTerminalPathArrayItemValue struct {
	ProbingTarget_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldTerminalPathArrayItemValue) AsAddressesItemValue

func (fpaiv *ProbingTarget_FieldTerminalPathArrayItemValue) AsAddressesItemValue() (string, bool)

func (*ProbingTarget_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingTarget_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingTarget_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingTarget_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingTarget) (interface{}, bool)

func (*ProbingTarget_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingTarget_FieldTerminalPathArrayOfValues

type ProbingTarget_FieldTerminalPathArrayOfValues struct {
	ProbingTarget_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsAddressArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsAddressArrayOfValues() ([]string, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsAddressesArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsAddressesArrayOfValues() ([][]string, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsAgentArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsAgentArrayOfValues() ([]*probe.Reference, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsCategoryArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsCategoryArrayOfValues() ([]string, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

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

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsGroupArrayOfValues

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsGroupNameArrayOfValues added in v0.10.6

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsGroupNameArrayOfValues() ([]string, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsHttpProbingConfigArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsHttpProbingConfigArrayOfValues() ([]*common.HTTPProbingConfig, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsIpVersionArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsIpVersionArrayOfValues() ([]common.IpVersion, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsLocationArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsLocationArrayOfValues() ([]*common.Location, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsLocationTypeArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsLocationTypeArrayOfValues() ([]common.LocationType, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*ntt_meta.Meta, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsModeArrayOfValues

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsModeArrayOfValues() ([]common.ProbingMode, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsProxyConfigurationArrayOfValues added in v0.11.11

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsProxyConfigurationArrayOfValues() ([]*common.ProxyConfiguration, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsSpeedtestTcpPortArrayOfValues added in v0.4.36

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsSpeedtestTcpPortArrayOfValues() ([]int32, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsTargetTypeArrayOfValues added in v0.4.26

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsTargetTypeArrayOfValues() ([]ProbingTarget_TargetType, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) AsUdpPortArrayOfValues added in v0.4.36

func (fpaov *ProbingTarget_FieldTerminalPathArrayOfValues) AsUdpPortArrayOfValues() ([]int32, bool)

func (*ProbingTarget_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingTarget_FieldTerminalPathValue

type ProbingTarget_FieldTerminalPathValue struct {
	ProbingTarget_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTarget_FieldTerminalPathValue) AsAddressValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsAddressValue() (string, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsAddressesValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsAddressesValue() ([]string, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsAgentValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsAgentValue() (*probe.Reference, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsCategoryValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsCategoryValue() (string, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsDisplayNameValue

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

func (*ProbingTarget_FieldTerminalPathValue) AsGroupNameValue added in v0.10.6

func (fpv *ProbingTarget_FieldTerminalPathValue) AsGroupNameValue() (string, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsGroupValue

func (*ProbingTarget_FieldTerminalPathValue) AsHttpProbingConfigValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsHttpProbingConfigValue() (*common.HTTPProbingConfig, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsIpVersionValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsIpVersionValue() (common.IpVersion, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsLocationTypeValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsLocationTypeValue() (common.LocationType, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsLocationValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsLocationValue() (*common.Location, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsMetadataValue

func (fpv *ProbingTarget_FieldTerminalPathValue) AsMetadataValue() (*ntt_meta.Meta, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsModeValue

func (*ProbingTarget_FieldTerminalPathValue) AsNameValue

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

func (*ProbingTarget_FieldTerminalPathValue) AsProxyConfigurationValue added in v0.11.11

func (fpv *ProbingTarget_FieldTerminalPathValue) AsProxyConfigurationValue() (*common.ProxyConfiguration, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsSpeedtestTcpPortValue added in v0.4.36

func (fpv *ProbingTarget_FieldTerminalPathValue) AsSpeedtestTcpPortValue() (int32, bool)

func (*ProbingTarget_FieldTerminalPathValue) AsTargetTypeValue added in v0.4.26

func (*ProbingTarget_FieldTerminalPathValue) AsUdpPortValue added in v0.4.36

func (fpv *ProbingTarget_FieldTerminalPathValue) AsUdpPortValue() (int32, bool)

func (*ProbingTarget_FieldTerminalPathValue) CompareWith

func (fpv *ProbingTarget_FieldTerminalPathValue) CompareWith(source *ProbingTarget) (int, bool)

CompareWith compares value in the 'ProbingTarget_FieldTerminalPathValue' with the value under path in 'ProbingTarget'.

func (*ProbingTarget_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingTarget_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingTarget_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ProbingTarget

func (*ProbingTarget_FieldTerminalPathValue) SetToRaw

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

type ProbingTarget_TargetType added in v0.4.26

type ProbingTarget_TargetType int32
const (
	ProbingTarget_UNMANAGED_TARGET ProbingTarget_TargetType = 0
	ProbingTarget_MANAGED_TARGET   ProbingTarget_TargetType = 1
)

func (ProbingTarget_TargetType) Descriptor added in v0.4.26

func (ProbingTarget_TargetType) Enum added in v0.4.26

func (ProbingTarget_TargetType) EnumDescriptor added in v0.4.26

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

Deprecated, Use ProbingTarget_TargetType.ProtoReflect.Descriptor instead.

func (ProbingTarget_TargetType) Number added in v0.4.26

func (ProbingTarget_TargetType) String added in v0.4.26

func (x ProbingTarget_TargetType) String() string

func (ProbingTarget_TargetType) Type added in v0.4.26

type QueryResultChange

type QueryResultChange struct {
	Changes        []*ProbingTargetChange
	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 {
	ProbingTargets    []*ProbingTarget
	PrevPageCursor    *PagerCursor
	NextPageCursor    *PagerCursor
	TotalResultsCount int32
	CurrentOffset     int32
}

func (*QueryResultSnapshot) GetNextPageCursor

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

func (*QueryResultSnapshot) GetPagingInfo added in v0.8.3

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 added in v0.8.3

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, probingTarget *ProbingTarget) (*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 added in v0.7.1

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

func (*Reference) GetIUnderlyingParentName added in v0.7.1

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

func (*Reference) GetIdParts

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

func (*Reference) GetPattern

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

func (*Reference) GetProbingTarget

func (ref *Reference) GetProbingTarget() *ProbingTarget

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 *ProbingTarget)

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 added in v0.8.3

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 added in v0.7.13

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 added in v0.7.13

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

func (*WatchQuery) SetWatchType

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

func (*WatchQuery) String added in v0.4.26

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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