probing_config

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: 61 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NamePattern_Project_Region = "projects/{project}/regions/{region}/probingConfigs/{probing_config}"
)

Variables

This section is empty.

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access ProbingConfigAccess) 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 *ProbingConfig) 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 []*ProbingConfig) (out []*ProbingConfig)

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 ProbingConfig_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 *ProbingConfig) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	ProbingConfig_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

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

func (*FilterConditionContains) EvaluateRaw

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

func (*FilterConditionContains) GetFieldPath

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

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *ProbingConfig) 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 ProbingConfig_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 ProbingConfig_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *ProbingConfig) 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 ProbingConfig_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 ProbingConfig_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *ProbingConfig) 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 ProbingConfig_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 *ProbingConfig) 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 ProbingConfig_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 {
	ProbingConfig_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *ProbingConfig) 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 ProbingConfig_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      *ProbingConfig_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           *ProbingConfig_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
	ProbingConfigId string `firestore:"probingConfigId"`
}

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

func (*NameBuilder) SetRegionId

func (b *NameBuilder) SetRegionId(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 *ProbingConfig) int

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *ProbingConfig_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 ProbingConfigList, elem *ProbingConfig) (ProbingConfigList, 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 ProbingConfigList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

type OrderByField struct {
	FieldPath ProbingConfig_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 *ProbingConfig) 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"`
	RegionId  string `firestore:"regionId"`
}

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 ProbingConfig

type ProbingConfig struct {

	// Name of ProbingConfig
	// 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 of ProbingConfig
	DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	// metadata describes additional information of the probing config.
	Metadata *ntt_meta.Meta `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// spec describes the to-be state of the probing config.
	Spec *ProbingConfig_Spec `protobuf:"bytes,3,opt,name=spec,proto3" json:"spec,omitempty" firestore:"spec"`
	// status shows the current status of the probing config.
	Status *ProbingConfig_Status `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty" firestore:"status"`
	// contains filtered or unexported fields
}

ProbingConfig Resource

func (*ProbingConfig) Clone

func (o *ProbingConfig) Clone() *ProbingConfig

func (*ProbingConfig) CloneRaw

func (*ProbingConfig) Descriptor

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

Deprecated, Use ProbingConfig.ProtoReflect.Descriptor instead.

func (*ProbingConfig) GetDisplayName

func (m *ProbingConfig) GetDisplayName() string

func (*ProbingConfig) GetMetadata

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

func (*ProbingConfig) GetName

func (m *ProbingConfig) GetName() *Name

func (*ProbingConfig) GetRawName

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

func (*ProbingConfig) GetResourceDescriptor

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

func (*ProbingConfig) GetSpec

func (m *ProbingConfig) GetSpec() *ProbingConfig_Spec

func (*ProbingConfig) GetStatus

func (m *ProbingConfig) GetStatus() *ProbingConfig_Status

func (*ProbingConfig) GotenMessage

func (*ProbingConfig) GotenMessage()

func (*ProbingConfig) GotenObjectExt

func (o *ProbingConfig) GotenObjectExt()

func (*ProbingConfig) GotenValidate

func (obj *ProbingConfig) GotenValidate() error

func (*ProbingConfig) MakeDiffFieldMask

func (o *ProbingConfig) MakeDiffFieldMask(other *ProbingConfig) *ProbingConfig_FieldMask

func (*ProbingConfig) MakeFullFieldMask

func (o *ProbingConfig) MakeFullFieldMask() *ProbingConfig_FieldMask

func (*ProbingConfig) MakeRawDiffFieldMask

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

func (*ProbingConfig) MakeRawFullFieldMask

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

func (*ProbingConfig) Marshal

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

func (*ProbingConfig) MarshalJSON

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

func (*ProbingConfig) MaybePopulateDefaults

func (r *ProbingConfig) MaybePopulateDefaults() error

func (*ProbingConfig) Merge

func (o *ProbingConfig) Merge(source *ProbingConfig)

func (*ProbingConfig) MergeRaw

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

func (*ProbingConfig) ProtoMessage

func (*ProbingConfig) ProtoMessage()

func (*ProbingConfig) ProtoReflect

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

func (*ProbingConfig) Reset

func (m *ProbingConfig) Reset()

func (*ProbingConfig) SetDisplayName

func (m *ProbingConfig) SetDisplayName(fv string)

func (*ProbingConfig) SetMetadata

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

func (*ProbingConfig) SetName

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

func (*ProbingConfig) SetSpec

func (m *ProbingConfig) SetSpec(fv *ProbingConfig_Spec)

func (*ProbingConfig) SetStatus

func (m *ProbingConfig) SetStatus(fv *ProbingConfig_Status)

func (*ProbingConfig) String

func (m *ProbingConfig) String() string

func (*ProbingConfig) Unmarshal

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

func (*ProbingConfig) UnmarshalJSON

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

type ProbingConfigAccess

type ProbingConfigAccess interface {
	GetProbingConfig(context.Context, *GetQuery) (*ProbingConfig, error)
	BatchGetProbingConfigs(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryProbingConfigs(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchProbingConfig(context.Context, *GetQuery, func(*ProbingConfigChange) error) error
	WatchProbingConfigs(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveProbingConfig(context.Context, *ProbingConfig, ...gotenresource.SaveOption) error
	DeleteProbingConfig(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type ProbingConfigChange

type ProbingConfigChange struct {

	// ProbingConfig change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*ProbingConfigChange_Added_
	//	*ProbingConfigChange_Modified_
	//	*ProbingConfigChange_Current_
	//	*ProbingConfigChange_Removed_
	ChangeType isProbingConfigChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*ProbingConfigChange) Descriptor

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

Deprecated, Use ProbingConfigChange.ProtoReflect.Descriptor instead.

func (*ProbingConfigChange) GetAdded

func (*ProbingConfigChange) GetChangeType

func (m *ProbingConfigChange) GetChangeType() isProbingConfigChange_ChangeType

func (*ProbingConfigChange) GetCurrent

func (*ProbingConfigChange) GetCurrentViewIndex

func (c *ProbingConfigChange) GetCurrentViewIndex() int32

func (*ProbingConfigChange) GetModified

func (*ProbingConfigChange) GetPreviousViewIndex

func (c *ProbingConfigChange) GetPreviousViewIndex() int32

func (*ProbingConfigChange) GetProbingConfig

func (c *ProbingConfigChange) GetProbingConfig() *ProbingConfig

func (*ProbingConfigChange) GetProbingConfigName

func (c *ProbingConfigChange) GetProbingConfigName() *Name

func (*ProbingConfigChange) GetRawName

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

func (*ProbingConfigChange) GetRawResource added in v0.5.1

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

func (*ProbingConfigChange) GetRemoved

func (*ProbingConfigChange) GotenMessage

func (*ProbingConfigChange) GotenMessage()

func (*ProbingConfigChange) GotenValidate

func (obj *ProbingConfigChange) GotenValidate() error

func (*ProbingConfigChange) IsAdd

func (c *ProbingConfigChange) IsAdd() bool

func (*ProbingConfigChange) IsCurrent

func (c *ProbingConfigChange) IsCurrent() bool

func (*ProbingConfigChange) IsDelete

func (c *ProbingConfigChange) IsDelete() bool

func (*ProbingConfigChange) IsModify

func (c *ProbingConfigChange) IsModify() bool

func (*ProbingConfigChange) Marshal

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

func (*ProbingConfigChange) MarshalJSON

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

func (*ProbingConfigChange) ProtoMessage

func (*ProbingConfigChange) ProtoMessage()

func (*ProbingConfigChange) ProtoReflect

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

func (*ProbingConfigChange) Reset

func (m *ProbingConfigChange) Reset()

func (*ProbingConfigChange) SetAdded

func (*ProbingConfigChange) SetAddedRaw

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

func (*ProbingConfigChange) SetChangeType

func (m *ProbingConfigChange) SetChangeType(ofv isProbingConfigChange_ChangeType)

func (*ProbingConfigChange) SetCurrent

func (*ProbingConfigChange) SetCurrentRaw

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

func (*ProbingConfigChange) SetDeletedRaw

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

func (*ProbingConfigChange) SetModified

func (*ProbingConfigChange) SetModifiedRaw

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

func (*ProbingConfigChange) SetRemoved

func (*ProbingConfigChange) String

func (m *ProbingConfigChange) String() string

func (*ProbingConfigChange) Unmarshal

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

func (*ProbingConfigChange) UnmarshalJSON

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

type ProbingConfigChangeList

type ProbingConfigChangeList []*ProbingConfigChange

func (ProbingConfigChangeList) Append

func (ProbingConfigChangeList) AppendList

func (ProbingConfigChangeList) At

func (ProbingConfigChangeList) Length

func (l ProbingConfigChangeList) Length() int

func (ProbingConfigChangeList) Set

func (ProbingConfigChangeList) Slice

type ProbingConfigChangeMap

type ProbingConfigChangeMap map[Name]*ProbingConfigChange

func (ProbingConfigChangeMap) Delete

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

func (ProbingConfigChangeMap) ForEach

func (ProbingConfigChangeMap) Get

func (ProbingConfigChangeMap) Length

func (m ProbingConfigChangeMap) Length() int

func (ProbingConfigChangeMap) Set

type ProbingConfigChange_Added

type ProbingConfigChange_Added struct {
	ProbingConfig *ProbingConfig `` /* 126-byte string literal not displayed */
	// Integer describing index of added ProbingConfig 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
}

ProbingConfig has been added to query view

func (*ProbingConfigChange_Added) Descriptor

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

Deprecated, Use ProbingConfigChange_Added.ProtoReflect.Descriptor instead.

func (*ProbingConfigChange_Added) GetProbingConfig

func (m *ProbingConfigChange_Added) GetProbingConfig() *ProbingConfig

func (*ProbingConfigChange_Added) GetViewIndex

func (m *ProbingConfigChange_Added) GetViewIndex() int32

func (*ProbingConfigChange_Added) GotenMessage

func (*ProbingConfigChange_Added) GotenMessage()

func (*ProbingConfigChange_Added) GotenValidate

func (obj *ProbingConfigChange_Added) GotenValidate() error

func (*ProbingConfigChange_Added) Marshal

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

func (*ProbingConfigChange_Added) MarshalJSON

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

func (*ProbingConfigChange_Added) ProtoMessage

func (*ProbingConfigChange_Added) ProtoMessage()

func (*ProbingConfigChange_Added) ProtoReflect

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

func (*ProbingConfigChange_Added) Reset

func (m *ProbingConfigChange_Added) Reset()

func (*ProbingConfigChange_Added) SetProbingConfig

func (m *ProbingConfigChange_Added) SetProbingConfig(fv *ProbingConfig)

func (*ProbingConfigChange_Added) SetViewIndex

func (m *ProbingConfigChange_Added) SetViewIndex(fv int32)

func (*ProbingConfigChange_Added) String

func (m *ProbingConfigChange_Added) String() string

func (*ProbingConfigChange_Added) Unmarshal

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

func (*ProbingConfigChange_Added) UnmarshalJSON

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

type ProbingConfigChange_Added_

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

type ProbingConfigChange_Current

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

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

func (*ProbingConfigChange_Current) Descriptor

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

Deprecated, Use ProbingConfigChange_Current.ProtoReflect.Descriptor instead.

func (*ProbingConfigChange_Current) GetProbingConfig

func (m *ProbingConfigChange_Current) GetProbingConfig() *ProbingConfig

func (*ProbingConfigChange_Current) GotenMessage

func (*ProbingConfigChange_Current) GotenMessage()

func (*ProbingConfigChange_Current) GotenValidate

func (obj *ProbingConfigChange_Current) GotenValidate() error

func (*ProbingConfigChange_Current) Marshal

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

func (*ProbingConfigChange_Current) MarshalJSON

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

func (*ProbingConfigChange_Current) ProtoMessage

func (*ProbingConfigChange_Current) ProtoMessage()

func (*ProbingConfigChange_Current) ProtoReflect

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

func (*ProbingConfigChange_Current) Reset

func (m *ProbingConfigChange_Current) Reset()

func (*ProbingConfigChange_Current) SetProbingConfig

func (m *ProbingConfigChange_Current) SetProbingConfig(fv *ProbingConfig)

func (*ProbingConfigChange_Current) String

func (m *ProbingConfigChange_Current) String() string

func (*ProbingConfigChange_Current) Unmarshal

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

func (*ProbingConfigChange_Current) UnmarshalJSON

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

type ProbingConfigChange_Current_

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

type ProbingConfigChange_Modified

type ProbingConfigChange_Modified struct {

	// Name of modified ProbingConfig
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// New version of ProbingConfig or masked difference, depending on
	// mask_changes instrumentation of issued [WatchProbingConfigRequest] or
	// [WatchProbingConfigsRequest]
	ProbingConfig *ProbingConfig `` /* 126-byte string literal not displayed */
	// Used when mask_changes is set, contains field paths of modified
	// properties.
	FieldMask *ProbingConfig_FieldMask `` /* 145-byte string literal not displayed */
	// Previous view index specifies previous position of modified
	// ProbingConfig. When modification doesn't affect sorted order, value will
	// remain identical to [view_index].
	PreviousViewIndex int32 `` /* 145-byte string literal not displayed */
	// Integer specifying ProbingConfig 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
}

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

func (*ProbingConfigChange_Modified) Descriptor

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

Deprecated, Use ProbingConfigChange_Modified.ProtoReflect.Descriptor instead.

func (*ProbingConfigChange_Modified) GetFieldMask

func (*ProbingConfigChange_Modified) GetName

func (m *ProbingConfigChange_Modified) GetName() *Name

func (*ProbingConfigChange_Modified) GetPreviousViewIndex

func (m *ProbingConfigChange_Modified) GetPreviousViewIndex() int32

func (*ProbingConfigChange_Modified) GetProbingConfig

func (m *ProbingConfigChange_Modified) GetProbingConfig() *ProbingConfig

func (*ProbingConfigChange_Modified) GetViewIndex

func (m *ProbingConfigChange_Modified) GetViewIndex() int32

func (*ProbingConfigChange_Modified) GotenMessage

func (*ProbingConfigChange_Modified) GotenMessage()

func (*ProbingConfigChange_Modified) GotenValidate

func (obj *ProbingConfigChange_Modified) GotenValidate() error

func (*ProbingConfigChange_Modified) Marshal

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

func (*ProbingConfigChange_Modified) MarshalJSON

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

func (*ProbingConfigChange_Modified) ProtoMessage

func (*ProbingConfigChange_Modified) ProtoMessage()

func (*ProbingConfigChange_Modified) ProtoReflect

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

func (*ProbingConfigChange_Modified) Reset

func (m *ProbingConfigChange_Modified) Reset()

func (*ProbingConfigChange_Modified) SetFieldMask

func (*ProbingConfigChange_Modified) SetName

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

func (*ProbingConfigChange_Modified) SetPreviousViewIndex

func (m *ProbingConfigChange_Modified) SetPreviousViewIndex(fv int32)

func (*ProbingConfigChange_Modified) SetProbingConfig

func (m *ProbingConfigChange_Modified) SetProbingConfig(fv *ProbingConfig)

func (*ProbingConfigChange_Modified) SetViewIndex

func (m *ProbingConfigChange_Modified) SetViewIndex(fv int32)

func (*ProbingConfigChange_Modified) String

func (*ProbingConfigChange_Modified) Unmarshal

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

func (*ProbingConfigChange_Modified) UnmarshalJSON

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

type ProbingConfigChange_Modified_

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

type ProbingConfigChange_Removed

type ProbingConfigChange_Removed struct {
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// Integer specifying removed ProbingConfig 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 ProbingConfig is deleted or leaves Query view

func (*ProbingConfigChange_Removed) Descriptor

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

Deprecated, Use ProbingConfigChange_Removed.ProtoReflect.Descriptor instead.

func (*ProbingConfigChange_Removed) GetName

func (m *ProbingConfigChange_Removed) GetName() *Name

func (*ProbingConfigChange_Removed) GetViewIndex

func (m *ProbingConfigChange_Removed) GetViewIndex() int32

func (*ProbingConfigChange_Removed) GotenMessage

func (*ProbingConfigChange_Removed) GotenMessage()

func (*ProbingConfigChange_Removed) GotenValidate

func (obj *ProbingConfigChange_Removed) GotenValidate() error

func (*ProbingConfigChange_Removed) Marshal

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

func (*ProbingConfigChange_Removed) MarshalJSON

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

func (*ProbingConfigChange_Removed) ProtoMessage

func (*ProbingConfigChange_Removed) ProtoMessage()

func (*ProbingConfigChange_Removed) ProtoReflect

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

func (*ProbingConfigChange_Removed) Reset

func (m *ProbingConfigChange_Removed) Reset()

func (*ProbingConfigChange_Removed) SetName

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

func (*ProbingConfigChange_Removed) SetViewIndex

func (m *ProbingConfigChange_Removed) SetViewIndex(fv int32)

func (*ProbingConfigChange_Removed) String

func (m *ProbingConfigChange_Removed) String() string

func (*ProbingConfigChange_Removed) Unmarshal

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

func (*ProbingConfigChange_Removed) UnmarshalJSON

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

type ProbingConfigChange_Removed_

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

type ProbingConfigFieldPathBuilder

type ProbingConfigFieldPathBuilder struct{}

func NewProbingConfigFieldPathBuilder

func NewProbingConfigFieldPathBuilder() ProbingConfigFieldPathBuilder

func (ProbingConfigFieldPathBuilder) DisplayName

func (ProbingConfigFieldPathBuilder) Metadata

func (ProbingConfigFieldPathBuilder) Name

func (ProbingConfigFieldPathBuilder) Spec

func (ProbingConfigFieldPathBuilder) Status

type ProbingConfigList

type ProbingConfigList []*ProbingConfig

func (ProbingConfigList) Append

func (ProbingConfigList) AppendList

func (ProbingConfigList) At

func (ProbingConfigList) Length

func (l ProbingConfigList) Length() int

func (ProbingConfigList) Set

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

func (ProbingConfigList) Slice

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

type ProbingConfigMap

type ProbingConfigMap map[Name]*ProbingConfig

func (ProbingConfigMap) Delete

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

func (ProbingConfigMap) ForEach

func (ProbingConfigMap) Get

func (ProbingConfigMap) Length

func (m ProbingConfigMap) Length() int

func (ProbingConfigMap) Set

type ProbingConfigMapPathSelectorMetadataAnnotations

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

func (ProbingConfigMapPathSelectorMetadataAnnotations) FieldPath

func (ProbingConfigMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingConfigMapPathSelectorMetadataAnnotations) WithValue

type ProbingConfigMapPathSelectorMetadataLabels

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

func (ProbingConfigMapPathSelectorMetadataLabels) FieldPath

func (ProbingConfigMapPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingConfigMapPathSelectorMetadataLabels) WithValue

type ProbingConfigMapPathSelectorMetadataShards

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

func (ProbingConfigMapPathSelectorMetadataShards) FieldPath

func (ProbingConfigMapPathSelectorMetadataShards) WithArrayOfValues

func (ProbingConfigMapPathSelectorMetadataShards) WithValue

type ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigMapPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigMapPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfigNameList

type ProbingConfigNameList []*Name

func (ProbingConfigNameList) Append

func (ProbingConfigNameList) AppendList

func (ProbingConfigNameList) At

func (ProbingConfigNameList) Length

func (l ProbingConfigNameList) Length() int

func (ProbingConfigNameList) Set

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

func (ProbingConfigNameList) Slice

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

type ProbingConfigParentNameList

type ProbingConfigParentNameList []*ParentName

func (ProbingConfigParentNameList) Append

func (ProbingConfigParentNameList) AppendList

func (ProbingConfigParentNameList) At

func (ProbingConfigParentNameList) Length

func (l ProbingConfigParentNameList) Length() int

func (ProbingConfigParentNameList) Set

func (ProbingConfigParentNameList) Slice

type ProbingConfigParentReferenceList

type ProbingConfigParentReferenceList []*ParentReference

func (ProbingConfigParentReferenceList) Append

func (ProbingConfigParentReferenceList) AppendList

func (ProbingConfigParentReferenceList) At

func (ProbingConfigParentReferenceList) Length

func (ProbingConfigParentReferenceList) Set

func (ProbingConfigParentReferenceList) Slice

type ProbingConfigPathSelectorDisplayName

type ProbingConfigPathSelectorDisplayName struct{}

func (ProbingConfigPathSelectorDisplayName) FieldPath

func (ProbingConfigPathSelectorDisplayName) WithArrayOfValues

func (ProbingConfigPathSelectorDisplayName) WithValue

type ProbingConfigPathSelectorMetadata

type ProbingConfigPathSelectorMetadata struct{}

func (ProbingConfigPathSelectorMetadata) Annotations

func (ProbingConfigPathSelectorMetadata) CreateTime

func (ProbingConfigPathSelectorMetadata) DeleteTime added in v0.7.1

func (ProbingConfigPathSelectorMetadata) FieldPath

func (ProbingConfigPathSelectorMetadata) Generation

func (ProbingConfigPathSelectorMetadata) Labels

func (ProbingConfigPathSelectorMetadata) Lifecycle added in v0.7.1

func (ProbingConfigPathSelectorMetadata) OwnerReferences

func (ProbingConfigPathSelectorMetadata) ResourceVersion

func (ProbingConfigPathSelectorMetadata) Shards

func (ProbingConfigPathSelectorMetadata) Syncing

func (ProbingConfigPathSelectorMetadata) Tags

func (ProbingConfigPathSelectorMetadata) UpdateTime

func (ProbingConfigPathSelectorMetadata) Uuid

func (ProbingConfigPathSelectorMetadata) WithArrayOfValues

func (ProbingConfigPathSelectorMetadata) WithSubArrayItemValue

func (ProbingConfigPathSelectorMetadata) WithSubArrayOfValues

func (ProbingConfigPathSelectorMetadata) WithSubPath

func (ProbingConfigPathSelectorMetadata) WithSubValue

func (ProbingConfigPathSelectorMetadata) WithValue

type ProbingConfigPathSelectorMetadataAnnotations

type ProbingConfigPathSelectorMetadataAnnotations struct{}

func (ProbingConfigPathSelectorMetadataAnnotations) FieldPath

func (ProbingConfigPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataAnnotations) WithKey

func (ProbingConfigPathSelectorMetadataAnnotations) WithValue

type ProbingConfigPathSelectorMetadataCreateTime

type ProbingConfigPathSelectorMetadataCreateTime struct{}

func (ProbingConfigPathSelectorMetadataCreateTime) FieldPath

func (ProbingConfigPathSelectorMetadataCreateTime) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataCreateTime) WithValue

type ProbingConfigPathSelectorMetadataDeleteTime added in v0.7.1

type ProbingConfigPathSelectorMetadataDeleteTime struct{}

func (ProbingConfigPathSelectorMetadataDeleteTime) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataDeleteTime) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataDeleteTime) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataGeneration

type ProbingConfigPathSelectorMetadataGeneration struct{}

func (ProbingConfigPathSelectorMetadataGeneration) FieldPath

func (ProbingConfigPathSelectorMetadataGeneration) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataGeneration) WithValue

type ProbingConfigPathSelectorMetadataLabels

type ProbingConfigPathSelectorMetadataLabels struct{}

func (ProbingConfigPathSelectorMetadataLabels) FieldPath

func (ProbingConfigPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataLabels) WithKey

func (ProbingConfigPathSelectorMetadataLabels) WithValue

type ProbingConfigPathSelectorMetadataLifecycle added in v0.7.1

type ProbingConfigPathSelectorMetadataLifecycle struct{}

func (ProbingConfigPathSelectorMetadataLifecycle) BlockDeletion added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycle) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycle) State added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycle) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycle) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataLifecycleBlockDeletion added in v0.7.1

type ProbingConfigPathSelectorMetadataLifecycleBlockDeletion struct{}

func (ProbingConfigPathSelectorMetadataLifecycleBlockDeletion) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycleBlockDeletion) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataLifecycleState added in v0.7.1

type ProbingConfigPathSelectorMetadataLifecycleState struct{}

func (ProbingConfigPathSelectorMetadataLifecycleState) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycleState) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataLifecycleState) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferences

type ProbingConfigPathSelectorMetadataOwnerReferences struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferences) Controller

func (ProbingConfigPathSelectorMetadataOwnerReferences) FieldPath

func (ProbingConfigPathSelectorMetadataOwnerReferences) Kind

func (ProbingConfigPathSelectorMetadataOwnerReferences) Name

func (ProbingConfigPathSelectorMetadataOwnerReferences) Region added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferences) RequiresOwnerReference added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferences) Version added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataOwnerReferences) WithItemValue

func (ProbingConfigPathSelectorMetadataOwnerReferences) WithValue

type ProbingConfigPathSelectorMetadataOwnerReferencesBlockOwnerDeletion

type ProbingConfigPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath

func (ProbingConfigPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue

type ProbingConfigPathSelectorMetadataOwnerReferencesController

type ProbingConfigPathSelectorMetadataOwnerReferencesController struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesController) FieldPath

func (ProbingConfigPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataOwnerReferencesController) WithValue

type ProbingConfigPathSelectorMetadataOwnerReferencesKind

type ProbingConfigPathSelectorMetadataOwnerReferencesKind struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesKind) FieldPath

func (ProbingConfigPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataOwnerReferencesKind) WithValue

type ProbingConfigPathSelectorMetadataOwnerReferencesName

type ProbingConfigPathSelectorMetadataOwnerReferencesName struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesName) FieldPath

func (ProbingConfigPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataOwnerReferencesName) WithValue

type ProbingConfigPathSelectorMetadataOwnerReferencesRegion added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferencesRegion struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesRegion) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesRegion) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferencesRequiresOwnerReference added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferencesVersion added in v0.7.1

type ProbingConfigPathSelectorMetadataOwnerReferencesVersion struct{}

func (ProbingConfigPathSelectorMetadataOwnerReferencesVersion) FieldPath added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues added in v0.7.1

func (ProbingConfigPathSelectorMetadataOwnerReferencesVersion) WithValue added in v0.7.1

type ProbingConfigPathSelectorMetadataResourceVersion

type ProbingConfigPathSelectorMetadataResourceVersion struct{}

func (ProbingConfigPathSelectorMetadataResourceVersion) FieldPath

func (ProbingConfigPathSelectorMetadataResourceVersion) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataResourceVersion) WithValue

type ProbingConfigPathSelectorMetadataShards

type ProbingConfigPathSelectorMetadataShards struct{}

func (ProbingConfigPathSelectorMetadataShards) FieldPath

func (ProbingConfigPathSelectorMetadataShards) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataShards) WithKey

func (ProbingConfigPathSelectorMetadataShards) WithValue

type ProbingConfigPathSelectorMetadataSyncing

type ProbingConfigPathSelectorMetadataSyncing struct{}

func (ProbingConfigPathSelectorMetadataSyncing) FieldPath

func (ProbingConfigPathSelectorMetadataSyncing) OwningRegion

func (ProbingConfigPathSelectorMetadataSyncing) Regions

func (ProbingConfigPathSelectorMetadataSyncing) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataSyncing) WithValue

type ProbingConfigPathSelectorMetadataSyncingOwningRegion

type ProbingConfigPathSelectorMetadataSyncingOwningRegion struct{}

func (ProbingConfigPathSelectorMetadataSyncingOwningRegion) FieldPath

func (ProbingConfigPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataSyncingOwningRegion) WithValue

type ProbingConfigPathSelectorMetadataSyncingRegions

type ProbingConfigPathSelectorMetadataSyncingRegions struct{}

func (ProbingConfigPathSelectorMetadataSyncingRegions) FieldPath

func (ProbingConfigPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataSyncingRegions) WithItemValue

func (ProbingConfigPathSelectorMetadataSyncingRegions) WithValue

type ProbingConfigPathSelectorMetadataTags

type ProbingConfigPathSelectorMetadataTags struct{}

func (ProbingConfigPathSelectorMetadataTags) FieldPath

func (ProbingConfigPathSelectorMetadataTags) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataTags) WithItemValue

func (ProbingConfigPathSelectorMetadataTags) WithValue

type ProbingConfigPathSelectorMetadataUpdateTime

type ProbingConfigPathSelectorMetadataUpdateTime struct{}

func (ProbingConfigPathSelectorMetadataUpdateTime) FieldPath

func (ProbingConfigPathSelectorMetadataUpdateTime) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataUpdateTime) WithValue

type ProbingConfigPathSelectorMetadataUuid

type ProbingConfigPathSelectorMetadataUuid struct{}

func (ProbingConfigPathSelectorMetadataUuid) FieldPath

func (ProbingConfigPathSelectorMetadataUuid) WithArrayOfValues

func (ProbingConfigPathSelectorMetadataUuid) WithValue

type ProbingConfigPathSelectorName

type ProbingConfigPathSelectorName struct{}

func (ProbingConfigPathSelectorName) FieldPath

func (ProbingConfigPathSelectorName) WithArrayOfValues

func (ProbingConfigPathSelectorName) WithValue

type ProbingConfigPathSelectorSpec

type ProbingConfigPathSelectorSpec struct{}

func (ProbingConfigPathSelectorSpec) FieldPath

func (ProbingConfigPathSelectorSpec) Probe

func (ProbingConfigPathSelectorSpec) ProbingSessions

func (ProbingConfigPathSelectorSpec) Speedtest

func (ProbingConfigPathSelectorSpec) TargetSessions

func (ProbingConfigPathSelectorSpec) WithArrayOfValues

func (ProbingConfigPathSelectorSpec) WithSubArrayItemValue

func (ProbingConfigPathSelectorSpec) WithSubArrayOfValues

func (ProbingConfigPathSelectorSpec) WithSubPath

func (ProbingConfigPathSelectorSpec) WithSubValue

func (ProbingConfigPathSelectorSpec) WithValue

type ProbingConfigPathSelectorSpecProbe

type ProbingConfigPathSelectorSpecProbe struct{}

func (ProbingConfigPathSelectorSpecProbe) FieldPath

func (ProbingConfigPathSelectorSpecProbe) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbe) WithValue

type ProbingConfigPathSelectorSpecProbingSessions

type ProbingConfigPathSelectorSpecProbingSessions struct{}

func (ProbingConfigPathSelectorSpecProbingSessions) Address

func (ProbingConfigPathSelectorSpecProbingSessions) Addresses

func (ProbingConfigPathSelectorSpecProbingSessions) Category

func (ProbingConfigPathSelectorSpecProbingSessions) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessions) GroupName

func (ProbingConfigPathSelectorSpecProbingSessions) HttpProbingConfig

func (ProbingConfigPathSelectorSpecProbingSessions) Interval

func (ProbingConfigPathSelectorSpecProbingSessions) IntervalSec

func (ProbingConfigPathSelectorSpecProbingSessions) IpVersion

func (ProbingConfigPathSelectorSpecProbingSessions) Location

func (ProbingConfigPathSelectorSpecProbingSessions) LocationType

func (ProbingConfigPathSelectorSpecProbingSessions) Mode

func (ProbingConfigPathSelectorSpecProbingSessions) PathProbing

func (ProbingConfigPathSelectorSpecProbingSessions) ProxyConfiguration

func (ProbingConfigPathSelectorSpecProbingSessions) SpeedtestSettings added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessions) Target

func (ProbingConfigPathSelectorSpecProbingSessions) TargetDisplayName

func (ProbingConfigPathSelectorSpecProbingSessions) TargetGroup

func (ProbingConfigPathSelectorSpecProbingSessions) Tos

func (ProbingConfigPathSelectorSpecProbingSessions) WindowSize

func (ProbingConfigPathSelectorSpecProbingSessions) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessions) WithItemValue

func (ProbingConfigPathSelectorSpecProbingSessions) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsAddress

type ProbingConfigPathSelectorSpecProbingSessionsAddress struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsAddress) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsAddress) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsAddresses

type ProbingConfigPathSelectorSpecProbingSessionsAddresses struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsAddresses) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsAddresses) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsAddresses) WithItemValue

func (ProbingConfigPathSelectorSpecProbingSessionsAddresses) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsCategory

type ProbingConfigPathSelectorSpecProbingSessionsCategory struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsCategory) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsCategory) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsCategory) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsGroupName

type ProbingConfigPathSelectorSpecProbingSessionsGroupName struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsGroupName) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsGroupName) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsGroupName) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfig

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfig struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfig) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfig) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfig) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfig

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfig struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfig) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfig) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigPassword

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigPassword struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigPassword) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequest

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigUsername

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigUsername struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigAuthConfigUsername) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequest

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequest struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequest) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequest) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestBody

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestMethod

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestTimeout

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestUrl

type ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestUrl struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsHttpProbingConfigHttpRequestUrl) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsInterval

type ProbingConfigPathSelectorSpecProbingSessionsInterval struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsInterval) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsInterval) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsInterval) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsIntervalSec

type ProbingConfigPathSelectorSpecProbingSessionsIntervalSec struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsIntervalSec) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsIntervalSec) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsIntervalSec) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsIpVersion

type ProbingConfigPathSelectorSpecProbingSessionsIpVersion struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsIpVersion) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsIpVersion) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsIpVersion) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocation

type ProbingConfigPathSelectorSpecProbingSessionsLocation struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) Accuracy

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) Address

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) Coordinates

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocation) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAccuracy

type ProbingConfigPathSelectorSpecProbingSessionsLocationAccuracy struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAccuracy) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAccuracy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAccuracy) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddress

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddress struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddress) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddress) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea1

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea1 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea1) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea1) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea2

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea2 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea2) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea2) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea3

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea3 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea3) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea3) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea4

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea4 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea4) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressAdminArea4) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressContinent

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressContinent struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressContinent) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressContinent) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountry

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountry struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountry) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountry) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountryCode

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountryCode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountryCode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressCountryCode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressPostalCode

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressPostalCode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressPostalCode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressPostalCode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressStreetAddress

type ProbingConfigPathSelectorSpecProbingSessionsLocationAddressStreetAddress struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressStreetAddress) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAddressStreetAddress) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchy

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchy struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchy) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchy) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin1

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin1) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin2

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin2) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin3

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin3) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin4

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin4) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin5

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyAdmin5) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyContinent

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyContinent struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyContinent) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyContinent) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyCountry

type ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyCountry struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyCountry) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationAdminHierarchyCountry) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationCoordinates

type ProbingConfigPathSelectorSpecProbingSessionsLocationCoordinates struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationCoordinates) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationCoordinates) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationCoordinates) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsLocationType

type ProbingConfigPathSelectorSpecProbingSessionsLocationType struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsLocationType) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsLocationType) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsLocationType) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsMode

type ProbingConfigPathSelectorSpecProbingSessionsMode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsMode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsMode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsMode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbing

type ProbingConfigPathSelectorSpecProbingSessionsPathProbing struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) Attempts

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) Enabled

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) Interval

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) MaxTtl

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) Mode

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbing) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingAttempts

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingAttempts struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingAttempts) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingAttempts) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingAttempts) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingEnabled

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingEnabled struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingEnabled) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingEnabled) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingEnabled) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingInterval

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingInterval struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingInterval) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingInterval) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingInterval) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingIntervalSec

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingIntervalSec struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingIntervalSec) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingIntervalSec) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingIntervalSec) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingMaxTtl

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingMaxTtl struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMaxTtl) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMaxTtl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMaxTtl) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingMode

type ProbingConfigPathSelectorSpecProbingSessionsPathProbingMode struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMode) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsPathProbingMode) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfiguration

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfiguration struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfiguration) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfiguration) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfiguration) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpProxy

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpProxy struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpProxy) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpProxy) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpsProxy

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpsProxy struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpsProxy) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationHttpsProxy) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationNoProxy

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationNoProxy struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationNoProxy) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationNoProxy) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationProxySetting

type ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationProxySetting struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationProxySetting) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsProxyConfigurationProxySetting) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) Duration added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) ServerSelection added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) TcpPort added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettings) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsDuration added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsDuration struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsDuration) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsDuration) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsDuration) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsServerSelection added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsServerSelection struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsServerSelection) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsServerSelection) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsServerSelection) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsTcpPort added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsTcpPort struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsTcpPort) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsTcpPort) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecProbingSessionsSpeedtestSettingsTcpPort) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecProbingSessionsTarget

type ProbingConfigPathSelectorSpecProbingSessionsTarget struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsTarget) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsTarget) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsTarget) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsTargetDisplayName

type ProbingConfigPathSelectorSpecProbingSessionsTargetDisplayName struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsTargetDisplayName) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsTargetDisplayName) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsTargetDisplayName) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsTargetGroup

type ProbingConfigPathSelectorSpecProbingSessionsTargetGroup struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsTargetGroup) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsTargetGroup) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsTargetGroup) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsTos

type ProbingConfigPathSelectorSpecProbingSessionsTos struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsTos) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsTos) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsTos) WithValue

type ProbingConfigPathSelectorSpecProbingSessionsWindowSize

type ProbingConfigPathSelectorSpecProbingSessionsWindowSize struct{}

func (ProbingConfigPathSelectorSpecProbingSessionsWindowSize) FieldPath

func (ProbingConfigPathSelectorSpecProbingSessionsWindowSize) WithArrayOfValues

func (ProbingConfigPathSelectorSpecProbingSessionsWindowSize) WithValue

type ProbingConfigPathSelectorSpecSpeedtest

type ProbingConfigPathSelectorSpecSpeedtest struct{}

func (ProbingConfigPathSelectorSpecSpeedtest) Enabled

func (ProbingConfigPathSelectorSpecSpeedtest) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtest) Interval

func (ProbingConfigPathSelectorSpecSpeedtest) IntervalMinutes

func (ProbingConfigPathSelectorSpecSpeedtest) Servers

func (ProbingConfigPathSelectorSpecSpeedtest) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtest) WithValue

type ProbingConfigPathSelectorSpecSpeedtestEnabled

type ProbingConfigPathSelectorSpecSpeedtestEnabled struct{}

func (ProbingConfigPathSelectorSpecSpeedtestEnabled) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestEnabled) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestEnabled) WithValue

type ProbingConfigPathSelectorSpecSpeedtestInterval

type ProbingConfigPathSelectorSpecSpeedtestInterval struct{}

func (ProbingConfigPathSelectorSpecSpeedtestInterval) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestInterval) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestInterval) WithValue

type ProbingConfigPathSelectorSpecSpeedtestIntervalMinutes

type ProbingConfigPathSelectorSpecSpeedtestIntervalMinutes struct{}

func (ProbingConfigPathSelectorSpecSpeedtestIntervalMinutes) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestIntervalMinutes) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestIntervalMinutes) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServers

type ProbingConfigPathSelectorSpecSpeedtestServers struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServers) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServers) IpAddresses

func (ProbingConfigPathSelectorSpecSpeedtestServers) Location

func (ProbingConfigPathSelectorSpecSpeedtestServers) Name

func (ProbingConfigPathSelectorSpecSpeedtestServers) Target

func (ProbingConfigPathSelectorSpecSpeedtestServers) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServers) WithItemValue

func (ProbingConfigPathSelectorSpecSpeedtestServers) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses

type ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses) WithItemValue

func (ProbingConfigPathSelectorSpecSpeedtestServersIpAddresses) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocation

type ProbingConfigPathSelectorSpecSpeedtestServersLocation struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) Accuracy

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) Address

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) Coordinates

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocation) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAccuracy

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAccuracy struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAccuracy) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAccuracy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAccuracy) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddress

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddress struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddress) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddress) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea1

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea1 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea1) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea1) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea2

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea2 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea2) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea2) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea3

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea3 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea3) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea3) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea4

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea4 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea4) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressAdminArea4) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressContinent

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressContinent struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressContinent) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressContinent) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountry

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountry struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountry) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountry) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountryCode

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountryCode struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountryCode) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressCountryCode) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressPostalCode

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressPostalCode struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressPostalCode) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressPostalCode) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressStreetAddress

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressStreetAddress struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressStreetAddress) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAddressStreetAddress) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchy

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchy struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchy) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchy) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin1

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin1) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin2

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin2) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin3

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin3) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin4

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin4) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin5

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyAdmin5) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyContinent

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyContinent struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyContinent) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyContinent) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyCountry

type ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyCountry struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyCountry) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationAdminHierarchyCountry) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersLocationCoordinates

type ProbingConfigPathSelectorSpecSpeedtestServersLocationCoordinates struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationCoordinates) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationCoordinates) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersLocationCoordinates) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersName

type ProbingConfigPathSelectorSpecSpeedtestServersName struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersName) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersName) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersName) WithValue

type ProbingConfigPathSelectorSpecSpeedtestServersTarget

type ProbingConfigPathSelectorSpecSpeedtestServersTarget struct{}

func (ProbingConfigPathSelectorSpecSpeedtestServersTarget) FieldPath

func (ProbingConfigPathSelectorSpecSpeedtestServersTarget) WithArrayOfValues

func (ProbingConfigPathSelectorSpecSpeedtestServersTarget) WithValue

type ProbingConfigPathSelectorSpecTargetSessions

type ProbingConfigPathSelectorSpecTargetSessions struct{}

func (ProbingConfigPathSelectorSpecTargetSessions) Address

func (ProbingConfigPathSelectorSpecTargetSessions) Addresses

func (ProbingConfigPathSelectorSpecTargetSessions) Category

func (ProbingConfigPathSelectorSpecTargetSessions) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessions) GroupName

func (ProbingConfigPathSelectorSpecTargetSessions) HttpProbingConfig

func (ProbingConfigPathSelectorSpecTargetSessions) Interval

func (ProbingConfigPathSelectorSpecTargetSessions) IntervalSec

func (ProbingConfigPathSelectorSpecTargetSessions) IpVersion

func (ProbingConfigPathSelectorSpecTargetSessions) Location

func (ProbingConfigPathSelectorSpecTargetSessions) LocationType

func (ProbingConfigPathSelectorSpecTargetSessions) Mode

func (ProbingConfigPathSelectorSpecTargetSessions) PathProbing

func (ProbingConfigPathSelectorSpecTargetSessions) ProxyConfiguration

func (ProbingConfigPathSelectorSpecTargetSessions) SpeedtestSettings added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessions) Target

func (ProbingConfigPathSelectorSpecTargetSessions) TargetDisplayName

func (ProbingConfigPathSelectorSpecTargetSessions) TargetGroup

func (ProbingConfigPathSelectorSpecTargetSessions) Tos

func (ProbingConfigPathSelectorSpecTargetSessions) WindowSize

func (ProbingConfigPathSelectorSpecTargetSessions) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessions) WithItemValue

func (ProbingConfigPathSelectorSpecTargetSessions) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsAddress

type ProbingConfigPathSelectorSpecTargetSessionsAddress struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsAddress) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsAddress) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsAddresses

type ProbingConfigPathSelectorSpecTargetSessionsAddresses struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsAddresses) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsAddresses) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsAddresses) WithItemValue

func (ProbingConfigPathSelectorSpecTargetSessionsAddresses) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsCategory

type ProbingConfigPathSelectorSpecTargetSessionsCategory struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsCategory) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsCategory) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsCategory) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsGroupName

type ProbingConfigPathSelectorSpecTargetSessionsGroupName struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsGroupName) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsGroupName) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsGroupName) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfig

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfig struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfig) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfig) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfig) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfig

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfig struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfig) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfig) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigPassword

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigPassword struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigPassword) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequest

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigUsername

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigUsername struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigAuthConfigUsername) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequest

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequest struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequest) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequest) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestBody

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestMethod

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestTimeout

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestUrl

type ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestUrl struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsHttpProbingConfigHttpRequestUrl) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsInterval

type ProbingConfigPathSelectorSpecTargetSessionsInterval struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsInterval) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsInterval) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsInterval) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsIntervalSec

type ProbingConfigPathSelectorSpecTargetSessionsIntervalSec struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsIntervalSec) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsIntervalSec) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsIntervalSec) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsIpVersion

type ProbingConfigPathSelectorSpecTargetSessionsIpVersion struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsIpVersion) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsIpVersion) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsIpVersion) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocation

type ProbingConfigPathSelectorSpecTargetSessionsLocation struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) Accuracy

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) Address

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) AdminHierarchy

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) Coordinates

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocation) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAccuracy

type ProbingConfigPathSelectorSpecTargetSessionsLocationAccuracy struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAccuracy) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAccuracy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAccuracy) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddress

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddress struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddress) Country

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddress) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddress) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea1

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea1 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea1) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea1) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea2

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea2 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea2) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea2) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea3

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea3 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea3) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea3) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea4

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea4 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea4) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressAdminArea4) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressContinent

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressContinent struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressContinent) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressContinent) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountry

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountry struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountry) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountry) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountryCode

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountryCode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountryCode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressCountryCode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressPostalCode

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressPostalCode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressPostalCode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressPostalCode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressStreetAddress

type ProbingConfigPathSelectorSpecTargetSessionsLocationAddressStreetAddress struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressStreetAddress) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAddressStreetAddress) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchy

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchy struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchy) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchy) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin1

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin1) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin2

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin2) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin3

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin3) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin4

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin4) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin5

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyAdmin5) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyContinent

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyContinent struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyContinent) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyContinent) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyCountry

type ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyCountry struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyCountry) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationAdminHierarchyCountry) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationCoordinates

type ProbingConfigPathSelectorSpecTargetSessionsLocationCoordinates struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationCoordinates) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationCoordinates) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationCoordinates) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsLocationType

type ProbingConfigPathSelectorSpecTargetSessionsLocationType struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsLocationType) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsLocationType) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsLocationType) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsMode

type ProbingConfigPathSelectorSpecTargetSessionsMode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsMode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsMode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsMode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbing

type ProbingConfigPathSelectorSpecTargetSessionsPathProbing struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) Attempts

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) Enabled

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) Interval

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) IntervalSec

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) MaxTtl

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) Mode

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbing) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingAttempts

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingAttempts struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingAttempts) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingAttempts) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingAttempts) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingEnabled

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingEnabled struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingEnabled) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingEnabled) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingEnabled) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingInterval

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingInterval struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingInterval) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingInterval) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingInterval) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingIntervalSec

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingIntervalSec struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingIntervalSec) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingIntervalSec) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingIntervalSec) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingMaxTtl

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingMaxTtl struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMaxTtl) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMaxTtl) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMaxTtl) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingMode

type ProbingConfigPathSelectorSpecTargetSessionsPathProbingMode struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMode) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMode) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsPathProbingMode) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfiguration

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfiguration struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfiguration) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfiguration) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfiguration) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpProxy

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpProxy struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpProxy) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpProxy) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpsProxy

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpsProxy struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpsProxy) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationHttpsProxy) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationNoProxy

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationNoProxy struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationNoProxy) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationNoProxy) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationProxySetting

type ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationProxySetting struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationProxySetting) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsProxyConfigurationProxySetting) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) Duration added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) ServerSelection added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) TcpPort added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettings) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsDuration added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsDuration struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsDuration) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsDuration) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsDuration) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsServerSelection added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsServerSelection struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsServerSelection) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsServerSelection) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsServerSelection) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsTcpPort added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsTcpPort struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsTcpPort) FieldPath added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsTcpPort) WithArrayOfValues added in v0.4.26

func (ProbingConfigPathSelectorSpecTargetSessionsSpeedtestSettingsTcpPort) WithValue added in v0.4.26

type ProbingConfigPathSelectorSpecTargetSessionsTarget

type ProbingConfigPathSelectorSpecTargetSessionsTarget struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsTarget) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsTarget) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsTarget) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsTargetDisplayName

type ProbingConfigPathSelectorSpecTargetSessionsTargetDisplayName struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsTargetDisplayName) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsTargetDisplayName) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsTargetDisplayName) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsTargetGroup

type ProbingConfigPathSelectorSpecTargetSessionsTargetGroup struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsTargetGroup) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsTargetGroup) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsTargetGroup) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsTos

type ProbingConfigPathSelectorSpecTargetSessionsTos struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsTos) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsTos) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsTos) WithValue

type ProbingConfigPathSelectorSpecTargetSessionsWindowSize

type ProbingConfigPathSelectorSpecTargetSessionsWindowSize struct{}

func (ProbingConfigPathSelectorSpecTargetSessionsWindowSize) FieldPath

func (ProbingConfigPathSelectorSpecTargetSessionsWindowSize) WithArrayOfValues

func (ProbingConfigPathSelectorSpecTargetSessionsWindowSize) WithValue

type ProbingConfigPathSelectorStatus

type ProbingConfigPathSelectorStatus struct{}

func (ProbingConfigPathSelectorStatus) FieldPath

func (ProbingConfigPathSelectorStatus) WithArrayOfValues

func (ProbingConfigPathSelectorStatus) WithSubArrayItemValue

func (ProbingConfigPathSelectorStatus) WithSubArrayOfValues

func (ProbingConfigPathSelectorStatus) WithSubPath

func (ProbingConfigPathSelectorStatus) WithSubValue

func (ProbingConfigPathSelectorStatus) WithValue

type ProbingConfigProbingSessionFieldPathBuilder added in v0.4.27

type ProbingConfigProbingSessionFieldPathBuilder struct{}

func NewProbingConfigProbingSessionFieldPathBuilder added in v0.4.27

func NewProbingConfigProbingSessionFieldPathBuilder() ProbingConfigProbingSessionFieldPathBuilder

func (ProbingConfigProbingSessionFieldPathBuilder) Address added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Addresses added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Category added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) GroupName added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) HttpProbingConfig added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Interval added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) IntervalSec added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) IpVersion added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Location added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) LocationType added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Mode added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) PathProbing added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) ProxyConfiguration added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) SpeedtestSettings added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Target added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) TargetDisplayName added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) TargetGroup added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) Tos added in v0.4.27

func (ProbingConfigProbingSessionFieldPathBuilder) WindowSize added in v0.4.27

type ProbingConfigProbingSession_FieldPath added in v0.4.27

type ProbingConfigProbingSession_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfigProbingSession_FieldPathSelector
	Get(source *ProbingConfig_ProbingSession) []interface{}
	GetSingle(source *ProbingConfig_ProbingSession) (interface{}, bool)
	ClearValue(item *ProbingConfig_ProbingSession)

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

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

func BuildProbingConfigProbingSession_FieldPath added in v0.4.27

func BuildProbingConfigProbingSession_FieldPath(fp gotenobject.RawFieldPath) (ProbingConfigProbingSession_FieldPath, error)

func MustParseProbingConfigProbingSession_FieldPath added in v0.4.27

func MustParseProbingConfigProbingSession_FieldPath(rawField string) ProbingConfigProbingSession_FieldPath

func ParseProbingConfigProbingSession_FieldPath added in v0.4.27

func ParseProbingConfigProbingSession_FieldPath(rawField string) (ProbingConfigProbingSession_FieldPath, error)

type ProbingConfigProbingSession_FieldPathArrayItemValue added in v0.4.27

type ProbingConfigProbingSession_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfigProbingSession_FieldPath
	ContainsValue(*ProbingConfig_ProbingSession) bool
}

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

func MustParseProbingConfigProbingSession_FieldPathArrayItemValue added in v0.4.27

func MustParseProbingConfigProbingSession_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfigProbingSession_FieldPathArrayItemValue

func ParseProbingConfigProbingSession_FieldPathArrayItemValue added in v0.4.27

func ParseProbingConfigProbingSession_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfigProbingSession_FieldPathArrayItemValue, error)

ParseProbingConfigProbingSession_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfigProbingSession_FieldPathArrayOfValues added in v0.4.27

type ProbingConfigProbingSession_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfigProbingSession_FieldPath
}

ProbingConfigProbingSession_FieldPathArrayOfValues allows storing slice of values for ProbingSession fields according to their type

func MustParseProbingConfigProbingSession_FieldPathArrayOfValues added in v0.4.27

func MustParseProbingConfigProbingSession_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfigProbingSession_FieldPathArrayOfValues

func ParseProbingConfigProbingSession_FieldPathArrayOfValues added in v0.4.27

func ParseProbingConfigProbingSession_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfigProbingSession_FieldPathArrayOfValues, error)

type ProbingConfigProbingSession_FieldPathSelector added in v0.4.27

type ProbingConfigProbingSession_FieldPathSelector int32
const (
	ProbingConfigProbingSession_FieldPathSelectorTarget             ProbingConfigProbingSession_FieldPathSelector = 0
	ProbingConfigProbingSession_FieldPathSelectorTargetDisplayName  ProbingConfigProbingSession_FieldPathSelector = 1
	ProbingConfigProbingSession_FieldPathSelectorTargetGroup        ProbingConfigProbingSession_FieldPathSelector = 2
	ProbingConfigProbingSession_FieldPathSelectorMode               ProbingConfigProbingSession_FieldPathSelector = 3
	ProbingConfigProbingSession_FieldPathSelectorIpVersion          ProbingConfigProbingSession_FieldPathSelector = 4
	ProbingConfigProbingSession_FieldPathSelectorAddress            ProbingConfigProbingSession_FieldPathSelector = 5
	ProbingConfigProbingSession_FieldPathSelectorGroupName          ProbingConfigProbingSession_FieldPathSelector = 6
	ProbingConfigProbingSession_FieldPathSelectorCategory           ProbingConfigProbingSession_FieldPathSelector = 7
	ProbingConfigProbingSession_FieldPathSelectorLocationType       ProbingConfigProbingSession_FieldPathSelector = 8
	ProbingConfigProbingSession_FieldPathSelectorLocation           ProbingConfigProbingSession_FieldPathSelector = 9
	ProbingConfigProbingSession_FieldPathSelectorIntervalSec        ProbingConfigProbingSession_FieldPathSelector = 10
	ProbingConfigProbingSession_FieldPathSelectorInterval           ProbingConfigProbingSession_FieldPathSelector = 11
	ProbingConfigProbingSession_FieldPathSelectorTos                ProbingConfigProbingSession_FieldPathSelector = 12
	ProbingConfigProbingSession_FieldPathSelectorWindowSize         ProbingConfigProbingSession_FieldPathSelector = 13
	ProbingConfigProbingSession_FieldPathSelectorPathProbing        ProbingConfigProbingSession_FieldPathSelector = 14
	ProbingConfigProbingSession_FieldPathSelectorSpeedtestSettings  ProbingConfigProbingSession_FieldPathSelector = 15
	ProbingConfigProbingSession_FieldPathSelectorHttpProbingConfig  ProbingConfigProbingSession_FieldPathSelector = 16
	ProbingConfigProbingSession_FieldPathSelectorProxyConfiguration ProbingConfigProbingSession_FieldPathSelector = 17
	ProbingConfigProbingSession_FieldPathSelectorAddresses          ProbingConfigProbingSession_FieldPathSelector = 18
)

func (ProbingConfigProbingSession_FieldPathSelector) String added in v0.4.27

type ProbingConfigProbingSession_FieldPathValue added in v0.4.27

type ProbingConfigProbingSession_FieldPathValue interface {
	ProbingConfigProbingSession_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig_ProbingSession)
	CompareWith(*ProbingConfig_ProbingSession) (cmp int, comparable bool)
}

ProbingConfigProbingSession_FieldPathValue allows storing values for ProbingSession fields according to their type

func MustParseProbingConfigProbingSession_FieldPathValue added in v0.4.27

func MustParseProbingConfigProbingSession_FieldPathValue(pathStr, valueStr string) ProbingConfigProbingSession_FieldPathValue

func ParseProbingConfigProbingSession_FieldPathValue added in v0.4.27

func ParseProbingConfigProbingSession_FieldPathValue(pathStr, valueStr string) (ProbingConfigProbingSession_FieldPathValue, error)

type ProbingConfigProbingSession_FieldSubPath added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) AsHttpProbingConfigSubPath added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) AsLocationSubPath added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) AsPathProbingSubPath added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) AsProxyConfigurationSubPath added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) AsSpeedtestSettingsSubPath added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) ClearValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) ClearValueRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) Get added in v0.4.27

func (fps *ProbingConfigProbingSession_FieldSubPath) Get(source *ProbingConfig_ProbingSession) (values []interface{})

Get returns all values pointed by selected field from source ProbingConfig_ProbingSession

func (*ProbingConfigProbingSession_FieldSubPath) GetDefault added in v0.4.27

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

GetDefault returns a default value of the field type

func (*ProbingConfigProbingSession_FieldSubPath) GetRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) GetSingle added in v0.4.27

func (fps *ProbingConfigProbingSession_FieldSubPath) GetSingle(source *ProbingConfig_ProbingSession) (interface{}, bool)

GetSingle returns value of selected field from source ProbingConfig_ProbingSession

func (*ProbingConfigProbingSession_FieldSubPath) GetSingleRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) IsLeaf added in v0.4.27

IsLeaf - whether field path is holds simple value

func (*ProbingConfigProbingSession_FieldSubPath) JSONString added in v0.4.27

JSONString returns path representation is JSON convention

func (*ProbingConfigProbingSession_FieldSubPath) Selector added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigProbingSession_FieldSubPath) String added in v0.4.27

String returns path representation in proto convention

func (*ProbingConfigProbingSession_FieldSubPath) WithIArrayItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) WithIArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) WithIValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPath) WithRawIArrayItemValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) WithRawIArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPath) WithRawIValue added in v0.4.27

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

type ProbingConfigProbingSession_FieldSubPathArrayItemValue added in v0.4.27

type ProbingConfigProbingSession_FieldSubPathArrayItemValue struct {
	ProbingConfigProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) AsHttpProbingConfigPathItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) AsLocationPathItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) AsPathProbingPathItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) AsProxyConfigurationPathItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) AsSpeedtestSettingsPathItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) ContainsValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPathArrayItemValue) GetRawItemValue added in v0.4.27

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

GetRawValue returns stored array item value

type ProbingConfigProbingSession_FieldSubPathArrayOfValues added in v0.4.27

type ProbingConfigProbingSession_FieldSubPathArrayOfValues struct {
	ProbingConfigProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) AsHttpProbingConfigPathArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) AsLocationPathArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) AsPathProbingPathArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) AsProxyConfigurationPathArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) AsSpeedtestSettingsPathArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathArrayOfValues) GetRawValues added in v0.4.27

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

type ProbingConfigProbingSession_FieldSubPathValue added in v0.4.27

type ProbingConfigProbingSession_FieldSubPathValue struct {
	ProbingConfigProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldSubPathValue) AsHttpProbingConfigPathValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) AsLocationPathValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) AsPathProbingPathValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) AsProxyConfigurationPathValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) AsSpeedtestSettingsPathValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) CompareWith added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) CompareWithRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPathValue) GetRawValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldSubPathValue) SetTo added in v0.4.27

func (*ProbingConfigProbingSession_FieldSubPathValue) SetToRaw added in v0.4.27

type ProbingConfigProbingSession_FieldTerminalPath added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPath) ClearValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) ClearValueRaw added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) Get added in v0.4.27

func (fp *ProbingConfigProbingSession_FieldTerminalPath) Get(source *ProbingConfig_ProbingSession) (values []interface{})

Get returns all values pointed by specific field from source ProbingConfig_ProbingSession

func (*ProbingConfigProbingSession_FieldTerminalPath) GetDefault added in v0.4.27

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

GetDefault returns a default value of the field type

func (*ProbingConfigProbingSession_FieldTerminalPath) GetRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPath) GetSingle added in v0.4.27

GetSingle returns value pointed by specific field of from source ProbingConfig_ProbingSession

func (*ProbingConfigProbingSession_FieldTerminalPath) GetSingleRaw added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPath) IsLeaf added in v0.4.27

IsLeaf - whether field path is holds simple value

func (*ProbingConfigProbingSession_FieldTerminalPath) JSONString added in v0.4.27

JSONString returns path representation is JSON convention

func (*ProbingConfigProbingSession_FieldTerminalPath) Selector added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

func (*ProbingConfigProbingSession_FieldTerminalPath) String added in v0.4.27

String returns path representation in proto convention

func (*ProbingConfigProbingSession_FieldTerminalPath) WithIArrayItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) WithIArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) WithIValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPath) WithRawIArrayItemValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPath) WithRawIArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPath) WithRawIValue added in v0.4.27

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

type ProbingConfigProbingSession_FieldTerminalPathArrayItemValue added in v0.4.27

type ProbingConfigProbingSession_FieldTerminalPathArrayItemValue struct {
	ProbingConfigProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldTerminalPathArrayItemValue) AsAddressesItemValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayItemValue) ContainsValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayItemValue) GetRawItemValue added in v0.4.27

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

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayItemValue) GetSingle added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayItemValue) GetSingleRaw added in v0.4.27

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

type ProbingConfigProbingSession_FieldTerminalPathArrayOfValues added in v0.4.27

type ProbingConfigProbingSession_FieldTerminalPathArrayOfValues struct {
	ProbingConfigProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsAddressArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsAddressesArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsCategoryArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsGroupNameArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsHttpProbingConfigArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsIntervalArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsIntervalSecArrayOfValues added in v0.4.27

func (fpaov *ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsIntervalSecArrayOfValues() ([]int64, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsIpVersionArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsLocationArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsLocationTypeArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsModeArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsPathProbingArrayOfValues added in v0.4.27

func (fpaov *ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsPathProbingArrayOfValues() ([]*common.PathProbe, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsProxyConfigurationArrayOfValues added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsSpeedtestSettingsArrayOfValues added in v0.4.27

func (fpaov *ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsSpeedtestSettingsArrayOfValues() ([]*common.SpeedTestSettings, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsTargetArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsTargetDisplayNameArrayOfValues added in v0.4.27

func (fpaov *ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsTargetDisplayNameArrayOfValues() ([]string, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsTargetGroupArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsTosArrayOfValues added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsWindowSizeArrayOfValues added in v0.4.27

func (fpaov *ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) AsWindowSizeArrayOfValues() ([]uint32, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathArrayOfValues) GetRawValues added in v0.4.27

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

type ProbingConfigProbingSession_FieldTerminalPathValue added in v0.4.27

type ProbingConfigProbingSession_FieldTerminalPathValue struct {
	ProbingConfigProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsAddressValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsAddressesValue added in v0.4.27

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

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsCategoryValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsGroupNameValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsHttpProbingConfigValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsIntervalSecValue added in v0.4.27

func (fpv *ProbingConfigProbingSession_FieldTerminalPathValue) AsIntervalSecValue() (int64, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsIntervalValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsIpVersionValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsLocationTypeValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsLocationValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsModeValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsPathProbingValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsProxyConfigurationValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsSpeedtestSettingsValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsTargetDisplayNameValue added in v0.4.27

func (fpv *ProbingConfigProbingSession_FieldTerminalPathValue) AsTargetDisplayNameValue() (string, bool)

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsTargetGroupValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsTargetValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsTosValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) AsWindowSizeValue added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) CompareWith added in v0.4.27

CompareWith compares value in the 'ProbingConfigProbingSession_FieldTerminalPathValue' with the value under path in 'ProbingConfig_ProbingSession'.

func (*ProbingConfigProbingSession_FieldTerminalPathValue) CompareWithRaw added in v0.4.27

func (*ProbingConfigProbingSession_FieldTerminalPathValue) GetRawValue added in v0.4.27

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

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

func (*ProbingConfigProbingSession_FieldTerminalPathValue) SetTo added in v0.4.27

SetTo stores value for selected field for object ProbingSession

func (*ProbingConfigProbingSession_FieldTerminalPathValue) SetToRaw added in v0.4.27

type ProbingConfigReferenceList

type ProbingConfigReferenceList []*Reference

func (ProbingConfigReferenceList) Append

func (ProbingConfigReferenceList) AppendList

func (ProbingConfigReferenceList) At

func (ProbingConfigReferenceList) Length

func (l ProbingConfigReferenceList) Length() int

func (ProbingConfigReferenceList) Set

func (ProbingConfigReferenceList) Slice

type ProbingConfigSpecFieldPathBuilder

type ProbingConfigSpecFieldPathBuilder struct{}

func NewProbingConfigSpecFieldPathBuilder

func NewProbingConfigSpecFieldPathBuilder() ProbingConfigSpecFieldPathBuilder

func (ProbingConfigSpecFieldPathBuilder) Probe

func (ProbingConfigSpecFieldPathBuilder) ProbingSessions

func (ProbingConfigSpecFieldPathBuilder) Speedtest

func (ProbingConfigSpecFieldPathBuilder) TargetSessions

type ProbingConfigSpecSpeedTestFieldPathBuilder

type ProbingConfigSpecSpeedTestFieldPathBuilder struct{}

func NewProbingConfigSpecSpeedTestFieldPathBuilder

func NewProbingConfigSpecSpeedTestFieldPathBuilder() ProbingConfigSpecSpeedTestFieldPathBuilder

func (ProbingConfigSpecSpeedTestFieldPathBuilder) Enabled

func (ProbingConfigSpecSpeedTestFieldPathBuilder) Interval

func (ProbingConfigSpecSpeedTestFieldPathBuilder) IntervalMinutes

func (ProbingConfigSpecSpeedTestFieldPathBuilder) Servers

type ProbingConfigSpecSpeedTestServerFieldPathBuilder

type ProbingConfigSpecSpeedTestServerFieldPathBuilder struct{}

func NewProbingConfigSpecSpeedTestServerFieldPathBuilder

func NewProbingConfigSpecSpeedTestServerFieldPathBuilder() ProbingConfigSpecSpeedTestServerFieldPathBuilder

func (ProbingConfigSpecSpeedTestServerFieldPathBuilder) IpAddresses

func (ProbingConfigSpecSpeedTestServerFieldPathBuilder) Location

func (ProbingConfigSpecSpeedTestServerFieldPathBuilder) Name

func (ProbingConfigSpecSpeedTestServerFieldPathBuilder) Target

type ProbingConfigSpecSpeedTestServer_FieldPath

type ProbingConfigSpecSpeedTestServer_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfigSpecSpeedTestServer_FieldPathSelector
	Get(source *ProbingConfig_Spec_SpeedTest_Server) []interface{}
	GetSingle(source *ProbingConfig_Spec_SpeedTest_Server) (interface{}, bool)
	ClearValue(item *ProbingConfig_Spec_SpeedTest_Server)

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

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

func MustParseProbingConfigSpecSpeedTestServer_FieldPath

func MustParseProbingConfigSpecSpeedTestServer_FieldPath(rawField string) ProbingConfigSpecSpeedTestServer_FieldPath

func ParseProbingConfigSpecSpeedTestServer_FieldPath

func ParseProbingConfigSpecSpeedTestServer_FieldPath(rawField string) (ProbingConfigSpecSpeedTestServer_FieldPath, error)

type ProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue

type ProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfigSpecSpeedTestServer_FieldPath
	ContainsValue(*ProbingConfig_Spec_SpeedTest_Server) bool
}

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

func MustParseProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue

func MustParseProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue

func ParseProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue

func ParseProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue, error)

ParseProbingConfigSpecSpeedTestServer_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues

type ProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfigSpecSpeedTestServer_FieldPath
}

ProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues allows storing slice of values for Server fields according to their type

func MustParseProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues

func MustParseProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues

func ParseProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues

func ParseProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfigSpecSpeedTestServer_FieldPathArrayOfValues, error)

type ProbingConfigSpecSpeedTestServer_FieldPathSelector

type ProbingConfigSpecSpeedTestServer_FieldPathSelector int32
const (
	ProbingConfigSpecSpeedTestServer_FieldPathSelectorName        ProbingConfigSpecSpeedTestServer_FieldPathSelector = 0
	ProbingConfigSpecSpeedTestServer_FieldPathSelectorIpAddresses ProbingConfigSpecSpeedTestServer_FieldPathSelector = 1
	ProbingConfigSpecSpeedTestServer_FieldPathSelectorLocation    ProbingConfigSpecSpeedTestServer_FieldPathSelector = 2
	ProbingConfigSpecSpeedTestServer_FieldPathSelectorTarget      ProbingConfigSpecSpeedTestServer_FieldPathSelector = 3
)

func (ProbingConfigSpecSpeedTestServer_FieldPathSelector) String

type ProbingConfigSpecSpeedTestServer_FieldPathValue

type ProbingConfigSpecSpeedTestServer_FieldPathValue interface {
	ProbingConfigSpecSpeedTestServer_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig_Spec_SpeedTest_Server)
	CompareWith(*ProbingConfig_Spec_SpeedTest_Server) (cmp int, comparable bool)
}

ProbingConfigSpecSpeedTestServer_FieldPathValue allows storing values for Server fields according to their type

func MustParseProbingConfigSpecSpeedTestServer_FieldPathValue

func MustParseProbingConfigSpecSpeedTestServer_FieldPathValue(pathStr, valueStr string) ProbingConfigSpecSpeedTestServer_FieldPathValue

func ParseProbingConfigSpecSpeedTestServer_FieldPathValue

func ParseProbingConfigSpecSpeedTestServer_FieldPathValue(pathStr, valueStr string) (ProbingConfigSpecSpeedTestServer_FieldPathValue, error)

type ProbingConfigSpecSpeedTestServer_FieldSubPath

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) AsLocationSubPath

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) ClearValue

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) ClearValueRaw

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) Get

Get returns all values pointed by selected field from source ProbingConfig_Spec_SpeedTest_Server

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) GetRaw

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) GetSingle

GetSingle returns value of selected field from source ProbingConfig_Spec_SpeedTest_Server

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) GetSingleRaw

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) Selector

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) String

String returns path representation in proto convention

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithIArrayItemValue

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithIArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithIValue

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPath) WithRawIValue

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

type ProbingConfigSpecSpeedTestServer_FieldSubPathArrayItemValue

type ProbingConfigSpecSpeedTestServer_FieldSubPathArrayItemValue struct {
	ProbingConfigSpecSpeedTestServer_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathArrayItemValue) AsLocationPathItemValue

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingConfigSpecSpeedTestServer_FieldSubPathArrayOfValues

type ProbingConfigSpecSpeedTestServer_FieldSubPathArrayOfValues struct {
	ProbingConfigSpecSpeedTestServer_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathArrayOfValues) AsLocationPathArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingConfigSpecSpeedTestServer_FieldSubPathValue

type ProbingConfigSpecSpeedTestServer_FieldSubPathValue struct {
	ProbingConfigSpecSpeedTestServer_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) AsLocationPathValue

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) CompareWith

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) CompareWithRaw

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) GetRawValue

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

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) SetTo

func (*ProbingConfigSpecSpeedTestServer_FieldSubPathValue) SetToRaw

type ProbingConfigSpecSpeedTestServer_FieldTerminalPath

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) ClearValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) ClearValueRaw

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) Get

Get returns all values pointed by specific field from source ProbingConfig_Spec_SpeedTest_Server

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) GetRaw

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) GetSingle

GetSingle returns value pointed by specific field of from source ProbingConfig_Spec_SpeedTest_Server

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) GetSingleRaw

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) Selector

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithIArrayItemValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithIArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithIValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPath) WithRawIValue

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue struct {
	ProbingConfigSpecSpeedTestServer_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue) AsIpAddressesItemValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue) GetSingle

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues struct {
	ProbingConfigSpecSpeedTestServer_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) AsIpAddressesArrayOfValues

func (fpaov *ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) AsIpAddressesArrayOfValues() ([][]string, bool)

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) AsLocationArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) AsTargetArrayOfValues

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue

type ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue struct {
	ProbingConfigSpecSpeedTestServer_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) AsIpAddressesValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) AsLocationValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) AsNameValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) AsTargetValue

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue' with the value under path in 'ProbingConfig_Spec_SpeedTest_Server'.

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) CompareWithRaw

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Server

func (*ProbingConfigSpecSpeedTestServer_FieldTerminalPathValue) SetToRaw

type ProbingConfigSpecSpeedTest_FieldPath

type ProbingConfigSpecSpeedTest_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfigSpecSpeedTest_FieldPathSelector
	Get(source *ProbingConfig_Spec_SpeedTest) []interface{}
	GetSingle(source *ProbingConfig_Spec_SpeedTest) (interface{}, bool)
	ClearValue(item *ProbingConfig_Spec_SpeedTest)

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

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

func MustParseProbingConfigSpecSpeedTest_FieldPath

func MustParseProbingConfigSpecSpeedTest_FieldPath(rawField string) ProbingConfigSpecSpeedTest_FieldPath

func ParseProbingConfigSpecSpeedTest_FieldPath

func ParseProbingConfigSpecSpeedTest_FieldPath(rawField string) (ProbingConfigSpecSpeedTest_FieldPath, error)

type ProbingConfigSpecSpeedTest_FieldPathArrayItemValue

type ProbingConfigSpecSpeedTest_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfigSpecSpeedTest_FieldPath
	ContainsValue(*ProbingConfig_Spec_SpeedTest) bool
}

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

func MustParseProbingConfigSpecSpeedTest_FieldPathArrayItemValue

func MustParseProbingConfigSpecSpeedTest_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfigSpecSpeedTest_FieldPathArrayItemValue

func ParseProbingConfigSpecSpeedTest_FieldPathArrayItemValue

func ParseProbingConfigSpecSpeedTest_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfigSpecSpeedTest_FieldPathArrayItemValue, error)

ParseProbingConfigSpecSpeedTest_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfigSpecSpeedTest_FieldPathArrayOfValues

type ProbingConfigSpecSpeedTest_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfigSpecSpeedTest_FieldPath
}

ProbingConfigSpecSpeedTest_FieldPathArrayOfValues allows storing slice of values for SpeedTest fields according to their type

func MustParseProbingConfigSpecSpeedTest_FieldPathArrayOfValues

func MustParseProbingConfigSpecSpeedTest_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfigSpecSpeedTest_FieldPathArrayOfValues

func ParseProbingConfigSpecSpeedTest_FieldPathArrayOfValues

func ParseProbingConfigSpecSpeedTest_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfigSpecSpeedTest_FieldPathArrayOfValues, error)

type ProbingConfigSpecSpeedTest_FieldPathSelector

type ProbingConfigSpecSpeedTest_FieldPathSelector int32
const (
	ProbingConfigSpecSpeedTest_FieldPathSelectorEnabled         ProbingConfigSpecSpeedTest_FieldPathSelector = 0
	ProbingConfigSpecSpeedTest_FieldPathSelectorIntervalMinutes ProbingConfigSpecSpeedTest_FieldPathSelector = 1
	ProbingConfigSpecSpeedTest_FieldPathSelectorInterval        ProbingConfigSpecSpeedTest_FieldPathSelector = 2
	ProbingConfigSpecSpeedTest_FieldPathSelectorServers         ProbingConfigSpecSpeedTest_FieldPathSelector = 3
)

func (ProbingConfigSpecSpeedTest_FieldPathSelector) String

type ProbingConfigSpecSpeedTest_FieldPathValue

type ProbingConfigSpecSpeedTest_FieldPathValue interface {
	ProbingConfigSpecSpeedTest_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig_Spec_SpeedTest)
	CompareWith(*ProbingConfig_Spec_SpeedTest) (cmp int, comparable bool)
}

ProbingConfigSpecSpeedTest_FieldPathValue allows storing values for SpeedTest fields according to their type

func MustParseProbingConfigSpecSpeedTest_FieldPathValue

func MustParseProbingConfigSpecSpeedTest_FieldPathValue(pathStr, valueStr string) ProbingConfigSpecSpeedTest_FieldPathValue

func ParseProbingConfigSpecSpeedTest_FieldPathValue

func ParseProbingConfigSpecSpeedTest_FieldPathValue(pathStr, valueStr string) (ProbingConfigSpecSpeedTest_FieldPathValue, error)

type ProbingConfigSpecSpeedTest_FieldSubPath

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) AsServersSubPath

func (*ProbingConfigSpecSpeedTest_FieldSubPath) ClearValue

func (*ProbingConfigSpecSpeedTest_FieldSubPath) ClearValueRaw

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) Get

func (fps *ProbingConfigSpecSpeedTest_FieldSubPath) Get(source *ProbingConfig_Spec_SpeedTest) (values []interface{})

Get returns all values pointed by selected field from source ProbingConfig_Spec_SpeedTest

func (*ProbingConfigSpecSpeedTest_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpecSpeedTest_FieldSubPath) GetRaw

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) GetSingle

func (fps *ProbingConfigSpecSpeedTest_FieldSubPath) GetSingle(source *ProbingConfig_Spec_SpeedTest) (interface{}, bool)

GetSingle returns value of selected field from source ProbingConfig_Spec_SpeedTest

func (*ProbingConfigSpecSpeedTest_FieldSubPath) GetSingleRaw

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpecSpeedTest_FieldSubPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigSpecSpeedTest_FieldSubPath) Selector

func (*ProbingConfigSpecSpeedTest_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) String

String returns path representation in proto convention

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithIArrayItemValue

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithIArrayOfValues

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithIValue

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpecSpeedTest_FieldSubPath) WithRawIValue

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

type ProbingConfigSpecSpeedTest_FieldSubPathArrayItemValue

type ProbingConfigSpecSpeedTest_FieldSubPathArrayItemValue struct {
	ProbingConfigSpecSpeedTest_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldSubPathArrayItemValue) AsServersPathItemValue

func (*ProbingConfigSpecSpeedTest_FieldSubPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpecSpeedTest_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingConfigSpecSpeedTest_FieldSubPathArrayOfValues

type ProbingConfigSpecSpeedTest_FieldSubPathArrayOfValues struct {
	ProbingConfigSpecSpeedTest_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldSubPathArrayOfValues) AsServersPathArrayOfValues

func (*ProbingConfigSpecSpeedTest_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingConfigSpecSpeedTest_FieldSubPathValue

type ProbingConfigSpecSpeedTest_FieldSubPathValue struct {
	ProbingConfigSpecSpeedTest_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) AsServersPathValue

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) CompareWith

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) CompareWithRaw

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

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) GetRawValue

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

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) SetTo

func (*ProbingConfigSpecSpeedTest_FieldSubPathValue) SetToRaw

type ProbingConfigSpecSpeedTest_FieldTerminalPath

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) ClearValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) ClearValueRaw

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) Get

func (fp *ProbingConfigSpecSpeedTest_FieldTerminalPath) Get(source *ProbingConfig_Spec_SpeedTest) (values []interface{})

Get returns all values pointed by specific field from source ProbingConfig_Spec_SpeedTest

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) GetRaw

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) GetSingle

GetSingle returns value pointed by specific field of from source ProbingConfig_Spec_SpeedTest

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) GetSingleRaw

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) Selector

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithIArrayItemValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithIArrayOfValues

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithIValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPath) WithRawIValue

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

type ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue

type ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue struct {
	ProbingConfigSpecSpeedTest_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue) AsServersItemValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue) GetSingle

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues

type ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues struct {
	ProbingConfigSpecSpeedTest_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsEnabledArrayOfValues

func (fpaov *ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsEnabledArrayOfValues() ([]bool, bool)

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsIntervalArrayOfValues

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsIntervalMinutesArrayOfValues

func (fpaov *ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsIntervalMinutesArrayOfValues() ([]int64, bool)

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) AsServersArrayOfValues

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingConfigSpecSpeedTest_FieldTerminalPathValue

type ProbingConfigSpecSpeedTest_FieldTerminalPathValue struct {
	ProbingConfigSpecSpeedTest_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) AsEnabledValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) AsIntervalMinutesValue

func (fpv *ProbingConfigSpecSpeedTest_FieldTerminalPathValue) AsIntervalMinutesValue() (int64, bool)

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) AsIntervalValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) AsServersValue

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingConfigSpecSpeedTest_FieldTerminalPathValue' with the value under path in 'ProbingConfig_Spec_SpeedTest'.

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) CompareWithRaw

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object SpeedTest

func (*ProbingConfigSpecSpeedTest_FieldTerminalPathValue) SetToRaw

type ProbingConfigSpec_FieldPath

type ProbingConfigSpec_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfigSpec_FieldPathSelector
	Get(source *ProbingConfig_Spec) []interface{}
	GetSingle(source *ProbingConfig_Spec) (interface{}, bool)
	ClearValue(item *ProbingConfig_Spec)

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

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

func MustParseProbingConfigSpec_FieldPath

func MustParseProbingConfigSpec_FieldPath(rawField string) ProbingConfigSpec_FieldPath

func ParseProbingConfigSpec_FieldPath

func ParseProbingConfigSpec_FieldPath(rawField string) (ProbingConfigSpec_FieldPath, error)

type ProbingConfigSpec_FieldPathArrayItemValue

type ProbingConfigSpec_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfigSpec_FieldPath
	ContainsValue(*ProbingConfig_Spec) bool
}

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

func MustParseProbingConfigSpec_FieldPathArrayItemValue

func MustParseProbingConfigSpec_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfigSpec_FieldPathArrayItemValue

func ParseProbingConfigSpec_FieldPathArrayItemValue

func ParseProbingConfigSpec_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfigSpec_FieldPathArrayItemValue, error)

ParseProbingConfigSpec_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfigSpec_FieldPathArrayOfValues

type ProbingConfigSpec_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfigSpec_FieldPath
}

ProbingConfigSpec_FieldPathArrayOfValues allows storing slice of values for Spec fields according to their type

func MustParseProbingConfigSpec_FieldPathArrayOfValues

func MustParseProbingConfigSpec_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfigSpec_FieldPathArrayOfValues

func ParseProbingConfigSpec_FieldPathArrayOfValues

func ParseProbingConfigSpec_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfigSpec_FieldPathArrayOfValues, error)

type ProbingConfigSpec_FieldPathSelector

type ProbingConfigSpec_FieldPathSelector int32
const (
	ProbingConfigSpec_FieldPathSelectorProbe           ProbingConfigSpec_FieldPathSelector = 0
	ProbingConfigSpec_FieldPathSelectorProbingSessions ProbingConfigSpec_FieldPathSelector = 1
	ProbingConfigSpec_FieldPathSelectorSpeedtest       ProbingConfigSpec_FieldPathSelector = 2
	ProbingConfigSpec_FieldPathSelectorTargetSessions  ProbingConfigSpec_FieldPathSelector = 3
)

func (ProbingConfigSpec_FieldPathSelector) String

type ProbingConfigSpec_FieldPathValue

type ProbingConfigSpec_FieldPathValue interface {
	ProbingConfigSpec_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig_Spec)
	CompareWith(*ProbingConfig_Spec) (cmp int, comparable bool)
}

ProbingConfigSpec_FieldPathValue allows storing values for Spec fields according to their type

func MustParseProbingConfigSpec_FieldPathValue

func MustParseProbingConfigSpec_FieldPathValue(pathStr, valueStr string) ProbingConfigSpec_FieldPathValue

func ParseProbingConfigSpec_FieldPathValue

func ParseProbingConfigSpec_FieldPathValue(pathStr, valueStr string) (ProbingConfigSpec_FieldPathValue, error)

type ProbingConfigSpec_FieldSubPath

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

func (*ProbingConfigSpec_FieldSubPath) AsProbingSessionsSubPath

func (*ProbingConfigSpec_FieldSubPath) AsSpeedtestSubPath

func (*ProbingConfigSpec_FieldSubPath) AsTargetSessionsSubPath

func (*ProbingConfigSpec_FieldSubPath) ClearValue

func (fps *ProbingConfigSpec_FieldSubPath) ClearValue(item *ProbingConfig_Spec)

func (*ProbingConfigSpec_FieldSubPath) ClearValueRaw

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

func (*ProbingConfigSpec_FieldSubPath) Get

func (fps *ProbingConfigSpec_FieldSubPath) Get(source *ProbingConfig_Spec) (values []interface{})

Get returns all values pointed by selected field from source ProbingConfig_Spec

func (*ProbingConfigSpec_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpec_FieldSubPath) GetRaw

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

func (*ProbingConfigSpec_FieldSubPath) GetSingle

func (fps *ProbingConfigSpec_FieldSubPath) GetSingle(source *ProbingConfig_Spec) (interface{}, bool)

GetSingle returns value of selected field from source ProbingConfig_Spec

func (*ProbingConfigSpec_FieldSubPath) GetSingleRaw

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

func (*ProbingConfigSpec_FieldSubPath) IsLeaf

func (fps *ProbingConfigSpec_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpec_FieldSubPath) JSONString

func (fps *ProbingConfigSpec_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingConfigSpec_FieldSubPath) Selector

func (*ProbingConfigSpec_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigSpec_FieldSubPath) String

func (fps *ProbingConfigSpec_FieldSubPath) String() string

String returns path representation in proto convention

func (*ProbingConfigSpec_FieldSubPath) WithIArrayItemValue

func (fps *ProbingConfigSpec_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingConfigSpec_FieldPathArrayItemValue

func (*ProbingConfigSpec_FieldSubPath) WithIArrayOfValues

func (fps *ProbingConfigSpec_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingConfigSpec_FieldPathArrayOfValues

func (*ProbingConfigSpec_FieldSubPath) WithIValue

func (fps *ProbingConfigSpec_FieldSubPath) WithIValue(value interface{}) ProbingConfigSpec_FieldPathValue

func (*ProbingConfigSpec_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpec_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpec_FieldSubPath) WithRawIValue

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

type ProbingConfigSpec_FieldSubPathArrayItemValue

type ProbingConfigSpec_FieldSubPathArrayItemValue struct {
	ProbingConfigSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldSubPathArrayItemValue) AsProbingSessionsPathItemValue

func (*ProbingConfigSpec_FieldSubPathArrayItemValue) AsSpeedtestPathItemValue

func (*ProbingConfigSpec_FieldSubPathArrayItemValue) AsTargetSessionsPathItemValue

func (*ProbingConfigSpec_FieldSubPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpec_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingConfigSpec_FieldSubPathArrayOfValues

type ProbingConfigSpec_FieldSubPathArrayOfValues struct {
	ProbingConfigSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldSubPathArrayOfValues) AsProbingSessionsPathArrayOfValues

func (*ProbingConfigSpec_FieldSubPathArrayOfValues) AsSpeedtestPathArrayOfValues

func (*ProbingConfigSpec_FieldSubPathArrayOfValues) AsTargetSessionsPathArrayOfValues

func (*ProbingConfigSpec_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingConfigSpec_FieldSubPathValue

type ProbingConfigSpec_FieldSubPathValue struct {
	ProbingConfigSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldSubPathValue) AsProbingSessionsPathValue

func (*ProbingConfigSpec_FieldSubPathValue) AsSpeedtestPathValue

func (*ProbingConfigSpec_FieldSubPathValue) AsTargetSessionsPathValue

func (*ProbingConfigSpec_FieldSubPathValue) CompareWith

func (fpvs *ProbingConfigSpec_FieldSubPathValue) CompareWith(source *ProbingConfig_Spec) (int, bool)

func (*ProbingConfigSpec_FieldSubPathValue) CompareWithRaw

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

func (*ProbingConfigSpec_FieldSubPathValue) GetRawValue

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

func (*ProbingConfigSpec_FieldSubPathValue) SetTo

func (*ProbingConfigSpec_FieldSubPathValue) SetToRaw

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

type ProbingConfigSpec_FieldTerminalPath

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

func (*ProbingConfigSpec_FieldTerminalPath) ClearValue

func (*ProbingConfigSpec_FieldTerminalPath) ClearValueRaw

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

func (*ProbingConfigSpec_FieldTerminalPath) Get

func (fp *ProbingConfigSpec_FieldTerminalPath) Get(source *ProbingConfig_Spec) (values []interface{})

Get returns all values pointed by specific field from source ProbingConfig_Spec

func (*ProbingConfigSpec_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigSpec_FieldTerminalPath) GetRaw

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

func (*ProbingConfigSpec_FieldTerminalPath) GetSingle

func (fp *ProbingConfigSpec_FieldTerminalPath) GetSingle(source *ProbingConfig_Spec) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingConfig_Spec

func (*ProbingConfigSpec_FieldTerminalPath) GetSingleRaw

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

func (*ProbingConfigSpec_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigSpec_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigSpec_FieldTerminalPath) Selector

func (*ProbingConfigSpec_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigSpec_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingConfigSpec_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingConfigSpec_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingConfigSpec_FieldPathArrayItemValue

func (*ProbingConfigSpec_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingConfigSpec_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingConfigSpec_FieldPathArrayOfValues

func (*ProbingConfigSpec_FieldTerminalPath) WithIValue

func (*ProbingConfigSpec_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingConfigSpec_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingConfigSpec_FieldTerminalPath) WithRawIValue

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

type ProbingConfigSpec_FieldTerminalPathArrayItemValue

type ProbingConfigSpec_FieldTerminalPathArrayItemValue struct {
	ProbingConfigSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) AsProbingSessionsItemValue

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) AsTargetSessionsItemValue

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingConfigSpec_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingConfig_Spec) (interface{}, bool)

func (*ProbingConfigSpec_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingConfigSpec_FieldTerminalPathArrayOfValues

type ProbingConfigSpec_FieldTerminalPathArrayOfValues struct {
	ProbingConfigSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsProbeArrayOfValues

func (fpaov *ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsProbeArrayOfValues() ([]*probe.Reference, bool)

func (*ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsProbingSessionsArrayOfValues

func (fpaov *ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsProbingSessionsArrayOfValues() ([][]*ProbingConfig_ProbingSession, bool)

func (*ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsSpeedtestArrayOfValues

func (*ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsTargetSessionsArrayOfValues

func (fpaov *ProbingConfigSpec_FieldTerminalPathArrayOfValues) AsTargetSessionsArrayOfValues() ([][]*ProbingConfig_ProbingSession, bool)

func (*ProbingConfigSpec_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingConfigSpec_FieldTerminalPathValue

type ProbingConfigSpec_FieldTerminalPathValue struct {
	ProbingConfigSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigSpec_FieldTerminalPathValue) AsProbeValue

func (*ProbingConfigSpec_FieldTerminalPathValue) AsProbingSessionsValue

func (*ProbingConfigSpec_FieldTerminalPathValue) AsSpeedtestValue

func (*ProbingConfigSpec_FieldTerminalPathValue) AsTargetSessionsValue

func (*ProbingConfigSpec_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingConfigSpec_FieldTerminalPathValue' with the value under path in 'ProbingConfig_Spec'.

func (*ProbingConfigSpec_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingConfigSpec_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingConfigSpec_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Spec

func (*ProbingConfigSpec_FieldTerminalPathValue) SetToRaw

type ProbingConfigStatusFieldPathBuilder

type ProbingConfigStatusFieldPathBuilder struct{}

func NewProbingConfigStatusFieldPathBuilder

func NewProbingConfigStatusFieldPathBuilder() ProbingConfigStatusFieldPathBuilder

type ProbingConfigStatus_FieldPath

type ProbingConfigStatus_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfigStatus_FieldPathSelector
	Get(source *ProbingConfig_Status) []interface{}
	GetSingle(source *ProbingConfig_Status) (interface{}, bool)
	ClearValue(item *ProbingConfig_Status)

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

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

func MustParseProbingConfigStatus_FieldPath

func MustParseProbingConfigStatus_FieldPath(rawField string) ProbingConfigStatus_FieldPath

func ParseProbingConfigStatus_FieldPath

func ParseProbingConfigStatus_FieldPath(rawField string) (ProbingConfigStatus_FieldPath, error)

type ProbingConfigStatus_FieldPathArrayItemValue

type ProbingConfigStatus_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfigStatus_FieldPath
	ContainsValue(*ProbingConfig_Status) bool
}

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

func MustParseProbingConfigStatus_FieldPathArrayItemValue

func MustParseProbingConfigStatus_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfigStatus_FieldPathArrayItemValue

func ParseProbingConfigStatus_FieldPathArrayItemValue

func ParseProbingConfigStatus_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfigStatus_FieldPathArrayItemValue, error)

ParseProbingConfigStatus_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfigStatus_FieldPathArrayOfValues

type ProbingConfigStatus_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfigStatus_FieldPath
}

ProbingConfigStatus_FieldPathArrayOfValues allows storing slice of values for Status fields according to their type

func MustParseProbingConfigStatus_FieldPathArrayOfValues

func MustParseProbingConfigStatus_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfigStatus_FieldPathArrayOfValues

func ParseProbingConfigStatus_FieldPathArrayOfValues

func ParseProbingConfigStatus_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfigStatus_FieldPathArrayOfValues, error)

type ProbingConfigStatus_FieldPathSelector

type ProbingConfigStatus_FieldPathSelector int32

func (ProbingConfigStatus_FieldPathSelector) String

type ProbingConfigStatus_FieldPathValue

type ProbingConfigStatus_FieldPathValue interface {
	ProbingConfigStatus_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig_Status)
	CompareWith(*ProbingConfig_Status) (cmp int, comparable bool)
}

ProbingConfigStatus_FieldPathValue allows storing values for Status fields according to their type

func MustParseProbingConfigStatus_FieldPathValue

func MustParseProbingConfigStatus_FieldPathValue(pathStr, valueStr string) ProbingConfigStatus_FieldPathValue

func ParseProbingConfigStatus_FieldPathValue

func ParseProbingConfigStatus_FieldPathValue(pathStr, valueStr string) (ProbingConfigStatus_FieldPathValue, error)

type ProbingConfigStatus_FieldTerminalPath

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

func (*ProbingConfigStatus_FieldTerminalPath) ClearValue

func (*ProbingConfigStatus_FieldTerminalPath) ClearValueRaw

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

func (*ProbingConfigStatus_FieldTerminalPath) Get

func (fp *ProbingConfigStatus_FieldTerminalPath) Get(source *ProbingConfig_Status) (values []interface{})

Get returns all values pointed by specific field from source ProbingConfig_Status

func (*ProbingConfigStatus_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfigStatus_FieldTerminalPath) GetRaw

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

func (*ProbingConfigStatus_FieldTerminalPath) GetSingle

func (fp *ProbingConfigStatus_FieldTerminalPath) GetSingle(source *ProbingConfig_Status) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingConfig_Status

func (*ProbingConfigStatus_FieldTerminalPath) GetSingleRaw

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

func (*ProbingConfigStatus_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfigStatus_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingConfigStatus_FieldTerminalPath) Selector

func (*ProbingConfigStatus_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfigStatus_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingConfigStatus_FieldTerminalPath) WithIArrayItemValue

func (*ProbingConfigStatus_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingConfigStatus_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingConfigStatus_FieldPathArrayOfValues

func (*ProbingConfigStatus_FieldTerminalPath) WithIValue

func (*ProbingConfigStatus_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingConfigStatus_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingConfigStatus_FieldTerminalPath) WithRawIValue

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

type ProbingConfigStatus_FieldTerminalPathArrayItemValue

type ProbingConfigStatus_FieldTerminalPathArrayItemValue struct {
	ProbingConfigStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigStatus_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingConfigStatus_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingConfigStatus_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingConfigStatus_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingConfig_Status) (interface{}, bool)

func (*ProbingConfigStatus_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingConfigStatus_FieldTerminalPathArrayOfValues

type ProbingConfigStatus_FieldTerminalPathArrayOfValues struct {
	ProbingConfigStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigStatus_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingConfigStatus_FieldTerminalPathValue

type ProbingConfigStatus_FieldTerminalPathValue struct {
	ProbingConfigStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfigStatus_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingConfigStatus_FieldTerminalPathValue' with the value under path in 'ProbingConfig_Status'.

func (*ProbingConfigStatus_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingConfigStatus_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingConfigStatus_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Status

func (*ProbingConfigStatus_FieldTerminalPathValue) SetToRaw

type ProbingConfig_FieldMask

type ProbingConfig_FieldMask struct {
	Paths []ProbingConfig_FieldPath
}

func FullProbingConfig_FieldMask

func FullProbingConfig_FieldMask() *ProbingConfig_FieldMask

func ResourceViewFieldMask

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

func (*ProbingConfig_FieldMask) AppendPath

func (fieldMask *ProbingConfig_FieldMask) AppendPath(path ProbingConfig_FieldPath)

func (*ProbingConfig_FieldMask) AppendRawPath

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

func (*ProbingConfig_FieldMask) DecodeFirestore

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

func (*ProbingConfig_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingConfig_FieldMask) FilterInputFields

func (fieldMask *ProbingConfig_FieldMask) FilterInputFields() *ProbingConfig_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_FieldMask) FromProtoFieldMask

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

func (*ProbingConfig_FieldMask) GetPaths

func (fieldMask *ProbingConfig_FieldMask) GetPaths() []ProbingConfig_FieldPath

func (*ProbingConfig_FieldMask) GetRawPaths

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

func (*ProbingConfig_FieldMask) IsFull

func (fieldMask *ProbingConfig_FieldMask) IsFull() bool

func (ProbingConfig_FieldMask) Marshal

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

implement methods required by customType

func (ProbingConfig_FieldMask) MarshalJSON

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

func (*ProbingConfig_FieldMask) PathsCount

func (fieldMask *ProbingConfig_FieldMask) PathsCount() int

func (*ProbingConfig_FieldMask) Project

func (fieldMask *ProbingConfig_FieldMask) Project(source *ProbingConfig) *ProbingConfig

func (*ProbingConfig_FieldMask) ProjectRaw

func (*ProbingConfig_FieldMask) ProtoMessage

func (fieldMask *ProbingConfig_FieldMask) ProtoMessage()

func (*ProbingConfig_FieldMask) ProtoReflect

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

func (*ProbingConfig_FieldMask) Reset

func (fieldMask *ProbingConfig_FieldMask) Reset()

func (*ProbingConfig_FieldMask) Set

func (fieldMask *ProbingConfig_FieldMask) Set(target, source *ProbingConfig)

func (*ProbingConfig_FieldMask) SetFromCliFlag

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

func (*ProbingConfig_FieldMask) SetRaw

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

func (*ProbingConfig_FieldMask) Size

func (fieldMask *ProbingConfig_FieldMask) Size() int

func (*ProbingConfig_FieldMask) String

func (fieldMask *ProbingConfig_FieldMask) String() string

func (*ProbingConfig_FieldMask) Subtract

func (*ProbingConfig_FieldMask) SubtractRaw

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

func (*ProbingConfig_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingConfig_FieldMask) Unmarshal

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

func (*ProbingConfig_FieldMask) UnmarshalJSON

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

type ProbingConfig_FieldPath

type ProbingConfig_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingConfig_FieldPathSelector
	Get(source *ProbingConfig) []interface{}
	GetSingle(source *ProbingConfig) (interface{}, bool)
	ClearValue(item *ProbingConfig)

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

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

func MustParseProbingConfig_FieldPath

func MustParseProbingConfig_FieldPath(rawField string) ProbingConfig_FieldPath

func ParseProbingConfig_FieldPath

func ParseProbingConfig_FieldPath(rawField string) (ProbingConfig_FieldPath, error)

type ProbingConfig_FieldPathArrayItemValue

type ProbingConfig_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingConfig_FieldPath
	ContainsValue(*ProbingConfig) bool
}

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

func MustParseProbingConfig_FieldPathArrayItemValue

func MustParseProbingConfig_FieldPathArrayItemValue(pathStr, valueStr string) ProbingConfig_FieldPathArrayItemValue

func ParseProbingConfig_FieldPathArrayItemValue

func ParseProbingConfig_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingConfig_FieldPathArrayItemValue, error)

ParseProbingConfig_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingConfig_FieldPathArrayOfValues

type ProbingConfig_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingConfig_FieldPath
}

ProbingConfig_FieldPathArrayOfValues allows storing slice of values for ProbingConfig fields according to their type

func MustParseProbingConfig_FieldPathArrayOfValues

func MustParseProbingConfig_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingConfig_FieldPathArrayOfValues

func ParseProbingConfig_FieldPathArrayOfValues

func ParseProbingConfig_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingConfig_FieldPathArrayOfValues, error)

type ProbingConfig_FieldPathSelector

type ProbingConfig_FieldPathSelector int32
const (
	ProbingConfig_FieldPathSelectorName        ProbingConfig_FieldPathSelector = 0
	ProbingConfig_FieldPathSelectorDisplayName ProbingConfig_FieldPathSelector = 1
	ProbingConfig_FieldPathSelectorMetadata    ProbingConfig_FieldPathSelector = 2
	ProbingConfig_FieldPathSelectorSpec        ProbingConfig_FieldPathSelector = 3
	ProbingConfig_FieldPathSelectorStatus      ProbingConfig_FieldPathSelector = 4
)

func (ProbingConfig_FieldPathSelector) String

type ProbingConfig_FieldPathValue

type ProbingConfig_FieldPathValue interface {
	ProbingConfig_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingConfig)
	CompareWith(*ProbingConfig) (cmp int, comparable bool)
}

ProbingConfig_FieldPathValue allows storing values for ProbingConfig fields according to their type

func MustParseProbingConfig_FieldPathValue

func MustParseProbingConfig_FieldPathValue(pathStr, valueStr string) ProbingConfig_FieldPathValue

func ParseProbingConfig_FieldPathValue

func ParseProbingConfig_FieldPathValue(pathStr, valueStr string) (ProbingConfig_FieldPathValue, error)

type ProbingConfig_FieldSubPath

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

func (*ProbingConfig_FieldSubPath) AsMetadataSubPath

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

func (*ProbingConfig_FieldSubPath) AsSpecSubPath

func (*ProbingConfig_FieldSubPath) AsStatusSubPath

func (*ProbingConfig_FieldSubPath) ClearValue

func (fps *ProbingConfig_FieldSubPath) ClearValue(item *ProbingConfig)

func (*ProbingConfig_FieldSubPath) ClearValueRaw

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

func (*ProbingConfig_FieldSubPath) Get

func (fps *ProbingConfig_FieldSubPath) Get(source *ProbingConfig) (values []interface{})

Get returns all values pointed by selected field from source ProbingConfig

func (*ProbingConfig_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfig_FieldSubPath) GetRaw

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

func (*ProbingConfig_FieldSubPath) GetSingle

func (fps *ProbingConfig_FieldSubPath) GetSingle(source *ProbingConfig) (interface{}, bool)

GetSingle returns value of selected field from source ProbingConfig

func (*ProbingConfig_FieldSubPath) GetSingleRaw

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

func (*ProbingConfig_FieldSubPath) IsLeaf

func (fps *ProbingConfig_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingConfig_FieldSubPath) JSONString

func (fps *ProbingConfig_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingConfig_FieldSubPath) Selector

func (*ProbingConfig_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfig_FieldSubPath) String

func (fps *ProbingConfig_FieldSubPath) String() string

String returns path representation in proto convention

func (*ProbingConfig_FieldSubPath) WithIArrayItemValue

func (fps *ProbingConfig_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingConfig_FieldPathArrayItemValue

func (*ProbingConfig_FieldSubPath) WithIArrayOfValues

func (fps *ProbingConfig_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingConfig_FieldPathArrayOfValues

func (*ProbingConfig_FieldSubPath) WithIValue

func (fps *ProbingConfig_FieldSubPath) WithIValue(value interface{}) ProbingConfig_FieldPathValue

func (*ProbingConfig_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingConfig_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingConfig_FieldSubPath) WithRawIValue

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

type ProbingConfig_FieldSubPathArrayItemValue

type ProbingConfig_FieldSubPathArrayItemValue struct {
	ProbingConfig_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*ProbingConfig_FieldSubPathArrayItemValue) AsSpecPathItemValue

func (*ProbingConfig_FieldSubPathArrayItemValue) AsStatusPathItemValue

func (*ProbingConfig_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *ProbingConfig_FieldSubPathArrayItemValue) ContainsValue(source *ProbingConfig) bool

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

func (*ProbingConfig_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingConfig_FieldSubPathArrayOfValues

type ProbingConfig_FieldSubPathArrayOfValues struct {
	ProbingConfig_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

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

func (*ProbingConfig_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues

func (*ProbingConfig_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues

func (*ProbingConfig_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingConfig_FieldSubPathValue

type ProbingConfig_FieldSubPathValue struct {
	ProbingConfig_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldSubPathValue) AsMetadataPathValue

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

func (*ProbingConfig_FieldSubPathValue) AsSpecPathValue

func (*ProbingConfig_FieldSubPathValue) AsStatusPathValue

func (*ProbingConfig_FieldSubPathValue) CompareWith

func (fpvs *ProbingConfig_FieldSubPathValue) CompareWith(source *ProbingConfig) (int, bool)

func (*ProbingConfig_FieldSubPathValue) CompareWithRaw

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

func (*ProbingConfig_FieldSubPathValue) GetRawValue

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

func (*ProbingConfig_FieldSubPathValue) SetTo

func (fpvs *ProbingConfig_FieldSubPathValue) SetTo(target **ProbingConfig)

func (*ProbingConfig_FieldSubPathValue) SetToRaw

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

type ProbingConfig_FieldTerminalPath

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

func (*ProbingConfig_FieldTerminalPath) ClearValue

func (fp *ProbingConfig_FieldTerminalPath) ClearValue(item *ProbingConfig)

func (*ProbingConfig_FieldTerminalPath) ClearValueRaw

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

func (*ProbingConfig_FieldTerminalPath) Get

func (fp *ProbingConfig_FieldTerminalPath) Get(source *ProbingConfig) (values []interface{})

Get returns all values pointed by specific field from source ProbingConfig

func (*ProbingConfig_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingConfig_FieldTerminalPath) GetRaw

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

func (*ProbingConfig_FieldTerminalPath) GetSingle

func (fp *ProbingConfig_FieldTerminalPath) GetSingle(source *ProbingConfig) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingConfig

func (*ProbingConfig_FieldTerminalPath) GetSingleRaw

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

func (*ProbingConfig_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingConfig_FieldTerminalPath) JSONString

func (fp *ProbingConfig_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingConfig_FieldTerminalPath) Selector

func (*ProbingConfig_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingConfig_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingConfig_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingConfig_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingConfig_FieldPathArrayItemValue

func (*ProbingConfig_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingConfig_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingConfig_FieldPathArrayOfValues

func (*ProbingConfig_FieldTerminalPath) WithIValue

func (fp *ProbingConfig_FieldTerminalPath) WithIValue(value interface{}) ProbingConfig_FieldPathValue

func (*ProbingConfig_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingConfig_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingConfig_FieldTerminalPath) WithRawIValue

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

type ProbingConfig_FieldTerminalPathArrayItemValue

type ProbingConfig_FieldTerminalPathArrayItemValue struct {
	ProbingConfig_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingConfig_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingConfig_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingConfig_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingConfig) (interface{}, bool)

func (*ProbingConfig_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingConfig_FieldTerminalPathArrayOfValues

type ProbingConfig_FieldTerminalPathArrayOfValues struct {
	ProbingConfig_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

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

func (*ProbingConfig_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*ProbingConfig_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*ProbingConfig_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues

func (fpaov *ProbingConfig_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues() ([]*ProbingConfig_Spec, bool)

func (*ProbingConfig_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues

func (fpaov *ProbingConfig_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*ProbingConfig_Status, bool)

func (*ProbingConfig_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingConfig_FieldTerminalPathValue

type ProbingConfig_FieldTerminalPathValue struct {
	ProbingConfig_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingConfig_FieldTerminalPathValue) AsDisplayNameValue

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

func (*ProbingConfig_FieldTerminalPathValue) AsMetadataValue

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

func (*ProbingConfig_FieldTerminalPathValue) AsNameValue

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

func (*ProbingConfig_FieldTerminalPathValue) AsSpecValue

func (*ProbingConfig_FieldTerminalPathValue) AsStatusValue

func (*ProbingConfig_FieldTerminalPathValue) CompareWith

func (fpv *ProbingConfig_FieldTerminalPathValue) CompareWith(source *ProbingConfig) (int, bool)

CompareWith compares value in the 'ProbingConfig_FieldTerminalPathValue' with the value under path in 'ProbingConfig'.

func (*ProbingConfig_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingConfig_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingConfig_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ProbingConfig

func (*ProbingConfig_FieldTerminalPathValue) SetToRaw

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

type ProbingConfig_ProbingSession added in v0.4.27

type ProbingConfig_ProbingSession struct {

	// Name of ProbingTarget
	Target *probing_target.Name `protobuf:"bytes,1,opt,customtype=Name,name=target,proto3" json:"target,omitempty" firestore:"target"`
	// Display name is a human readable representation of the target
	TargetDisplayName string `` /* 144-byte string literal not displayed */
	// group reference
	TargetGroup *probing_target_group.Reference `` /* 140-byte string literal not displayed */
	// 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 Group Name to enrich data.
	GroupName string `protobuf:"bytes,11,opt,name=group_name,json=groupName,proto3" json:"group_name,omitempty" firestore:"groupName"`
	// 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"`
	// (deprecated) Interval defines the interval of probing in seconds.
	IntervalSec int64 `protobuf:"varint,5,opt,name=interval_sec,json=intervalSec,proto3" json:"interval_sec,omitempty" firestore:"intervalSec"`
	// Interval defines probing interval
	Interval *duration.Duration `protobuf:"bytes,16,opt,name=interval,proto3" json:"interval,omitempty" firestore:"interval"`
	// TOS for ipv4 or Traffic class for ipv6. Don't set it (use defaults or
	// distribution overrides)
	Tos uint32 `protobuf:"varint,7,opt,name=tos,proto3" json:"tos,omitempty" firestore:"tos"`
	// Window size. Don't set it (use default_settings or distribution
	// overrides)
	WindowSize uint32 `protobuf:"varint,9,opt,name=window_size,json=windowSize,proto3" json:"window_size,omitempty" firestore:"windowSize"`
	// Path Probing settings. Don't set it (use default_settings or distribution
	// overrides)
	PathProbing *common.PathProbe `protobuf:"bytes,8,opt,name=path_probing,json=pathProbing,proto3" json:"path_probing,omitempty" firestore:"pathProbing"`
	// Speedtest specific settings
	SpeedtestSettings *common.SpeedTestSettings `` /* 143-byte string literal not displayed */
	// HTTP Probing Settings
	HttpProbingConfig *common.HTTPProbingConfig `` /* 145-byte string literal not displayed */
	// Proxy configuration (for speedtest and http)
	ProxyConfiguration *common.ProxyConfiguration `` /* 147-byte string literal not displayed */
	// 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"`
	// contains filtered or unexported fields
}

ProbingSession is target

func (*ProbingConfig_ProbingSession) Clone added in v0.4.27

func (*ProbingConfig_ProbingSession) CloneRaw added in v0.4.27

func (*ProbingConfig_ProbingSession) Descriptor added in v0.4.27

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

Deprecated, Use ProbingConfig_ProbingSession.ProtoReflect.Descriptor instead.

func (*ProbingConfig_ProbingSession) GetAddress added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetAddress() string

func (*ProbingConfig_ProbingSession) GetAddresses added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetCategory added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetCategory() string

func (*ProbingConfig_ProbingSession) GetGroupName added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetGroupName() string

func (*ProbingConfig_ProbingSession) GetHttpProbingConfig added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetInterval added in v0.4.27

func (*ProbingConfig_ProbingSession) GetIntervalSec added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetIntervalSec() int64

func (*ProbingConfig_ProbingSession) GetIpVersion added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetLocation added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetLocationType added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetMode added in v0.4.27

func (*ProbingConfig_ProbingSession) GetPathProbing added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetPathProbing() *common.PathProbe

func (*ProbingConfig_ProbingSession) GetProxyConfiguration added in v0.4.27

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

func (*ProbingConfig_ProbingSession) GetSpeedtestSettings added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetSpeedtestSettings() *common.SpeedTestSettings

func (*ProbingConfig_ProbingSession) GetTarget added in v0.4.27

func (*ProbingConfig_ProbingSession) GetTargetDisplayName added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetTargetDisplayName() string

func (*ProbingConfig_ProbingSession) GetTargetGroup added in v0.4.27

func (*ProbingConfig_ProbingSession) GetTos added in v0.4.27

func (*ProbingConfig_ProbingSession) GetWindowSize added in v0.4.27

func (m *ProbingConfig_ProbingSession) GetWindowSize() uint32

func (*ProbingConfig_ProbingSession) GotenMessage added in v0.4.27

func (*ProbingConfig_ProbingSession) GotenMessage()

func (*ProbingConfig_ProbingSession) GotenObjectExt added in v0.4.27

func (o *ProbingConfig_ProbingSession) GotenObjectExt()

func (*ProbingConfig_ProbingSession) GotenValidate added in v0.4.27

func (obj *ProbingConfig_ProbingSession) GotenValidate() error

func (*ProbingConfig_ProbingSession) MakeDiffFieldMask added in v0.4.27

func (*ProbingConfig_ProbingSession) MakeFullFieldMask added in v0.4.27

func (*ProbingConfig_ProbingSession) MakeRawDiffFieldMask added in v0.4.27

func (*ProbingConfig_ProbingSession) MakeRawFullFieldMask added in v0.4.27

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

func (*ProbingConfig_ProbingSession) Marshal added in v0.4.27

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

func (*ProbingConfig_ProbingSession) MarshalJSON added in v0.4.27

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

func (*ProbingConfig_ProbingSession) Merge added in v0.4.27

func (*ProbingConfig_ProbingSession) MergeRaw added in v0.4.27

func (*ProbingConfig_ProbingSession) ProtoMessage added in v0.4.27

func (*ProbingConfig_ProbingSession) ProtoMessage()

func (*ProbingConfig_ProbingSession) ProtoReflect added in v0.4.27

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

func (*ProbingConfig_ProbingSession) Reset added in v0.4.27

func (m *ProbingConfig_ProbingSession) Reset()

func (*ProbingConfig_ProbingSession) SetAddress added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetAddress(fv string)

func (*ProbingConfig_ProbingSession) SetAddresses added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetCategory added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetCategory(fv string)

func (*ProbingConfig_ProbingSession) SetGroupName added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetGroupName(fv string)

func (*ProbingConfig_ProbingSession) SetHttpProbingConfig added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetInterval added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetInterval(fv *duration.Duration)

func (*ProbingConfig_ProbingSession) SetIntervalSec added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetIntervalSec(fv int64)

func (*ProbingConfig_ProbingSession) SetIpVersion added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetLocation added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetLocationType added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetMode added in v0.4.27

func (*ProbingConfig_ProbingSession) SetPathProbing added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetPathProbing(fv *common.PathProbe)

func (*ProbingConfig_ProbingSession) SetProxyConfiguration added in v0.4.27

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

func (*ProbingConfig_ProbingSession) SetSpeedtestSettings added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetSpeedtestSettings(fv *common.SpeedTestSettings)

func (*ProbingConfig_ProbingSession) SetTarget added in v0.4.27

func (*ProbingConfig_ProbingSession) SetTargetDisplayName added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetTargetDisplayName(fv string)

func (*ProbingConfig_ProbingSession) SetTargetGroup added in v0.4.27

func (*ProbingConfig_ProbingSession) SetTos added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetTos(fv uint32)

func (*ProbingConfig_ProbingSession) SetWindowSize added in v0.4.27

func (m *ProbingConfig_ProbingSession) SetWindowSize(fv uint32)

func (*ProbingConfig_ProbingSession) String added in v0.4.27

func (*ProbingConfig_ProbingSession) Unmarshal added in v0.4.27

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

func (*ProbingConfig_ProbingSession) UnmarshalJSON added in v0.4.27

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

type ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders added in v0.4.27

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

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders added in v0.4.27

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

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorAddress added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorAddress struct{}

func (ProbingConfig_ProbingSessionPathSelectorAddress) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorAddress) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorAddress) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorAddresses added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorAddresses struct{}

func (ProbingConfig_ProbingSessionPathSelectorAddresses) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorAddresses) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorAddresses) WithItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorAddresses) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorCategory added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorCategory struct{}

func (ProbingConfig_ProbingSessionPathSelectorCategory) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorCategory) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorCategory) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorGroupName added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorGroupName struct{}

func (ProbingConfig_ProbingSessionPathSelectorGroupName) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorGroupName) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorGroupName) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) AuthConfig added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) HttpRequest added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithSubArrayItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithSubArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithSubPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithSubValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfig) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) Password added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) RequestHeaderTokenKey added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) TokenRequest added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) TokenResponseBodyExpiryKey added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) TokenResponseBodyKey added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) TokenResponseHeader added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) Username added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfig) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigPassword added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigPassword struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigPassword) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigPassword) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigPassword) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) AuthenticationMethod added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) ExpectedResponseCode added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) RequestBody added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) RequestHeaders added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) RequestMethod added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) Timeout added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) Url added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithKey added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigUsername added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigUsername struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigUsername) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigUsername) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigAuthConfigUsername) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) AuthenticationMethod added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) ExpectedResponseCode added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) RequestBody added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) RequestHeaders added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) RequestMethod added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) Timeout added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) Url added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequest) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestBody added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestBody) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestBody) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithKey added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestMethod added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestMethod) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestTimeout added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestTimeout) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestTimeout) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestTimeout) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestUrl added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestUrl struct{}

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestUrl) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestUrl) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorHttpProbingConfigHttpRequestUrl) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorInterval added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorInterval struct{}

func (ProbingConfig_ProbingSessionPathSelectorInterval) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorInterval) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorInterval) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorIntervalSec added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorIntervalSec struct{}

func (ProbingConfig_ProbingSessionPathSelectorIntervalSec) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorIntervalSec) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorIntervalSec) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorIpVersion added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorIpVersion struct{}

func (ProbingConfig_ProbingSessionPathSelectorIpVersion) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorIpVersion) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorIpVersion) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocation added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocation struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocation) Accuracy added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) Address added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) AdminHierarchy added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) Coordinates added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithSubArrayItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithSubArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithSubPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithSubValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocation) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAccuracy added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAccuracy struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAccuracy) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAccuracy) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAccuracy) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddress added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddress struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) AdminArea1 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) AdminArea2 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) AdminArea3 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) AdminArea4 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) Continent added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) Country added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) CountryCode added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) PostalCode added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) StreetAddress added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddress) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea1 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea1 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea1) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea1) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea1) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea2 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea2 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea2) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea2) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea2) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea3 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea3 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea3) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea3) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea3) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea4 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea4 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea4) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea4) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressAdminArea4) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressContinent added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressContinent struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressContinent) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressContinent) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressContinent) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressCountry added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressCountry struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountry) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountry) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountry) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressCountryCode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressCountryCode struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountryCode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountryCode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressCountryCode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressPostalCode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressPostalCode struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressPostalCode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressPostalCode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressPostalCode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressStreetAddress added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAddressStreetAddress struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressStreetAddress) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressStreetAddress) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAddressStreetAddress) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Admin1 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Admin2 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Admin3 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Admin4 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Admin5 added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Continent added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) Country added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchy) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin1 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin1) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin1) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin1) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin2 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin2) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin2) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin2) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin3 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin3) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin3) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin3) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin4 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin4) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin4) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin4) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin5 added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin5) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin5) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyAdmin5) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyContinent added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyContinent struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyContinent) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyContinent) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyContinent) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyCountry added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyCountry struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyCountry) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyCountry) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationAdminHierarchyCountry) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationCoordinates added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationCoordinates struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationCoordinates) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationCoordinates) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationCoordinates) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationType added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorLocationType struct{}

func (ProbingConfig_ProbingSessionPathSelectorLocationType) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationType) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorLocationType) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorMode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorMode struct{}

func (ProbingConfig_ProbingSessionPathSelectorMode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorMode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorMode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbing added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbing struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) Attempts added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) Enabled added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) Interval added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) IntervalSec added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) MaxTtl added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) Mode added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithSubArrayItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithSubArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithSubPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithSubValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbing) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingAttempts added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingAttempts struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingAttempts) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingAttempts) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingAttempts) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingEnabled added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingEnabled struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingEnabled) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingEnabled) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingEnabled) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingInterval added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingInterval struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingInterval) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingInterval) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingInterval) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingIntervalSec added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingIntervalSec struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingIntervalSec) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingIntervalSec) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingIntervalSec) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingMaxTtl added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingMaxTtl struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMaxTtl) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMaxTtl) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMaxTtl) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingMode added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorPathProbingMode struct{}

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMode) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMode) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorPathProbingMode) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfiguration added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfiguration struct{}

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) HttpProxy added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) HttpsProxy added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) NoProxy added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) ProxySetting added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithSubArrayItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithSubArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithSubPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithSubValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfiguration) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpProxy added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpProxy struct{}

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpProxy) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpProxy) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpProxy) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpsProxy added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpsProxy struct{}

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpsProxy) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpsProxy) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationHttpsProxy) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationNoProxy added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationNoProxy struct{}

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationNoProxy) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationNoProxy) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationNoProxy) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationProxySetting added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorProxyConfigurationProxySetting struct{}

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationProxySetting) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationProxySetting) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorProxyConfigurationProxySetting) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings struct{}

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) Duration added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) ServerSelection added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) TcpPort added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithSubArrayItemValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithSubArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithSubPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithSubValue added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettings) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsDuration added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsDuration struct{}

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsDuration) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsDuration) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsDuration) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsServerSelection added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsServerSelection struct{}

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsServerSelection) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsServerSelection) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsServerSelection) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsTcpPort added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsTcpPort struct{}

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsTcpPort) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsTcpPort) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorSpeedtestSettingsTcpPort) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTarget added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTarget struct{}

func (ProbingConfig_ProbingSessionPathSelectorTarget) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTarget) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTarget) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTargetDisplayName added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTargetDisplayName struct{}

func (ProbingConfig_ProbingSessionPathSelectorTargetDisplayName) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTargetDisplayName) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTargetDisplayName) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTargetGroup added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTargetGroup struct{}

func (ProbingConfig_ProbingSessionPathSelectorTargetGroup) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTargetGroup) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTargetGroup) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTos added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorTos struct{}

func (ProbingConfig_ProbingSessionPathSelectorTos) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTos) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorTos) WithValue added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorWindowSize added in v0.4.27

type ProbingConfig_ProbingSessionPathSelectorWindowSize struct{}

func (ProbingConfig_ProbingSessionPathSelectorWindowSize) FieldPath added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorWindowSize) WithArrayOfValues added in v0.4.27

func (ProbingConfig_ProbingSessionPathSelectorWindowSize) WithValue added in v0.4.27

type ProbingConfig_ProbingSession_FieldMask added in v0.4.27

type ProbingConfig_ProbingSession_FieldMask struct {
	Paths []ProbingConfigProbingSession_FieldPath
}

func FullProbingConfig_ProbingSession_FieldMask added in v0.4.27

func FullProbingConfig_ProbingSession_FieldMask() *ProbingConfig_ProbingSession_FieldMask

func (*ProbingConfig_ProbingSession_FieldMask) AppendPath added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) AppendRawPath added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) DecodeFirestore added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) EncodeFirestore added in v0.4.27

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

firestore encoding/decoding integration

func (*ProbingConfig_ProbingSession_FieldMask) FilterInputFields added in v0.4.27

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_ProbingSession_FieldMask) FromProtoFieldMask added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) GetPaths added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) GetRawPaths added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) IsFull added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) IsFull() bool

func (ProbingConfig_ProbingSession_FieldMask) Marshal added in v0.4.27

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

implement methods required by customType

func (ProbingConfig_ProbingSession_FieldMask) MarshalJSON added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) PathsCount added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) PathsCount() int

func (*ProbingConfig_ProbingSession_FieldMask) Project added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) ProjectRaw added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) ProtoMessage added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) ProtoMessage()

func (*ProbingConfig_ProbingSession_FieldMask) ProtoReflect added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) Reset added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) Reset()

func (*ProbingConfig_ProbingSession_FieldMask) Set added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) SetFromCliFlag added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) SetRaw added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) Size added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) Size() int

func (*ProbingConfig_ProbingSession_FieldMask) String added in v0.4.27

func (fieldMask *ProbingConfig_ProbingSession_FieldMask) String() string

func (*ProbingConfig_ProbingSession_FieldMask) Subtract added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) SubtractRaw added in v0.4.27

func (*ProbingConfig_ProbingSession_FieldMask) ToProtoFieldMask added in v0.4.27

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

ToFieldMask is used for proto conversions

func (*ProbingConfig_ProbingSession_FieldMask) Unmarshal added in v0.4.27

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

func (*ProbingConfig_ProbingSession_FieldMask) UnmarshalJSON added in v0.4.27

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

type ProbingConfig_Spec

type ProbingConfig_Spec struct {

	// probe is the probe resource which is expexted to execute
	// the probe config.
	Probe *probe.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=probe,proto3" json:"probe,omitempty" firestore:"probe"`
	// probing target defines a single probe destination target.
	ProbingSessions []*ProbingConfig_ProbingSession `` /* 134-byte string literal not displayed */
	Speedtest       *ProbingConfig_Spec_SpeedTest   `protobuf:"bytes,3,opt,name=speedtest,proto3" json:"speedtest,omitempty" firestore:"speedtest"`
	// target session defines a target server instance.
	TargetSessions []*ProbingConfig_ProbingSession `` /* 130-byte string literal not displayed */
	// contains filtered or unexported fields
}

describes how to probe a target

func (*ProbingConfig_Spec) Clone

func (*ProbingConfig_Spec) CloneRaw

func (*ProbingConfig_Spec) Descriptor

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

Deprecated, Use ProbingConfig_Spec.ProtoReflect.Descriptor instead.

func (*ProbingConfig_Spec) GetProbe

func (m *ProbingConfig_Spec) GetProbe() *probe.Reference

func (*ProbingConfig_Spec) GetProbingSessions

func (m *ProbingConfig_Spec) GetProbingSessions() []*ProbingConfig_ProbingSession

func (*ProbingConfig_Spec) GetSpeedtest

func (*ProbingConfig_Spec) GetTargetSessions

func (m *ProbingConfig_Spec) GetTargetSessions() []*ProbingConfig_ProbingSession

func (*ProbingConfig_Spec) GotenMessage

func (*ProbingConfig_Spec) GotenMessage()

func (*ProbingConfig_Spec) GotenObjectExt

func (o *ProbingConfig_Spec) GotenObjectExt()

func (*ProbingConfig_Spec) GotenValidate

func (obj *ProbingConfig_Spec) GotenValidate() error

func (*ProbingConfig_Spec) MakeDiffFieldMask

func (*ProbingConfig_Spec) MakeFullFieldMask

func (o *ProbingConfig_Spec) MakeFullFieldMask() *ProbingConfig_Spec_FieldMask

func (*ProbingConfig_Spec) MakeRawDiffFieldMask

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

func (*ProbingConfig_Spec) MakeRawFullFieldMask

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

func (*ProbingConfig_Spec) Marshal

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

func (*ProbingConfig_Spec) MarshalJSON

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

func (*ProbingConfig_Spec) Merge

func (o *ProbingConfig_Spec) Merge(source *ProbingConfig_Spec)

func (*ProbingConfig_Spec) MergeRaw

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

func (*ProbingConfig_Spec) ProtoMessage

func (*ProbingConfig_Spec) ProtoMessage()

func (*ProbingConfig_Spec) ProtoReflect

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

func (*ProbingConfig_Spec) Reset

func (m *ProbingConfig_Spec) Reset()

func (*ProbingConfig_Spec) SetProbe

func (m *ProbingConfig_Spec) SetProbe(fv *probe.Reference)

func (*ProbingConfig_Spec) SetProbingSessions

func (m *ProbingConfig_Spec) SetProbingSessions(fv []*ProbingConfig_ProbingSession)

func (*ProbingConfig_Spec) SetSpeedtest

func (m *ProbingConfig_Spec) SetSpeedtest(fv *ProbingConfig_Spec_SpeedTest)

func (*ProbingConfig_Spec) SetTargetSessions

func (m *ProbingConfig_Spec) SetTargetSessions(fv []*ProbingConfig_ProbingSession)

func (*ProbingConfig_Spec) String

func (m *ProbingConfig_Spec) String() string

func (*ProbingConfig_Spec) Unmarshal

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

func (*ProbingConfig_Spec) UnmarshalJSON

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

type ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecMapPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecMapPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfig_SpecPathSelectorProbe

type ProbingConfig_SpecPathSelectorProbe struct{}

func (ProbingConfig_SpecPathSelectorProbe) FieldPath

func (ProbingConfig_SpecPathSelectorProbe) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbe) WithValue

type ProbingConfig_SpecPathSelectorProbingSessions

type ProbingConfig_SpecPathSelectorProbingSessions struct{}

func (ProbingConfig_SpecPathSelectorProbingSessions) Address

func (ProbingConfig_SpecPathSelectorProbingSessions) Addresses

func (ProbingConfig_SpecPathSelectorProbingSessions) Category

func (ProbingConfig_SpecPathSelectorProbingSessions) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessions) GroupName

func (ProbingConfig_SpecPathSelectorProbingSessions) HttpProbingConfig

func (ProbingConfig_SpecPathSelectorProbingSessions) Interval

func (ProbingConfig_SpecPathSelectorProbingSessions) IntervalSec

func (ProbingConfig_SpecPathSelectorProbingSessions) IpVersion

func (ProbingConfig_SpecPathSelectorProbingSessions) Location

func (ProbingConfig_SpecPathSelectorProbingSessions) LocationType

func (ProbingConfig_SpecPathSelectorProbingSessions) Mode

func (ProbingConfig_SpecPathSelectorProbingSessions) PathProbing

func (ProbingConfig_SpecPathSelectorProbingSessions) ProxyConfiguration

func (ProbingConfig_SpecPathSelectorProbingSessions) SpeedtestSettings added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessions) Target

func (ProbingConfig_SpecPathSelectorProbingSessions) TargetDisplayName

func (ProbingConfig_SpecPathSelectorProbingSessions) TargetGroup

func (ProbingConfig_SpecPathSelectorProbingSessions) Tos

func (ProbingConfig_SpecPathSelectorProbingSessions) WindowSize

func (ProbingConfig_SpecPathSelectorProbingSessions) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessions) WithSubArrayItemValue

func (ProbingConfig_SpecPathSelectorProbingSessions) WithSubArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessions) WithSubPath

func (ProbingConfig_SpecPathSelectorProbingSessions) WithSubValue

func (ProbingConfig_SpecPathSelectorProbingSessions) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsAddress

type ProbingConfig_SpecPathSelectorProbingSessionsAddress struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsAddress) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsAddress) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsAddresses

type ProbingConfig_SpecPathSelectorProbingSessionsAddresses struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsAddresses) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsAddresses) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsAddresses) WithItemValue

func (ProbingConfig_SpecPathSelectorProbingSessionsAddresses) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsCategory

type ProbingConfig_SpecPathSelectorProbingSessionsCategory struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsCategory) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsCategory) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsCategory) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsGroupName

type ProbingConfig_SpecPathSelectorProbingSessionsGroupName struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsGroupName) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsGroupName) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsGroupName) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfig

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfig struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfig) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfig) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfig) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfig

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfig struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfig) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfig) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigPassword

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigPassword struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigPassword) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequest

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigUsername

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigUsername struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigAuthConfigUsername) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequest

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequest struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequest) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequest) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestBody

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestMethod

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestTimeout

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestUrl

type ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestUrl struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsHttpProbingConfigHttpRequestUrl) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsInterval

type ProbingConfig_SpecPathSelectorProbingSessionsInterval struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsInterval) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsInterval) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsInterval) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsIntervalSec

type ProbingConfig_SpecPathSelectorProbingSessionsIntervalSec struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsIntervalSec) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsIntervalSec) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsIntervalSec) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsIpVersion

type ProbingConfig_SpecPathSelectorProbingSessionsIpVersion struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsIpVersion) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsIpVersion) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsIpVersion) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocation

type ProbingConfig_SpecPathSelectorProbingSessionsLocation struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) Accuracy

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) Address

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) Coordinates

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocation) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAccuracy

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAccuracy struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAccuracy) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAccuracy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAccuracy) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddress

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddress struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddress) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddress) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea1

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea1 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea1) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea1) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea2

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea2 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea2) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea2) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea3

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea3 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea3) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea3) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea4

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea4 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea4) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressAdminArea4) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressContinent

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressContinent struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressContinent) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressContinent) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountry

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountry struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountry) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountry) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountryCode

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountryCode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountryCode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressCountryCode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressPostalCode

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressPostalCode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressPostalCode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressPostalCode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressStreetAddress

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressStreetAddress struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressStreetAddress) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAddressStreetAddress) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchy

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchy struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchy) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchy) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin1

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin1) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin2

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin2) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin3

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin3) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin4

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin4) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin5

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyAdmin5) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyContinent

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyContinent struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyContinent) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyContinent) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyCountry

type ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyCountry struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyCountry) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationAdminHierarchyCountry) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationCoordinates

type ProbingConfig_SpecPathSelectorProbingSessionsLocationCoordinates struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationCoordinates) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationCoordinates) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationCoordinates) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsLocationType

type ProbingConfig_SpecPathSelectorProbingSessionsLocationType struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationType) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationType) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsLocationType) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsMode

type ProbingConfig_SpecPathSelectorProbingSessionsMode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsMode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsMode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsMode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbing

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbing struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) Attempts

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) Enabled

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) Interval

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) MaxTtl

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) Mode

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbing) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingAttempts

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingAttempts struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingAttempts) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingAttempts) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingAttempts) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingEnabled

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingEnabled struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingEnabled) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingEnabled) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingEnabled) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingInterval

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingInterval struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingInterval) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingInterval) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingInterval) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingIntervalSec

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingIntervalSec struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingIntervalSec) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingIntervalSec) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingIntervalSec) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMaxTtl

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMaxTtl struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMaxTtl) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMaxTtl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMaxTtl) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMode

type ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMode struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMode) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsPathProbingMode) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfiguration

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfiguration struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfiguration) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfiguration) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfiguration) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpProxy

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpProxy struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpProxy) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpProxy) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpsProxy

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpsProxy struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpsProxy) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationHttpsProxy) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationNoProxy

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationNoProxy struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationNoProxy) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationNoProxy) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationProxySetting

type ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationProxySetting struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationProxySetting) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsProxyConfigurationProxySetting) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) Duration added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) ServerSelection added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) TcpPort added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettings) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsDuration added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsDuration struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsDuration) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsDuration) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsDuration) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsServerSelection added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsServerSelection struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsServerSelection) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsServerSelection) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsServerSelection) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsTcpPort added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsTcpPort struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsTcpPort) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsTcpPort) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorProbingSessionsSpeedtestSettingsTcpPort) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorProbingSessionsTarget

type ProbingConfig_SpecPathSelectorProbingSessionsTarget struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsTarget) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsTarget) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsTarget) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsTargetDisplayName

type ProbingConfig_SpecPathSelectorProbingSessionsTargetDisplayName struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetDisplayName) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetDisplayName) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetDisplayName) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsTargetGroup

type ProbingConfig_SpecPathSelectorProbingSessionsTargetGroup struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetGroup) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetGroup) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsTargetGroup) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsTos

type ProbingConfig_SpecPathSelectorProbingSessionsTos struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsTos) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsTos) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsTos) WithValue

type ProbingConfig_SpecPathSelectorProbingSessionsWindowSize

type ProbingConfig_SpecPathSelectorProbingSessionsWindowSize struct{}

func (ProbingConfig_SpecPathSelectorProbingSessionsWindowSize) FieldPath

func (ProbingConfig_SpecPathSelectorProbingSessionsWindowSize) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorProbingSessionsWindowSize) WithValue

type ProbingConfig_SpecPathSelectorSpeedtest

type ProbingConfig_SpecPathSelectorSpeedtest struct{}

func (ProbingConfig_SpecPathSelectorSpeedtest) Enabled

func (ProbingConfig_SpecPathSelectorSpeedtest) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtest) Interval

func (ProbingConfig_SpecPathSelectorSpeedtest) IntervalMinutes

func (ProbingConfig_SpecPathSelectorSpeedtest) Servers

func (ProbingConfig_SpecPathSelectorSpeedtest) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtest) WithSubArrayItemValue

func (ProbingConfig_SpecPathSelectorSpeedtest) WithSubArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtest) WithSubPath

func (ProbingConfig_SpecPathSelectorSpeedtest) WithSubValue

func (ProbingConfig_SpecPathSelectorSpeedtest) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestEnabled

type ProbingConfig_SpecPathSelectorSpeedtestEnabled struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestEnabled) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestEnabled) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestEnabled) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestInterval

type ProbingConfig_SpecPathSelectorSpeedtestInterval struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestInterval) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestInterval) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestInterval) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestIntervalMinutes

type ProbingConfig_SpecPathSelectorSpeedtestIntervalMinutes struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestIntervalMinutes) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestIntervalMinutes) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestIntervalMinutes) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServers

type ProbingConfig_SpecPathSelectorSpeedtestServers struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServers) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServers) IpAddresses

func (ProbingConfig_SpecPathSelectorSpeedtestServers) Location

func (ProbingConfig_SpecPathSelectorSpeedtestServers) Name

func (ProbingConfig_SpecPathSelectorSpeedtestServers) Target

func (ProbingConfig_SpecPathSelectorSpeedtestServers) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServers) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses

type ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses) WithItemValue

func (ProbingConfig_SpecPathSelectorSpeedtestServersIpAddresses) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocation

type ProbingConfig_SpecPathSelectorSpeedtestServersLocation struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) Accuracy

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) Address

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) Coordinates

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocation) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAccuracy

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAccuracy struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAccuracy) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAccuracy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAccuracy) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddress

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddress struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddress) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddress) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea1

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea1 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea1) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea1) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea2

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea2 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea2) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea2) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea3

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea3 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea3) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea3) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea4

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea4 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea4) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressAdminArea4) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressContinent

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressContinent struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressContinent) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressContinent) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountry

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountry struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountry) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountry) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountryCode

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountryCode struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountryCode) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressCountryCode) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressPostalCode

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressPostalCode struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressPostalCode) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressPostalCode) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressStreetAddress

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressStreetAddress struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressStreetAddress) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAddressStreetAddress) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchy

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchy struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchy) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchy) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin1

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin1) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin2

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin2) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin3

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin3) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin4

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin4) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin5

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyAdmin5) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyContinent

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyContinent struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyContinent) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyContinent) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyCountry

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyCountry struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyCountry) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationAdminHierarchyCountry) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationCoordinates

type ProbingConfig_SpecPathSelectorSpeedtestServersLocationCoordinates struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationCoordinates) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationCoordinates) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersLocationCoordinates) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersName

type ProbingConfig_SpecPathSelectorSpeedtestServersName struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersName) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersName) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersName) WithValue

type ProbingConfig_SpecPathSelectorSpeedtestServersTarget

type ProbingConfig_SpecPathSelectorSpeedtestServersTarget struct{}

func (ProbingConfig_SpecPathSelectorSpeedtestServersTarget) FieldPath

func (ProbingConfig_SpecPathSelectorSpeedtestServersTarget) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorSpeedtestServersTarget) WithValue

type ProbingConfig_SpecPathSelectorTargetSessions

type ProbingConfig_SpecPathSelectorTargetSessions struct{}

func (ProbingConfig_SpecPathSelectorTargetSessions) Address

func (ProbingConfig_SpecPathSelectorTargetSessions) Addresses

func (ProbingConfig_SpecPathSelectorTargetSessions) Category

func (ProbingConfig_SpecPathSelectorTargetSessions) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessions) GroupName

func (ProbingConfig_SpecPathSelectorTargetSessions) HttpProbingConfig

func (ProbingConfig_SpecPathSelectorTargetSessions) Interval

func (ProbingConfig_SpecPathSelectorTargetSessions) IntervalSec

func (ProbingConfig_SpecPathSelectorTargetSessions) IpVersion

func (ProbingConfig_SpecPathSelectorTargetSessions) Location

func (ProbingConfig_SpecPathSelectorTargetSessions) LocationType

func (ProbingConfig_SpecPathSelectorTargetSessions) Mode

func (ProbingConfig_SpecPathSelectorTargetSessions) PathProbing

func (ProbingConfig_SpecPathSelectorTargetSessions) ProxyConfiguration

func (ProbingConfig_SpecPathSelectorTargetSessions) SpeedtestSettings added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessions) Target

func (ProbingConfig_SpecPathSelectorTargetSessions) TargetDisplayName

func (ProbingConfig_SpecPathSelectorTargetSessions) TargetGroup

func (ProbingConfig_SpecPathSelectorTargetSessions) Tos

func (ProbingConfig_SpecPathSelectorTargetSessions) WindowSize

func (ProbingConfig_SpecPathSelectorTargetSessions) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessions) WithSubArrayItemValue

func (ProbingConfig_SpecPathSelectorTargetSessions) WithSubArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessions) WithSubPath

func (ProbingConfig_SpecPathSelectorTargetSessions) WithSubValue

func (ProbingConfig_SpecPathSelectorTargetSessions) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsAddress

type ProbingConfig_SpecPathSelectorTargetSessionsAddress struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsAddress) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsAddress) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsAddresses

type ProbingConfig_SpecPathSelectorTargetSessionsAddresses struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsAddresses) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsAddresses) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsAddresses) WithItemValue

func (ProbingConfig_SpecPathSelectorTargetSessionsAddresses) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsCategory

type ProbingConfig_SpecPathSelectorTargetSessionsCategory struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsCategory) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsCategory) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsCategory) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsGroupName

type ProbingConfig_SpecPathSelectorTargetSessionsGroupName struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsGroupName) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsGroupName) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsGroupName) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfig

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfig struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfig) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfig) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfig) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfig

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfig struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfig) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfig) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigPassword

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigPassword struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigPassword) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequest

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigUsername

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigUsername struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigAuthConfigUsername) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequest

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequest struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequest) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequest) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestBody

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestMethod

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestTimeout

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestUrl

type ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestUrl struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsHttpProbingConfigHttpRequestUrl) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsInterval

type ProbingConfig_SpecPathSelectorTargetSessionsInterval struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsInterval) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsInterval) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsInterval) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsIntervalSec

type ProbingConfig_SpecPathSelectorTargetSessionsIntervalSec struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsIntervalSec) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsIntervalSec) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsIntervalSec) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsIpVersion

type ProbingConfig_SpecPathSelectorTargetSessionsIpVersion struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsIpVersion) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsIpVersion) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsIpVersion) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocation

type ProbingConfig_SpecPathSelectorTargetSessionsLocation struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) Accuracy

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) Address

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) Coordinates

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocation) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAccuracy

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAccuracy struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAccuracy) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAccuracy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAccuracy) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddress

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddress struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddress) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddress) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea1

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea1 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea1) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea1) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea2

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea2 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea2) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea2) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea3

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea3 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea3) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea3) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea4

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea4 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea4) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressAdminArea4) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressContinent

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressContinent struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressContinent) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressContinent) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountry

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountry struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountry) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountry) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountryCode

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountryCode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountryCode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressCountryCode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressPostalCode

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressPostalCode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressPostalCode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressPostalCode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressStreetAddress

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressStreetAddress struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressStreetAddress) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAddressStreetAddress) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchy

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchy struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchy) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchy) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin1

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin1) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin2

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin2) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin3

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin3) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin4

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin4) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin5

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyAdmin5) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyContinent

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyContinent struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyContinent) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyContinent) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyCountry

type ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyCountry struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyCountry) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationAdminHierarchyCountry) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationCoordinates

type ProbingConfig_SpecPathSelectorTargetSessionsLocationCoordinates struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationCoordinates) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationCoordinates) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationCoordinates) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsLocationType

type ProbingConfig_SpecPathSelectorTargetSessionsLocationType struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationType) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationType) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsLocationType) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsMode

type ProbingConfig_SpecPathSelectorTargetSessionsMode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsMode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsMode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsMode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbing

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbing struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) Attempts

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) Enabled

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) Interval

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) MaxTtl

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) Mode

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbing) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingAttempts

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingAttempts struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingAttempts) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingAttempts) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingAttempts) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingEnabled

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingEnabled struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingEnabled) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingEnabled) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingEnabled) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingInterval

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingInterval struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingInterval) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingInterval) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingInterval) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingIntervalSec

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingIntervalSec struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingIntervalSec) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingIntervalSec) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingIntervalSec) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMaxTtl

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMaxTtl struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMaxTtl) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMaxTtl) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMaxTtl) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMode

type ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMode struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMode) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMode) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsPathProbingMode) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfiguration

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfiguration struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfiguration) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfiguration) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfiguration) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpProxy

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpProxy struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpProxy) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpProxy) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpsProxy

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpsProxy struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpsProxy) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationHttpsProxy) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationNoProxy

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationNoProxy struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationNoProxy) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationNoProxy) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationProxySetting

type ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationProxySetting struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationProxySetting) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsProxyConfigurationProxySetting) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) Duration added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) ServerSelection added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) TcpPort added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettings) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsDuration added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsDuration struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsDuration) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsDuration) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsDuration) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsServerSelection added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsServerSelection struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsServerSelection) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsServerSelection) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsServerSelection) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsTcpPort added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsTcpPort struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsTcpPort) FieldPath added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsTcpPort) WithArrayOfValues added in v0.4.26

func (ProbingConfig_SpecPathSelectorTargetSessionsSpeedtestSettingsTcpPort) WithValue added in v0.4.26

type ProbingConfig_SpecPathSelectorTargetSessionsTarget

type ProbingConfig_SpecPathSelectorTargetSessionsTarget struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsTarget) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsTarget) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsTarget) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsTargetDisplayName

type ProbingConfig_SpecPathSelectorTargetSessionsTargetDisplayName struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetDisplayName) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetDisplayName) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetDisplayName) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsTargetGroup

type ProbingConfig_SpecPathSelectorTargetSessionsTargetGroup struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetGroup) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetGroup) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsTargetGroup) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsTos

type ProbingConfig_SpecPathSelectorTargetSessionsTos struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsTos) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsTos) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsTos) WithValue

type ProbingConfig_SpecPathSelectorTargetSessionsWindowSize

type ProbingConfig_SpecPathSelectorTargetSessionsWindowSize struct{}

func (ProbingConfig_SpecPathSelectorTargetSessionsWindowSize) FieldPath

func (ProbingConfig_SpecPathSelectorTargetSessionsWindowSize) WithArrayOfValues

func (ProbingConfig_SpecPathSelectorTargetSessionsWindowSize) WithValue

type ProbingConfig_Spec_FieldMask

type ProbingConfig_Spec_FieldMask struct {
	Paths []ProbingConfigSpec_FieldPath
}

func FullProbingConfig_Spec_FieldMask

func FullProbingConfig_Spec_FieldMask() *ProbingConfig_Spec_FieldMask

func (*ProbingConfig_Spec_FieldMask) AppendPath

func (fieldMask *ProbingConfig_Spec_FieldMask) AppendPath(path ProbingConfigSpec_FieldPath)

func (*ProbingConfig_Spec_FieldMask) AppendRawPath

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

func (*ProbingConfig_Spec_FieldMask) DecodeFirestore

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

func (*ProbingConfig_Spec_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingConfig_Spec_FieldMask) FilterInputFields

func (fieldMask *ProbingConfig_Spec_FieldMask) FilterInputFields() *ProbingConfig_Spec_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_Spec_FieldMask) FromProtoFieldMask

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

func (*ProbingConfig_Spec_FieldMask) GetPaths

func (*ProbingConfig_Spec_FieldMask) GetRawPaths

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

func (*ProbingConfig_Spec_FieldMask) IsFull

func (fieldMask *ProbingConfig_Spec_FieldMask) IsFull() bool

func (ProbingConfig_Spec_FieldMask) Marshal

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

implement methods required by customType

func (ProbingConfig_Spec_FieldMask) MarshalJSON

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

func (*ProbingConfig_Spec_FieldMask) PathsCount

func (fieldMask *ProbingConfig_Spec_FieldMask) PathsCount() int

func (*ProbingConfig_Spec_FieldMask) Project

func (*ProbingConfig_Spec_FieldMask) ProjectRaw

func (*ProbingConfig_Spec_FieldMask) ProtoMessage

func (fieldMask *ProbingConfig_Spec_FieldMask) ProtoMessage()

func (*ProbingConfig_Spec_FieldMask) ProtoReflect

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

func (*ProbingConfig_Spec_FieldMask) Reset

func (fieldMask *ProbingConfig_Spec_FieldMask) Reset()

func (*ProbingConfig_Spec_FieldMask) Set

func (fieldMask *ProbingConfig_Spec_FieldMask) Set(target, source *ProbingConfig_Spec)

func (*ProbingConfig_Spec_FieldMask) SetFromCliFlag

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

func (*ProbingConfig_Spec_FieldMask) SetRaw

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

func (*ProbingConfig_Spec_FieldMask) Size

func (fieldMask *ProbingConfig_Spec_FieldMask) Size() int

func (*ProbingConfig_Spec_FieldMask) String

func (fieldMask *ProbingConfig_Spec_FieldMask) String() string

func (*ProbingConfig_Spec_FieldMask) Subtract

func (*ProbingConfig_Spec_FieldMask) SubtractRaw

func (*ProbingConfig_Spec_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingConfig_Spec_FieldMask) Unmarshal

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

func (*ProbingConfig_Spec_FieldMask) UnmarshalJSON

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

type ProbingConfig_Spec_SpeedTest

type ProbingConfig_Spec_SpeedTest struct {

	// enabled defines whether to enable or disable the speedtest
	Enabled bool `protobuf:"varint,1,opt,name=enabled,proto3" json:"enabled,omitempty" firestore:"enabled"`
	// (deprecated) interval_minutes defines the periodic interval for
	// repeating speedtest
	IntervalMinutes int64 `` /* 135-byte string literal not displayed */
	// interval defines the periodic interval for repeating speedtest
	Interval *duration.Duration `protobuf:"bytes,4,opt,name=interval,proto3" json:"interval,omitempty" firestore:"interval"`
	// servers list down all the available servers for speedtest. The agent
	// chooses the active server nearest to it for running the test
	// This might be a temporary api and we might have a discovery api later
	Servers []*ProbingConfig_Spec_SpeedTest_Server `protobuf:"bytes,3,rep,name=servers,proto3" json:"servers,omitempty" firestore:"servers"`
	// contains filtered or unexported fields
}

func (*ProbingConfig_Spec_SpeedTest) Clone

func (*ProbingConfig_Spec_SpeedTest) CloneRaw

func (*ProbingConfig_Spec_SpeedTest) Descriptor

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

Deprecated, Use ProbingConfig_Spec_SpeedTest.ProtoReflect.Descriptor instead.

func (*ProbingConfig_Spec_SpeedTest) GetEnabled

func (m *ProbingConfig_Spec_SpeedTest) GetEnabled() bool

func (*ProbingConfig_Spec_SpeedTest) GetInterval

func (*ProbingConfig_Spec_SpeedTest) GetIntervalMinutes

func (m *ProbingConfig_Spec_SpeedTest) GetIntervalMinutes() int64

func (*ProbingConfig_Spec_SpeedTest) GetServers

func (*ProbingConfig_Spec_SpeedTest) GotenMessage

func (*ProbingConfig_Spec_SpeedTest) GotenMessage()

func (*ProbingConfig_Spec_SpeedTest) GotenObjectExt

func (o *ProbingConfig_Spec_SpeedTest) GotenObjectExt()

func (*ProbingConfig_Spec_SpeedTest) GotenValidate

func (obj *ProbingConfig_Spec_SpeedTest) GotenValidate() error

func (*ProbingConfig_Spec_SpeedTest) MakeDiffFieldMask

func (*ProbingConfig_Spec_SpeedTest) MakeFullFieldMask

func (*ProbingConfig_Spec_SpeedTest) MakeRawDiffFieldMask

func (*ProbingConfig_Spec_SpeedTest) MakeRawFullFieldMask

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

func (*ProbingConfig_Spec_SpeedTest) Marshal

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

func (*ProbingConfig_Spec_SpeedTest) MarshalJSON

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

func (*ProbingConfig_Spec_SpeedTest) Merge

func (*ProbingConfig_Spec_SpeedTest) MergeRaw

func (*ProbingConfig_Spec_SpeedTest) ProtoMessage

func (*ProbingConfig_Spec_SpeedTest) ProtoMessage()

func (*ProbingConfig_Spec_SpeedTest) ProtoReflect

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

func (*ProbingConfig_Spec_SpeedTest) Reset

func (m *ProbingConfig_Spec_SpeedTest) Reset()

func (*ProbingConfig_Spec_SpeedTest) SetEnabled

func (m *ProbingConfig_Spec_SpeedTest) SetEnabled(fv bool)

func (*ProbingConfig_Spec_SpeedTest) SetInterval

func (m *ProbingConfig_Spec_SpeedTest) SetInterval(fv *duration.Duration)

func (*ProbingConfig_Spec_SpeedTest) SetIntervalMinutes

func (m *ProbingConfig_Spec_SpeedTest) SetIntervalMinutes(fv int64)

func (*ProbingConfig_Spec_SpeedTest) SetServers

func (*ProbingConfig_Spec_SpeedTest) String

func (*ProbingConfig_Spec_SpeedTest) Unmarshal

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

func (*ProbingConfig_Spec_SpeedTest) UnmarshalJSON

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

type ProbingConfig_Spec_SpeedTestPathSelectorEnabled

type ProbingConfig_Spec_SpeedTestPathSelectorEnabled struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorEnabled) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorEnabled) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorEnabled) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorInterval

type ProbingConfig_Spec_SpeedTestPathSelectorInterval struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorInterval) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorInterval) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorInterval) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorIntervalMinutes

type ProbingConfig_Spec_SpeedTestPathSelectorIntervalMinutes struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorIntervalMinutes) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorIntervalMinutes) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorIntervalMinutes) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServers

type ProbingConfig_Spec_SpeedTestPathSelectorServers struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServers) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServers) IpAddresses

func (ProbingConfig_Spec_SpeedTestPathSelectorServers) Location

func (ProbingConfig_Spec_SpeedTestPathSelectorServers) Name

func (ProbingConfig_Spec_SpeedTestPathSelectorServers) Target

type ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses

type ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses) WithItemValue

func (ProbingConfig_Spec_SpeedTestPathSelectorServersIpAddresses) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocation

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocation struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocation) Accuracy

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocation) Address

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocation) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocation) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocation) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAccuracy

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAccuracy struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAccuracy) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAccuracy) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAccuracy) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddress

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddress struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddress) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddress) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddress) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea1

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea1 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea1) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea1) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea2

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea2 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea2) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea2) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea3

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea3 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea3) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea3) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea4

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea4 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea4) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressAdminArea4) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressContinent

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressContinent struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressContinent) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressContinent) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressContinent) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountry

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountry struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountry) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountry) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountry) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountryCode

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountryCode struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountryCode) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressCountryCode) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressPostalCode

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressPostalCode struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressPostalCode) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressPostalCode) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressStreetAddress

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressStreetAddress struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressStreetAddress) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAddressStreetAddress) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchy

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchy struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchy) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchy) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin1

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin1) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin2

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin2) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin3

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin3) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin4

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin4) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin5

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyAdmin5) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyContinent

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyContinent struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyContinent) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyContinent) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyCountry

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyCountry struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyCountry) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationAdminHierarchyCountry) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationCoordinates

type ProbingConfig_Spec_SpeedTestPathSelectorServersLocationCoordinates struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationCoordinates) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationCoordinates) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersLocationCoordinates) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersName

type ProbingConfig_Spec_SpeedTestPathSelectorServersName struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersName) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersName) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersName) WithValue

type ProbingConfig_Spec_SpeedTestPathSelectorServersTarget

type ProbingConfig_Spec_SpeedTestPathSelectorServersTarget struct{}

func (ProbingConfig_Spec_SpeedTestPathSelectorServersTarget) FieldPath

func (ProbingConfig_Spec_SpeedTestPathSelectorServersTarget) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTestPathSelectorServersTarget) WithValue

type ProbingConfig_Spec_SpeedTest_FieldMask

type ProbingConfig_Spec_SpeedTest_FieldMask struct {
	Paths []ProbingConfigSpecSpeedTest_FieldPath
}

func FullProbingConfig_Spec_SpeedTest_FieldMask

func FullProbingConfig_Spec_SpeedTest_FieldMask() *ProbingConfig_Spec_SpeedTest_FieldMask

func (*ProbingConfig_Spec_SpeedTest_FieldMask) AppendPath

func (*ProbingConfig_Spec_SpeedTest_FieldMask) AppendRawPath

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) DecodeFirestore

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingConfig_Spec_SpeedTest_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_Spec_SpeedTest_FieldMask) FromProtoFieldMask

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) GetPaths

func (*ProbingConfig_Spec_SpeedTest_FieldMask) GetRawPaths

func (*ProbingConfig_Spec_SpeedTest_FieldMask) IsFull

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) IsFull() bool

func (ProbingConfig_Spec_SpeedTest_FieldMask) Marshal

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

implement methods required by customType

func (ProbingConfig_Spec_SpeedTest_FieldMask) MarshalJSON

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) PathsCount

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) PathsCount() int

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Project

func (*ProbingConfig_Spec_SpeedTest_FieldMask) ProjectRaw

func (*ProbingConfig_Spec_SpeedTest_FieldMask) ProtoMessage

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) ProtoMessage()

func (*ProbingConfig_Spec_SpeedTest_FieldMask) ProtoReflect

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Reset

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) Reset()

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Set

func (*ProbingConfig_Spec_SpeedTest_FieldMask) SetFromCliFlag

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) SetRaw

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Size

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) Size() int

func (*ProbingConfig_Spec_SpeedTest_FieldMask) String

func (fieldMask *ProbingConfig_Spec_SpeedTest_FieldMask) String() string

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Subtract

func (*ProbingConfig_Spec_SpeedTest_FieldMask) SubtractRaw

func (*ProbingConfig_Spec_SpeedTest_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingConfig_Spec_SpeedTest_FieldMask) Unmarshal

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

func (*ProbingConfig_Spec_SpeedTest_FieldMask) UnmarshalJSON

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

type ProbingConfig_Spec_SpeedTest_Server

type ProbingConfig_Spec_SpeedTest_Server struct {

	// label or name of the server to use for speedtest
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// Could be a dns name or ip addresses. can provide both v4 and v6
	// addresses
	IpAddresses []string `protobuf:"bytes,2,rep,name=ip_addresses,json=ipAddresses,proto3" json:"ip_addresses,omitempty" firestore:"ipAddresses"`
	// Location of the server. For now the agent would choose the nearest
	// server
	Location *common.Location     `protobuf:"bytes,3,opt,name=location,proto3" json:"location,omitempty" firestore:"location"`
	Target   *probing_target.Name `protobuf:"bytes,4,opt,customtype=Name,name=target,proto3" json:"target,omitempty" firestore:"target"`
	// contains filtered or unexported fields
}

Server defines the information about a speedtest server

func (*ProbingConfig_Spec_SpeedTest_Server) Clone

func (*ProbingConfig_Spec_SpeedTest_Server) CloneRaw

func (*ProbingConfig_Spec_SpeedTest_Server) Descriptor

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

Deprecated, Use ProbingConfig_Spec_SpeedTest_Server.ProtoReflect.Descriptor instead.

func (*ProbingConfig_Spec_SpeedTest_Server) GetIpAddresses

func (m *ProbingConfig_Spec_SpeedTest_Server) GetIpAddresses() []string

func (*ProbingConfig_Spec_SpeedTest_Server) GetLocation

func (*ProbingConfig_Spec_SpeedTest_Server) GetName

func (*ProbingConfig_Spec_SpeedTest_Server) GetTarget

func (*ProbingConfig_Spec_SpeedTest_Server) GotenMessage

func (*ProbingConfig_Spec_SpeedTest_Server) GotenMessage()

func (*ProbingConfig_Spec_SpeedTest_Server) GotenObjectExt

func (o *ProbingConfig_Spec_SpeedTest_Server) GotenObjectExt()

func (*ProbingConfig_Spec_SpeedTest_Server) GotenValidate

func (obj *ProbingConfig_Spec_SpeedTest_Server) GotenValidate() error

func (*ProbingConfig_Spec_SpeedTest_Server) MakeFullFieldMask

func (*ProbingConfig_Spec_SpeedTest_Server) MakeRawDiffFieldMask

func (*ProbingConfig_Spec_SpeedTest_Server) MakeRawFullFieldMask

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

func (*ProbingConfig_Spec_SpeedTest_Server) Marshal

func (*ProbingConfig_Spec_SpeedTest_Server) MarshalJSON

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

func (*ProbingConfig_Spec_SpeedTest_Server) Merge

func (*ProbingConfig_Spec_SpeedTest_Server) MergeRaw

func (*ProbingConfig_Spec_SpeedTest_Server) ProtoMessage

func (*ProbingConfig_Spec_SpeedTest_Server) ProtoMessage()

func (*ProbingConfig_Spec_SpeedTest_Server) ProtoReflect

func (*ProbingConfig_Spec_SpeedTest_Server) Reset

func (*ProbingConfig_Spec_SpeedTest_Server) SetIpAddresses

func (m *ProbingConfig_Spec_SpeedTest_Server) SetIpAddresses(fv []string)

func (*ProbingConfig_Spec_SpeedTest_Server) SetLocation

func (*ProbingConfig_Spec_SpeedTest_Server) SetName

func (*ProbingConfig_Spec_SpeedTest_Server) SetTarget

func (*ProbingConfig_Spec_SpeedTest_Server) String

func (*ProbingConfig_Spec_SpeedTest_Server) Unmarshal

func (*ProbingConfig_Spec_SpeedTest_Server) UnmarshalJSON

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

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses) WithItemValue

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorIpAddresses) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) Accuracy

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) Address

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithSubArrayItemValue

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithSubArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithSubPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithSubValue

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocation) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAccuracy

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAccuracy struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAccuracy) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAccuracy) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAccuracy) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddress

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddress struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddress) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddress) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddress) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea1

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea1 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea1) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea1) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea1) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea2

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea2 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea2) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea2) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea2) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea3

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea3 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea3) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea3) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea3) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea4

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea4 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea4) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea4) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressAdminArea4) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressContinent

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressContinent struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressContinent) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressContinent) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressContinent) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountry

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountry struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountry) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountry) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountry) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountryCode

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountryCode struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountryCode) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountryCode) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressCountryCode) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressPostalCode

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressPostalCode struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressPostalCode) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressPostalCode) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressPostalCode) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressStreetAddress

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressStreetAddress struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressStreetAddress) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressStreetAddress) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAddressStreetAddress) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchy

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchy struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchy) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchy) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchy) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin1

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin1 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin1) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin1) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin1) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin2

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin2 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin2) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin2) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin2) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin3

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin3 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin3) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin3) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin3) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin4

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin4 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin4) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin4) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin4) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin5

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin5 struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin5) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin5) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyAdmin5) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyContinent

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyContinent struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyContinent) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyContinent) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyContinent) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyCountry

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyCountry struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyCountry) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyCountry) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationAdminHierarchyCountry) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationCoordinates

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationCoordinates struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationCoordinates) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationCoordinates) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorLocationCoordinates) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorName

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorName struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorName) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorName) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorName) WithValue

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorTarget

type ProbingConfig_Spec_SpeedTest_ServerPathSelectorTarget struct{}

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorTarget) FieldPath

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorTarget) WithArrayOfValues

func (ProbingConfig_Spec_SpeedTest_ServerPathSelectorTarget) WithValue

type ProbingConfig_Spec_SpeedTest_Server_FieldMask

type ProbingConfig_Spec_SpeedTest_Server_FieldMask struct {
	Paths []ProbingConfigSpecSpeedTestServer_FieldPath
}

func FullProbingConfig_Spec_SpeedTest_Server_FieldMask

func FullProbingConfig_Spec_SpeedTest_Server_FieldMask() *ProbingConfig_Spec_SpeedTest_Server_FieldMask

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) AppendPath

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) AppendRawPath

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) DecodeFirestore

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

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) FromProtoFieldMask

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

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) GetPaths

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) GetRawPaths

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) IsFull

func (ProbingConfig_Spec_SpeedTest_Server_FieldMask) Marshal

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

implement methods required by customType

func (ProbingConfig_Spec_SpeedTest_Server_FieldMask) MarshalJSON

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

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) PathsCount

func (fieldMask *ProbingConfig_Spec_SpeedTest_Server_FieldMask) PathsCount() int

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) Project

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) ProjectRaw

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) ProtoMessage

func (fieldMask *ProbingConfig_Spec_SpeedTest_Server_FieldMask) ProtoMessage()

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) ProtoReflect

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) Reset

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) Set

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) SetFromCliFlag

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

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) SetRaw

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) Size

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) String

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) SubtractRaw

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) ToProtoFieldMask

ToFieldMask is used for proto conversions

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) Unmarshal

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

func (*ProbingConfig_Spec_SpeedTest_Server_FieldMask) UnmarshalJSON

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

type ProbingConfig_Status

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

func (*ProbingConfig_Status) Clone

func (*ProbingConfig_Status) CloneRaw

func (*ProbingConfig_Status) Descriptor

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

Deprecated, Use ProbingConfig_Status.ProtoReflect.Descriptor instead.

func (*ProbingConfig_Status) GotenMessage

func (*ProbingConfig_Status) GotenMessage()

func (*ProbingConfig_Status) GotenObjectExt

func (o *ProbingConfig_Status) GotenObjectExt()

func (*ProbingConfig_Status) GotenValidate

func (obj *ProbingConfig_Status) GotenValidate() error

func (*ProbingConfig_Status) MakeDiffFieldMask

func (*ProbingConfig_Status) MakeFullFieldMask

func (o *ProbingConfig_Status) MakeFullFieldMask() *ProbingConfig_Status_FieldMask

func (*ProbingConfig_Status) MakeRawDiffFieldMask

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

func (*ProbingConfig_Status) MakeRawFullFieldMask

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

func (*ProbingConfig_Status) Marshal

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

func (*ProbingConfig_Status) MarshalJSON

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

func (*ProbingConfig_Status) Merge

func (o *ProbingConfig_Status) Merge(source *ProbingConfig_Status)

func (*ProbingConfig_Status) MergeRaw

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

func (*ProbingConfig_Status) ProtoMessage

func (*ProbingConfig_Status) ProtoMessage()

func (*ProbingConfig_Status) ProtoReflect

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

func (*ProbingConfig_Status) Reset

func (m *ProbingConfig_Status) Reset()

func (*ProbingConfig_Status) String

func (m *ProbingConfig_Status) String() string

func (*ProbingConfig_Status) Unmarshal

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

func (*ProbingConfig_Status) UnmarshalJSON

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

type ProbingConfig_Status_FieldMask

type ProbingConfig_Status_FieldMask struct {
	Paths []ProbingConfigStatus_FieldPath
}

func FullProbingConfig_Status_FieldMask

func FullProbingConfig_Status_FieldMask() *ProbingConfig_Status_FieldMask

func (*ProbingConfig_Status_FieldMask) AppendPath

func (*ProbingConfig_Status_FieldMask) AppendRawPath

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

func (*ProbingConfig_Status_FieldMask) DecodeFirestore

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

func (*ProbingConfig_Status_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingConfig_Status_FieldMask) FilterInputFields

func (fieldMask *ProbingConfig_Status_FieldMask) FilterInputFields() *ProbingConfig_Status_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingConfig_Status_FieldMask) FromProtoFieldMask

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

func (*ProbingConfig_Status_FieldMask) GetPaths

func (*ProbingConfig_Status_FieldMask) GetRawPaths

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

func (*ProbingConfig_Status_FieldMask) IsFull

func (fieldMask *ProbingConfig_Status_FieldMask) IsFull() bool

func (ProbingConfig_Status_FieldMask) Marshal

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

implement methods required by customType

func (ProbingConfig_Status_FieldMask) MarshalJSON

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

func (*ProbingConfig_Status_FieldMask) PathsCount

func (fieldMask *ProbingConfig_Status_FieldMask) PathsCount() int

func (*ProbingConfig_Status_FieldMask) Project

func (*ProbingConfig_Status_FieldMask) ProjectRaw

func (*ProbingConfig_Status_FieldMask) ProtoMessage

func (fieldMask *ProbingConfig_Status_FieldMask) ProtoMessage()

func (*ProbingConfig_Status_FieldMask) ProtoReflect

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

func (*ProbingConfig_Status_FieldMask) Reset

func (fieldMask *ProbingConfig_Status_FieldMask) Reset()

func (*ProbingConfig_Status_FieldMask) Set

func (fieldMask *ProbingConfig_Status_FieldMask) Set(target, source *ProbingConfig_Status)

func (*ProbingConfig_Status_FieldMask) SetFromCliFlag

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

func (*ProbingConfig_Status_FieldMask) SetRaw

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

func (*ProbingConfig_Status_FieldMask) Size

func (fieldMask *ProbingConfig_Status_FieldMask) Size() int

func (*ProbingConfig_Status_FieldMask) String

func (fieldMask *ProbingConfig_Status_FieldMask) String() string

func (*ProbingConfig_Status_FieldMask) Subtract

func (*ProbingConfig_Status_FieldMask) SubtractRaw

func (*ProbingConfig_Status_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingConfig_Status_FieldMask) Unmarshal

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

func (*ProbingConfig_Status_FieldMask) UnmarshalJSON

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

type QueryResultChange

type QueryResultChange struct {
	Changes        []*ProbingConfigChange
	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 {
	ProbingConfigs    []*ProbingConfig
	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, probingConfig *ProbingConfig) (*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) GetProbingConfig

func (ref *Reference) GetProbingConfig() *ProbingConfig

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

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