probing_session

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Project_Region = "projects/{project}/regions/{region}/probingSessions/{probing_session}"
)

Variables

View Source
var (
	ProbingSessionType_name = map[int32]string{
		0: "CLIENT",
		1: "SERVER",
	}

	ProbingSessionType_value = map[string]int32{
		"CLIENT": 0,
		"SERVER": 1,
	}
)

Functions

func AsAnyCastAccess

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

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 ProbingSession_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 *ProbingSession) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	ProbingSession_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

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

func (*FilterConditionContains) EvaluateRaw

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

func (*FilterConditionContains) GetFieldPath

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 ProbingSession_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 {
	ProbingSession_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *ProbingSession) 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 ProbingSession_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 ProbingSession_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *ProbingSession) 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 ProbingSession_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 ProbingSession_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *ProbingSession) 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 ProbingSession_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 *ProbingSession) 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 ProbingSession_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 {
	ProbingSession_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *ProbingSession) 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 ProbingSession_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      *ProbingSession_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           *ProbingSession_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
	ProbingSessionId string `firestore:"probingSessionId"`
}

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 *ProbingSession) int

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *ProbingSession_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 ProbingSessionList, elem *ProbingSession) (ProbingSessionList, 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 ProbingSessionList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

type OrderByField struct {
	FieldPath ProbingSession_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 *ProbingSession) 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 ProbingSession

type ProbingSession struct {

	// Name of ProbingSession
	// 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 ProbingSession
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	// metadata describes additional information of the ProbingSession
	Metadata *ntt_meta.Meta `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// spec describes the to-be state of the ProbingSession
	Spec                 *ProbingSession_Spec              `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty" firestore:"spec"`
	ProbingDistribution  *probing_distribution.Reference   `` /* 171-byte string literal not displayed */
	ProbingDistributions []*probing_distribution.Reference `` /* 175-byte string literal not displayed */
	// status shows the current status of the ProbingSession
	Status *ProbingSession_Status `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty" firestore:"status"`
	// contains filtered or unexported fields
}

ProbingSession Resource

func (*ProbingSession) Clone

func (o *ProbingSession) Clone() *ProbingSession

func (*ProbingSession) CloneRaw

func (*ProbingSession) Descriptor

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

Deprecated, Use ProbingSession.ProtoReflect.Descriptor instead.

func (*ProbingSession) GetDisplayName

func (m *ProbingSession) GetDisplayName() string

func (*ProbingSession) GetMetadata

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

func (*ProbingSession) GetName

func (m *ProbingSession) GetName() *Name

func (*ProbingSession) GetProbingDistribution

func (m *ProbingSession) GetProbingDistribution() *probing_distribution.Reference

func (*ProbingSession) GetProbingDistributions added in v0.8.4

func (m *ProbingSession) GetProbingDistributions() []*probing_distribution.Reference

func (*ProbingSession) GetRawName

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

func (*ProbingSession) GetResourceDescriptor

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

func (*ProbingSession) GetSpec

func (m *ProbingSession) GetSpec() *ProbingSession_Spec

func (*ProbingSession) GetStatus

func (m *ProbingSession) GetStatus() *ProbingSession_Status

func (*ProbingSession) GotenMessage

func (*ProbingSession) GotenMessage()

func (*ProbingSession) GotenObjectExt

func (o *ProbingSession) GotenObjectExt()

func (*ProbingSession) GotenValidate

func (obj *ProbingSession) GotenValidate() error

func (*ProbingSession) MakeDiffFieldMask

func (o *ProbingSession) MakeDiffFieldMask(other *ProbingSession) *ProbingSession_FieldMask

func (*ProbingSession) MakeFullFieldMask

func (o *ProbingSession) MakeFullFieldMask() *ProbingSession_FieldMask

func (*ProbingSession) MakeRawDiffFieldMask

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

func (*ProbingSession) MakeRawFullFieldMask

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

func (*ProbingSession) Marshal

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

func (*ProbingSession) MarshalJSON

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

func (*ProbingSession) MaybePopulateDefaults

func (r *ProbingSession) MaybePopulateDefaults() error

func (*ProbingSession) Merge

func (o *ProbingSession) Merge(source *ProbingSession)

func (*ProbingSession) MergeRaw

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

func (*ProbingSession) ProtoMessage

func (*ProbingSession) ProtoMessage()

func (*ProbingSession) ProtoReflect

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

func (*ProbingSession) Reset

func (m *ProbingSession) Reset()

func (*ProbingSession) SetDisplayName

func (m *ProbingSession) SetDisplayName(fv string)

func (*ProbingSession) SetMetadata

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

func (*ProbingSession) SetName

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

func (*ProbingSession) SetProbingDistribution

func (m *ProbingSession) SetProbingDistribution(fv *probing_distribution.Reference)

func (*ProbingSession) SetProbingDistributions added in v0.8.4

func (m *ProbingSession) SetProbingDistributions(fv []*probing_distribution.Reference)

func (*ProbingSession) SetSpec

func (m *ProbingSession) SetSpec(fv *ProbingSession_Spec)

func (*ProbingSession) SetStatus

func (m *ProbingSession) SetStatus(fv *ProbingSession_Status)

func (*ProbingSession) String

func (m *ProbingSession) String() string

func (*ProbingSession) Unmarshal

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

func (*ProbingSession) UnmarshalJSON

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

type ProbingSessionAccess

type ProbingSessionAccess interface {
	GetProbingSession(context.Context, *GetQuery) (*ProbingSession, error)
	BatchGetProbingSessions(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryProbingSessions(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	SearchProbingSessions(context.Context, *SearchQuery) (*QueryResultSnapshot, error)
	WatchProbingSession(context.Context, *GetQuery, func(*ProbingSessionChange) error) error
	WatchProbingSessions(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveProbingSession(context.Context, *ProbingSession, ...gotenresource.SaveOption) error
	DeleteProbingSession(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type ProbingSessionChange

type ProbingSessionChange struct {

	// ProbingSession change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*ProbingSessionChange_Added_
	//	*ProbingSessionChange_Modified_
	//	*ProbingSessionChange_Current_
	//	*ProbingSessionChange_Removed_
	ChangeType isProbingSessionChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*ProbingSessionChange) Descriptor

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

Deprecated, Use ProbingSessionChange.ProtoReflect.Descriptor instead.

func (*ProbingSessionChange) GetAdded

func (*ProbingSessionChange) GetChangeType

func (m *ProbingSessionChange) GetChangeType() isProbingSessionChange_ChangeType

func (*ProbingSessionChange) GetCurrent

func (*ProbingSessionChange) GetCurrentViewIndex

func (c *ProbingSessionChange) GetCurrentViewIndex() int32

func (*ProbingSessionChange) GetModified

func (*ProbingSessionChange) GetPreviousViewIndex

func (c *ProbingSessionChange) GetPreviousViewIndex() int32

func (*ProbingSessionChange) GetProbingSession

func (c *ProbingSessionChange) GetProbingSession() *ProbingSession

func (*ProbingSessionChange) GetProbingSessionName

func (c *ProbingSessionChange) GetProbingSessionName() *Name

func (*ProbingSessionChange) GetRawName

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

func (*ProbingSessionChange) GetRawResource added in v0.5.1

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

func (*ProbingSessionChange) GetRemoved

func (*ProbingSessionChange) GotenMessage

func (*ProbingSessionChange) GotenMessage()

func (*ProbingSessionChange) GotenValidate

func (obj *ProbingSessionChange) GotenValidate() error

func (*ProbingSessionChange) IsAdd

func (c *ProbingSessionChange) IsAdd() bool

func (*ProbingSessionChange) IsCurrent

func (c *ProbingSessionChange) IsCurrent() bool

func (*ProbingSessionChange) IsDelete

func (c *ProbingSessionChange) IsDelete() bool

func (*ProbingSessionChange) IsModify

func (c *ProbingSessionChange) IsModify() bool

func (*ProbingSessionChange) Marshal

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

func (*ProbingSessionChange) MarshalJSON

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

func (*ProbingSessionChange) ProtoMessage

func (*ProbingSessionChange) ProtoMessage()

func (*ProbingSessionChange) ProtoReflect

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

func (*ProbingSessionChange) Reset

func (m *ProbingSessionChange) Reset()

func (*ProbingSessionChange) SetAdded

func (*ProbingSessionChange) SetAddedRaw

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

func (*ProbingSessionChange) SetChangeType

func (m *ProbingSessionChange) SetChangeType(ofv isProbingSessionChange_ChangeType)

func (*ProbingSessionChange) SetCurrent

func (*ProbingSessionChange) SetCurrentRaw

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

func (*ProbingSessionChange) SetDeletedRaw

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

func (*ProbingSessionChange) SetModified

func (*ProbingSessionChange) SetModifiedRaw

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

func (*ProbingSessionChange) SetRemoved

func (*ProbingSessionChange) String

func (m *ProbingSessionChange) String() string

func (*ProbingSessionChange) Unmarshal

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

func (*ProbingSessionChange) UnmarshalJSON

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

type ProbingSessionChangeList

type ProbingSessionChangeList []*ProbingSessionChange

func (ProbingSessionChangeList) Append

func (ProbingSessionChangeList) AppendList

func (ProbingSessionChangeList) At

func (ProbingSessionChangeList) Length

func (l ProbingSessionChangeList) Length() int

func (ProbingSessionChangeList) Set

func (ProbingSessionChangeList) Slice

type ProbingSessionChangeMap

type ProbingSessionChangeMap map[Name]*ProbingSessionChange

func (ProbingSessionChangeMap) Delete

func (ProbingSessionChangeMap) ForEach

func (ProbingSessionChangeMap) Get

func (ProbingSessionChangeMap) Length

func (m ProbingSessionChangeMap) Length() int

func (ProbingSessionChangeMap) Set

type ProbingSessionChange_Added

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

ProbingSession has been added to query view

func (*ProbingSessionChange_Added) Descriptor

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

Deprecated, Use ProbingSessionChange_Added.ProtoReflect.Descriptor instead.

func (*ProbingSessionChange_Added) GetProbingSession

func (m *ProbingSessionChange_Added) GetProbingSession() *ProbingSession

func (*ProbingSessionChange_Added) GetViewIndex

func (m *ProbingSessionChange_Added) GetViewIndex() int32

func (*ProbingSessionChange_Added) GotenMessage

func (*ProbingSessionChange_Added) GotenMessage()

func (*ProbingSessionChange_Added) GotenValidate

func (obj *ProbingSessionChange_Added) GotenValidate() error

func (*ProbingSessionChange_Added) Marshal

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

func (*ProbingSessionChange_Added) MarshalJSON

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

func (*ProbingSessionChange_Added) ProtoMessage

func (*ProbingSessionChange_Added) ProtoMessage()

func (*ProbingSessionChange_Added) ProtoReflect

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

func (*ProbingSessionChange_Added) Reset

func (m *ProbingSessionChange_Added) Reset()

func (*ProbingSessionChange_Added) SetProbingSession

func (m *ProbingSessionChange_Added) SetProbingSession(fv *ProbingSession)

func (*ProbingSessionChange_Added) SetViewIndex

func (m *ProbingSessionChange_Added) SetViewIndex(fv int32)

func (*ProbingSessionChange_Added) String

func (m *ProbingSessionChange_Added) String() string

func (*ProbingSessionChange_Added) Unmarshal

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

func (*ProbingSessionChange_Added) UnmarshalJSON

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

type ProbingSessionChange_Added_

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

type ProbingSessionChange_Current

type ProbingSessionChange_Current struct {
	ProbingSession *ProbingSession `` /* 130-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*ProbingSessionChange_Current) Descriptor

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

Deprecated, Use ProbingSessionChange_Current.ProtoReflect.Descriptor instead.

func (*ProbingSessionChange_Current) GetProbingSession

func (m *ProbingSessionChange_Current) GetProbingSession() *ProbingSession

func (*ProbingSessionChange_Current) GotenMessage

func (*ProbingSessionChange_Current) GotenMessage()

func (*ProbingSessionChange_Current) GotenValidate

func (obj *ProbingSessionChange_Current) GotenValidate() error

func (*ProbingSessionChange_Current) Marshal

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

func (*ProbingSessionChange_Current) MarshalJSON

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

func (*ProbingSessionChange_Current) ProtoMessage

func (*ProbingSessionChange_Current) ProtoMessage()

func (*ProbingSessionChange_Current) ProtoReflect

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

func (*ProbingSessionChange_Current) Reset

func (m *ProbingSessionChange_Current) Reset()

func (*ProbingSessionChange_Current) SetProbingSession

func (m *ProbingSessionChange_Current) SetProbingSession(fv *ProbingSession)

func (*ProbingSessionChange_Current) String

func (*ProbingSessionChange_Current) Unmarshal

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

func (*ProbingSessionChange_Current) UnmarshalJSON

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

type ProbingSessionChange_Current_

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

type ProbingSessionChange_Modified

type ProbingSessionChange_Modified struct {

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

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

func (*ProbingSessionChange_Modified) Descriptor

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

Deprecated, Use ProbingSessionChange_Modified.ProtoReflect.Descriptor instead.

func (*ProbingSessionChange_Modified) GetFieldMask

func (*ProbingSessionChange_Modified) GetName

func (m *ProbingSessionChange_Modified) GetName() *Name

func (*ProbingSessionChange_Modified) GetPreviousViewIndex

func (m *ProbingSessionChange_Modified) GetPreviousViewIndex() int32

func (*ProbingSessionChange_Modified) GetProbingSession

func (m *ProbingSessionChange_Modified) GetProbingSession() *ProbingSession

func (*ProbingSessionChange_Modified) GetViewIndex

func (m *ProbingSessionChange_Modified) GetViewIndex() int32

func (*ProbingSessionChange_Modified) GotenMessage

func (*ProbingSessionChange_Modified) GotenMessage()

func (*ProbingSessionChange_Modified) GotenValidate

func (obj *ProbingSessionChange_Modified) GotenValidate() error

func (*ProbingSessionChange_Modified) Marshal

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

func (*ProbingSessionChange_Modified) MarshalJSON

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

func (*ProbingSessionChange_Modified) ProtoMessage

func (*ProbingSessionChange_Modified) ProtoMessage()

func (*ProbingSessionChange_Modified) ProtoReflect

func (*ProbingSessionChange_Modified) Reset

func (m *ProbingSessionChange_Modified) Reset()

func (*ProbingSessionChange_Modified) SetFieldMask

func (*ProbingSessionChange_Modified) SetName

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

func (*ProbingSessionChange_Modified) SetPreviousViewIndex

func (m *ProbingSessionChange_Modified) SetPreviousViewIndex(fv int32)

func (*ProbingSessionChange_Modified) SetProbingSession

func (m *ProbingSessionChange_Modified) SetProbingSession(fv *ProbingSession)

func (*ProbingSessionChange_Modified) SetViewIndex

func (m *ProbingSessionChange_Modified) SetViewIndex(fv int32)

func (*ProbingSessionChange_Modified) String

func (*ProbingSessionChange_Modified) Unmarshal

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

func (*ProbingSessionChange_Modified) UnmarshalJSON

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

type ProbingSessionChange_Modified_

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

type ProbingSessionChange_Removed

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

func (*ProbingSessionChange_Removed) Descriptor

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

Deprecated, Use ProbingSessionChange_Removed.ProtoReflect.Descriptor instead.

func (*ProbingSessionChange_Removed) GetName

func (m *ProbingSessionChange_Removed) GetName() *Name

func (*ProbingSessionChange_Removed) GetViewIndex

func (m *ProbingSessionChange_Removed) GetViewIndex() int32

func (*ProbingSessionChange_Removed) GotenMessage

func (*ProbingSessionChange_Removed) GotenMessage()

func (*ProbingSessionChange_Removed) GotenValidate

func (obj *ProbingSessionChange_Removed) GotenValidate() error

func (*ProbingSessionChange_Removed) Marshal

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

func (*ProbingSessionChange_Removed) MarshalJSON

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

func (*ProbingSessionChange_Removed) ProtoMessage

func (*ProbingSessionChange_Removed) ProtoMessage()

func (*ProbingSessionChange_Removed) ProtoReflect

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

func (*ProbingSessionChange_Removed) Reset

func (m *ProbingSessionChange_Removed) Reset()

func (*ProbingSessionChange_Removed) SetName

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

func (*ProbingSessionChange_Removed) SetViewIndex

func (m *ProbingSessionChange_Removed) SetViewIndex(fv int32)

func (*ProbingSessionChange_Removed) String

func (*ProbingSessionChange_Removed) Unmarshal

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

func (*ProbingSessionChange_Removed) UnmarshalJSON

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

type ProbingSessionChange_Removed_

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

type ProbingSessionFieldPathBuilder

type ProbingSessionFieldPathBuilder struct{}

func NewProbingSessionFieldPathBuilder

func NewProbingSessionFieldPathBuilder() ProbingSessionFieldPathBuilder

func (ProbingSessionFieldPathBuilder) DisplayName

func (ProbingSessionFieldPathBuilder) Metadata

func (ProbingSessionFieldPathBuilder) Name

func (ProbingSessionFieldPathBuilder) ProbingDistribution

func (ProbingSessionFieldPathBuilder) ProbingDistributions added in v0.8.4

func (ProbingSessionFieldPathBuilder) Spec

func (ProbingSessionFieldPathBuilder) Status

type ProbingSessionList

type ProbingSessionList []*ProbingSession

func (ProbingSessionList) Append

func (ProbingSessionList) AppendList

func (ProbingSessionList) At

func (ProbingSessionList) Length

func (l ProbingSessionList) Length() int

func (ProbingSessionList) Set

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

func (ProbingSessionList) Slice

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

type ProbingSessionMap

type ProbingSessionMap map[Name]*ProbingSession

func (ProbingSessionMap) Delete

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

func (ProbingSessionMap) ForEach

func (ProbingSessionMap) Get

func (ProbingSessionMap) Length

func (m ProbingSessionMap) Length() int

func (ProbingSessionMap) Set

type ProbingSessionMapPathSelectorMetadataAnnotations

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

func (ProbingSessionMapPathSelectorMetadataAnnotations) FieldPath

func (ProbingSessionMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingSessionMapPathSelectorMetadataAnnotations) WithValue

type ProbingSessionMapPathSelectorMetadataLabels

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

func (ProbingSessionMapPathSelectorMetadataLabels) FieldPath

func (ProbingSessionMapPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingSessionMapPathSelectorMetadataLabels) WithValue

type ProbingSessionMapPathSelectorMetadataShards

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

func (ProbingSessionMapPathSelectorMetadataShards) FieldPath

func (ProbingSessionMapPathSelectorMetadataShards) WithArrayOfValues

func (ProbingSessionMapPathSelectorMetadataShards) WithValue

type ProbingSessionMapPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingSessionMapPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingSessionMapPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingSessionNameList

type ProbingSessionNameList []*Name

func (ProbingSessionNameList) Append

func (ProbingSessionNameList) AppendList

func (ProbingSessionNameList) At

func (ProbingSessionNameList) Length

func (l ProbingSessionNameList) Length() int

func (ProbingSessionNameList) Set

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

func (ProbingSessionNameList) Slice

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

type ProbingSessionParentNameList

type ProbingSessionParentNameList []*ParentName

func (ProbingSessionParentNameList) Append

func (ProbingSessionParentNameList) AppendList

func (ProbingSessionParentNameList) At

func (ProbingSessionParentNameList) Length

func (l ProbingSessionParentNameList) Length() int

func (ProbingSessionParentNameList) Set

func (ProbingSessionParentNameList) Slice

type ProbingSessionParentReferenceList

type ProbingSessionParentReferenceList []*ParentReference

func (ProbingSessionParentReferenceList) Append

func (ProbingSessionParentReferenceList) AppendList

func (ProbingSessionParentReferenceList) At

func (ProbingSessionParentReferenceList) Length

func (ProbingSessionParentReferenceList) Set

func (ProbingSessionParentReferenceList) Slice

type ProbingSessionPathSelectorDisplayName

type ProbingSessionPathSelectorDisplayName struct{}

func (ProbingSessionPathSelectorDisplayName) FieldPath

func (ProbingSessionPathSelectorDisplayName) WithArrayOfValues

func (ProbingSessionPathSelectorDisplayName) WithValue

type ProbingSessionPathSelectorMetadata

type ProbingSessionPathSelectorMetadata struct{}

func (ProbingSessionPathSelectorMetadata) Annotations

func (ProbingSessionPathSelectorMetadata) CreateTime

func (ProbingSessionPathSelectorMetadata) DeleteTime added in v0.7.1

func (ProbingSessionPathSelectorMetadata) FieldPath

func (ProbingSessionPathSelectorMetadata) Generation

func (ProbingSessionPathSelectorMetadata) Labels

func (ProbingSessionPathSelectorMetadata) Lifecycle added in v0.7.1

func (ProbingSessionPathSelectorMetadata) OwnerReferences

func (ProbingSessionPathSelectorMetadata) ResourceVersion

func (ProbingSessionPathSelectorMetadata) Shards

func (ProbingSessionPathSelectorMetadata) Syncing

func (ProbingSessionPathSelectorMetadata) Tags

func (ProbingSessionPathSelectorMetadata) UpdateTime

func (ProbingSessionPathSelectorMetadata) Uuid

func (ProbingSessionPathSelectorMetadata) WithArrayOfValues

func (ProbingSessionPathSelectorMetadata) WithSubArrayItemValue

func (ProbingSessionPathSelectorMetadata) WithSubArrayOfValues

func (ProbingSessionPathSelectorMetadata) WithSubPath

func (ProbingSessionPathSelectorMetadata) WithSubValue

func (ProbingSessionPathSelectorMetadata) WithValue

type ProbingSessionPathSelectorMetadataAnnotations

type ProbingSessionPathSelectorMetadataAnnotations struct{}

func (ProbingSessionPathSelectorMetadataAnnotations) FieldPath

func (ProbingSessionPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataAnnotations) WithKey

func (ProbingSessionPathSelectorMetadataAnnotations) WithValue

type ProbingSessionPathSelectorMetadataCreateTime

type ProbingSessionPathSelectorMetadataCreateTime struct{}

func (ProbingSessionPathSelectorMetadataCreateTime) FieldPath

func (ProbingSessionPathSelectorMetadataCreateTime) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataCreateTime) WithValue

type ProbingSessionPathSelectorMetadataDeleteTime added in v0.7.1

type ProbingSessionPathSelectorMetadataDeleteTime struct{}

func (ProbingSessionPathSelectorMetadataDeleteTime) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataDeleteTime) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataDeleteTime) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataGeneration

type ProbingSessionPathSelectorMetadataGeneration struct{}

func (ProbingSessionPathSelectorMetadataGeneration) FieldPath

func (ProbingSessionPathSelectorMetadataGeneration) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataGeneration) WithValue

type ProbingSessionPathSelectorMetadataLabels

type ProbingSessionPathSelectorMetadataLabels struct{}

func (ProbingSessionPathSelectorMetadataLabels) FieldPath

func (ProbingSessionPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataLabels) WithKey

func (ProbingSessionPathSelectorMetadataLabels) WithValue

type ProbingSessionPathSelectorMetadataLifecycle added in v0.7.1

type ProbingSessionPathSelectorMetadataLifecycle struct{}

func (ProbingSessionPathSelectorMetadataLifecycle) BlockDeletion added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycle) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycle) State added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycle) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycle) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataLifecycleBlockDeletion added in v0.7.1

type ProbingSessionPathSelectorMetadataLifecycleBlockDeletion struct{}

func (ProbingSessionPathSelectorMetadataLifecycleBlockDeletion) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycleBlockDeletion) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataLifecycleState added in v0.7.1

type ProbingSessionPathSelectorMetadataLifecycleState struct{}

func (ProbingSessionPathSelectorMetadataLifecycleState) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycleState) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataLifecycleState) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferences

type ProbingSessionPathSelectorMetadataOwnerReferences struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferences) Controller

func (ProbingSessionPathSelectorMetadataOwnerReferences) FieldPath

func (ProbingSessionPathSelectorMetadataOwnerReferences) Kind

func (ProbingSessionPathSelectorMetadataOwnerReferences) Name

func (ProbingSessionPathSelectorMetadataOwnerReferences) Region added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferences) RequiresOwnerReference added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferences) Version added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataOwnerReferences) WithItemValue

func (ProbingSessionPathSelectorMetadataOwnerReferences) WithValue

type ProbingSessionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion

type ProbingSessionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath

func (ProbingSessionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue

type ProbingSessionPathSelectorMetadataOwnerReferencesController

type ProbingSessionPathSelectorMetadataOwnerReferencesController struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesController) FieldPath

func (ProbingSessionPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataOwnerReferencesController) WithValue

type ProbingSessionPathSelectorMetadataOwnerReferencesKind

type ProbingSessionPathSelectorMetadataOwnerReferencesKind struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesKind) FieldPath

func (ProbingSessionPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataOwnerReferencesKind) WithValue

type ProbingSessionPathSelectorMetadataOwnerReferencesName

type ProbingSessionPathSelectorMetadataOwnerReferencesName struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesName) FieldPath

func (ProbingSessionPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataOwnerReferencesName) WithValue

type ProbingSessionPathSelectorMetadataOwnerReferencesRegion added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferencesRegion struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesRegion) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesRegion) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferencesRequiresOwnerReference added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferencesVersion added in v0.7.1

type ProbingSessionPathSelectorMetadataOwnerReferencesVersion struct{}

func (ProbingSessionPathSelectorMetadataOwnerReferencesVersion) FieldPath added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues added in v0.7.1

func (ProbingSessionPathSelectorMetadataOwnerReferencesVersion) WithValue added in v0.7.1

type ProbingSessionPathSelectorMetadataResourceVersion

type ProbingSessionPathSelectorMetadataResourceVersion struct{}

func (ProbingSessionPathSelectorMetadataResourceVersion) FieldPath

func (ProbingSessionPathSelectorMetadataResourceVersion) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataResourceVersion) WithValue

type ProbingSessionPathSelectorMetadataShards

type ProbingSessionPathSelectorMetadataShards struct{}

func (ProbingSessionPathSelectorMetadataShards) FieldPath

func (ProbingSessionPathSelectorMetadataShards) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataShards) WithKey

func (ProbingSessionPathSelectorMetadataShards) WithValue

type ProbingSessionPathSelectorMetadataSyncing

type ProbingSessionPathSelectorMetadataSyncing struct{}

func (ProbingSessionPathSelectorMetadataSyncing) FieldPath

func (ProbingSessionPathSelectorMetadataSyncing) OwningRegion

func (ProbingSessionPathSelectorMetadataSyncing) Regions

func (ProbingSessionPathSelectorMetadataSyncing) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataSyncing) WithValue

type ProbingSessionPathSelectorMetadataSyncingOwningRegion

type ProbingSessionPathSelectorMetadataSyncingOwningRegion struct{}

func (ProbingSessionPathSelectorMetadataSyncingOwningRegion) FieldPath

func (ProbingSessionPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataSyncingOwningRegion) WithValue

type ProbingSessionPathSelectorMetadataSyncingRegions

type ProbingSessionPathSelectorMetadataSyncingRegions struct{}

func (ProbingSessionPathSelectorMetadataSyncingRegions) FieldPath

func (ProbingSessionPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataSyncingRegions) WithItemValue

func (ProbingSessionPathSelectorMetadataSyncingRegions) WithValue

type ProbingSessionPathSelectorMetadataTags

type ProbingSessionPathSelectorMetadataTags struct{}

func (ProbingSessionPathSelectorMetadataTags) FieldPath

func (ProbingSessionPathSelectorMetadataTags) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataTags) WithItemValue

func (ProbingSessionPathSelectorMetadataTags) WithValue

type ProbingSessionPathSelectorMetadataUpdateTime

type ProbingSessionPathSelectorMetadataUpdateTime struct{}

func (ProbingSessionPathSelectorMetadataUpdateTime) FieldPath

func (ProbingSessionPathSelectorMetadataUpdateTime) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataUpdateTime) WithValue

type ProbingSessionPathSelectorMetadataUuid

type ProbingSessionPathSelectorMetadataUuid struct{}

func (ProbingSessionPathSelectorMetadataUuid) FieldPath

func (ProbingSessionPathSelectorMetadataUuid) WithArrayOfValues

func (ProbingSessionPathSelectorMetadataUuid) WithValue

type ProbingSessionPathSelectorName

type ProbingSessionPathSelectorName struct{}

func (ProbingSessionPathSelectorName) FieldPath

func (ProbingSessionPathSelectorName) WithArrayOfValues

func (ProbingSessionPathSelectorName) WithValue

type ProbingSessionPathSelectorProbingDistribution

type ProbingSessionPathSelectorProbingDistribution struct{}

func (ProbingSessionPathSelectorProbingDistribution) FieldPath

func (ProbingSessionPathSelectorProbingDistribution) WithArrayOfValues

func (ProbingSessionPathSelectorProbingDistribution) WithValue

type ProbingSessionPathSelectorProbingDistributions added in v0.8.4

type ProbingSessionPathSelectorProbingDistributions struct{}

func (ProbingSessionPathSelectorProbingDistributions) FieldPath added in v0.8.4

func (ProbingSessionPathSelectorProbingDistributions) WithArrayOfValues added in v0.8.4

func (ProbingSessionPathSelectorProbingDistributions) WithItemValue added in v0.8.4

func (ProbingSessionPathSelectorProbingDistributions) WithValue added in v0.8.4

type ProbingSessionPathSelectorSpec

type ProbingSessionPathSelectorSpec struct{}

func (ProbingSessionPathSelectorSpec) Address

func (ProbingSessionPathSelectorSpec) Addresses

func (ProbingSessionPathSelectorSpec) EnablePcap added in v0.8.0

func (ProbingSessionPathSelectorSpec) FieldPath

func (ProbingSessionPathSelectorSpec) HttpProbingConfig

func (ProbingSessionPathSelectorSpec) Interval

func (ProbingSessionPathSelectorSpec) IpVersion

func (ProbingSessionPathSelectorSpec) Location added in v0.4.28

func (ProbingSessionPathSelectorSpec) LocationType added in v0.4.28

func (ProbingSessionPathSelectorSpec) Mode

func (ProbingSessionPathSelectorSpec) PathProbing

func (ProbingSessionPathSelectorSpec) Port

func (ProbingSessionPathSelectorSpec) Probe

func (ProbingSessionPathSelectorSpec) ProxyConfiguration

func (ProbingSessionPathSelectorSpec) SpeedtestSettings

func (ProbingSessionPathSelectorSpec) Target

func (ProbingSessionPathSelectorSpec) TargetGroup

func (ProbingSessionPathSelectorSpec) Tos

func (ProbingSessionPathSelectorSpec) Type

func (ProbingSessionPathSelectorSpec) WithArrayOfValues

func (ProbingSessionPathSelectorSpec) WithSubArrayItemValue

func (ProbingSessionPathSelectorSpec) WithSubArrayOfValues

func (ProbingSessionPathSelectorSpec) WithSubPath

func (ProbingSessionPathSelectorSpec) WithSubValue

func (ProbingSessionPathSelectorSpec) WithValue

type ProbingSessionPathSelectorSpecAddress

type ProbingSessionPathSelectorSpecAddress struct{}

func (ProbingSessionPathSelectorSpecAddress) FieldPath

func (ProbingSessionPathSelectorSpecAddress) WithArrayOfValues

func (ProbingSessionPathSelectorSpecAddress) WithValue

type ProbingSessionPathSelectorSpecAddresses

type ProbingSessionPathSelectorSpecAddresses struct{}

func (ProbingSessionPathSelectorSpecAddresses) FieldPath

func (ProbingSessionPathSelectorSpecAddresses) WithArrayOfValues

func (ProbingSessionPathSelectorSpecAddresses) WithItemValue

func (ProbingSessionPathSelectorSpecAddresses) WithValue

type ProbingSessionPathSelectorSpecEnablePcap added in v0.8.0

type ProbingSessionPathSelectorSpecEnablePcap struct{}

func (ProbingSessionPathSelectorSpecEnablePcap) FieldPath added in v0.8.0

func (ProbingSessionPathSelectorSpecEnablePcap) WithArrayOfValues added in v0.8.0

func (ProbingSessionPathSelectorSpecEnablePcap) WithValue added in v0.8.0

type ProbingSessionPathSelectorSpecHttpProbingConfig

type ProbingSessionPathSelectorSpecHttpProbingConfig struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfig) AuthConfig

func (ProbingSessionPathSelectorSpecHttpProbingConfig) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfig) HttpRequest

func (ProbingSessionPathSelectorSpecHttpProbingConfig) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfig) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig) Password

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig) Username

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfig) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigPassword

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigPassword struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigPassword) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequest

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigUsername

type ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigUsername struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigAuthConfigUsername) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest) Timeout

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest) Url

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequest) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestBody

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestMethod

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestTimeout

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestUrl

type ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestUrl struct{}

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingSessionPathSelectorSpecHttpProbingConfigHttpRequestUrl) WithValue

type ProbingSessionPathSelectorSpecInterval

type ProbingSessionPathSelectorSpecInterval struct{}

func (ProbingSessionPathSelectorSpecInterval) FieldPath

func (ProbingSessionPathSelectorSpecInterval) WithArrayOfValues

func (ProbingSessionPathSelectorSpecInterval) WithValue

type ProbingSessionPathSelectorSpecIpVersion

type ProbingSessionPathSelectorSpecIpVersion struct{}

func (ProbingSessionPathSelectorSpecIpVersion) FieldPath

func (ProbingSessionPathSelectorSpecIpVersion) WithArrayOfValues

func (ProbingSessionPathSelectorSpecIpVersion) WithValue

type ProbingSessionPathSelectorSpecLocation added in v0.4.28

type ProbingSessionPathSelectorSpecLocation struct{}

func (ProbingSessionPathSelectorSpecLocation) Accuracy added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) Address added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) AdminHierarchy added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) Coordinates added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocation) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAccuracy added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAccuracy struct{}

func (ProbingSessionPathSelectorSpecLocationAccuracy) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAccuracy) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAccuracy) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddress added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddress struct{}

func (ProbingSessionPathSelectorSpecLocationAddress) AdminArea1 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) AdminArea2 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) AdminArea3 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) AdminArea4 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) Continent added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) Country added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) CountryCode added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) PostalCode added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) StreetAddress added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddress) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea1 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea1 struct{}

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea1) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea1) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea1) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea2 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea2 struct{}

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea2) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea2) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea2) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea3 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea3 struct{}

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea3) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea3) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea3) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea4 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressAdminArea4 struct{}

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea4) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea4) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressAdminArea4) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressContinent added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressContinent struct{}

func (ProbingSessionPathSelectorSpecLocationAddressContinent) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressContinent) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressContinent) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressCountry added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressCountry struct{}

func (ProbingSessionPathSelectorSpecLocationAddressCountry) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressCountry) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressCountry) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressCountryCode added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressCountryCode struct{}

func (ProbingSessionPathSelectorSpecLocationAddressCountryCode) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressCountryCode) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressCountryCode) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressPostalCode added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressPostalCode struct{}

func (ProbingSessionPathSelectorSpecLocationAddressPostalCode) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressPostalCode) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressPostalCode) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressStreetAddress added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAddressStreetAddress struct{}

func (ProbingSessionPathSelectorSpecLocationAddressStreetAddress) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressStreetAddress) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAddressStreetAddress) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchy added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchy struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Admin1 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Admin2 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Admin3 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Admin4 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Admin5 added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Continent added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) Country added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchy) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin1 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin1 struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin1) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin1) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin1) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin2 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin2 struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin2) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin2) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin2) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin3 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin3 struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin3) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin3) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin3) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin4 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin4 struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin4) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin4) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin4) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin5 added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin5 struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin5) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin5) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyAdmin5) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyContinent added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyContinent struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyContinent) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyContinent) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyContinent) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyCountry added in v0.4.28

type ProbingSessionPathSelectorSpecLocationAdminHierarchyCountry struct{}

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyCountry) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyCountry) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationAdminHierarchyCountry) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationCoordinates added in v0.4.28

type ProbingSessionPathSelectorSpecLocationCoordinates struct{}

func (ProbingSessionPathSelectorSpecLocationCoordinates) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationCoordinates) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationCoordinates) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecLocationType added in v0.4.28

type ProbingSessionPathSelectorSpecLocationType struct{}

func (ProbingSessionPathSelectorSpecLocationType) FieldPath added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationType) WithArrayOfValues added in v0.4.28

func (ProbingSessionPathSelectorSpecLocationType) WithValue added in v0.4.28

type ProbingSessionPathSelectorSpecMode

type ProbingSessionPathSelectorSpecMode struct{}

func (ProbingSessionPathSelectorSpecMode) FieldPath

func (ProbingSessionPathSelectorSpecMode) WithArrayOfValues

func (ProbingSessionPathSelectorSpecMode) WithValue

type ProbingSessionPathSelectorSpecPathProbing

type ProbingSessionPathSelectorSpecPathProbing struct{}

func (ProbingSessionPathSelectorSpecPathProbing) Attempts

func (ProbingSessionPathSelectorSpecPathProbing) Enabled

func (ProbingSessionPathSelectorSpecPathProbing) FieldPath

func (ProbingSessionPathSelectorSpecPathProbing) Interval

func (ProbingSessionPathSelectorSpecPathProbing) IntervalSec

func (ProbingSessionPathSelectorSpecPathProbing) MaxTtl

func (ProbingSessionPathSelectorSpecPathProbing) Mode

func (ProbingSessionPathSelectorSpecPathProbing) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbing) WithValue

type ProbingSessionPathSelectorSpecPathProbingAttempts

type ProbingSessionPathSelectorSpecPathProbingAttempts struct{}

func (ProbingSessionPathSelectorSpecPathProbingAttempts) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingAttempts) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingAttempts) WithValue

type ProbingSessionPathSelectorSpecPathProbingEnabled

type ProbingSessionPathSelectorSpecPathProbingEnabled struct{}

func (ProbingSessionPathSelectorSpecPathProbingEnabled) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingEnabled) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingEnabled) WithValue

type ProbingSessionPathSelectorSpecPathProbingInterval

type ProbingSessionPathSelectorSpecPathProbingInterval struct{}

func (ProbingSessionPathSelectorSpecPathProbingInterval) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingInterval) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingInterval) WithValue

type ProbingSessionPathSelectorSpecPathProbingIntervalSec

type ProbingSessionPathSelectorSpecPathProbingIntervalSec struct{}

func (ProbingSessionPathSelectorSpecPathProbingIntervalSec) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingIntervalSec) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingIntervalSec) WithValue

type ProbingSessionPathSelectorSpecPathProbingMaxTtl

type ProbingSessionPathSelectorSpecPathProbingMaxTtl struct{}

func (ProbingSessionPathSelectorSpecPathProbingMaxTtl) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingMaxTtl) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingMaxTtl) WithValue

type ProbingSessionPathSelectorSpecPathProbingMode

type ProbingSessionPathSelectorSpecPathProbingMode struct{}

func (ProbingSessionPathSelectorSpecPathProbingMode) FieldPath

func (ProbingSessionPathSelectorSpecPathProbingMode) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPathProbingMode) WithValue

type ProbingSessionPathSelectorSpecPort

type ProbingSessionPathSelectorSpecPort struct{}

func (ProbingSessionPathSelectorSpecPort) FieldPath

func (ProbingSessionPathSelectorSpecPort) WithArrayOfValues

func (ProbingSessionPathSelectorSpecPort) WithValue

type ProbingSessionPathSelectorSpecProbe

type ProbingSessionPathSelectorSpecProbe struct{}

func (ProbingSessionPathSelectorSpecProbe) FieldPath

func (ProbingSessionPathSelectorSpecProbe) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProbe) WithValue

type ProbingSessionPathSelectorSpecProxyConfiguration

type ProbingSessionPathSelectorSpecProxyConfiguration struct{}

func (ProbingSessionPathSelectorSpecProxyConfiguration) FieldPath

func (ProbingSessionPathSelectorSpecProxyConfiguration) HttpProxy

func (ProbingSessionPathSelectorSpecProxyConfiguration) HttpsProxy

func (ProbingSessionPathSelectorSpecProxyConfiguration) NoProxy

func (ProbingSessionPathSelectorSpecProxyConfiguration) ProxySetting

func (ProbingSessionPathSelectorSpecProxyConfiguration) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProxyConfiguration) WithValue

type ProbingSessionPathSelectorSpecProxyConfigurationHttpProxy

type ProbingSessionPathSelectorSpecProxyConfigurationHttpProxy struct{}

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpProxy) FieldPath

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpProxy) WithValue

type ProbingSessionPathSelectorSpecProxyConfigurationHttpsProxy

type ProbingSessionPathSelectorSpecProxyConfigurationHttpsProxy struct{}

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpsProxy) FieldPath

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProxyConfigurationHttpsProxy) WithValue

type ProbingSessionPathSelectorSpecProxyConfigurationNoProxy

type ProbingSessionPathSelectorSpecProxyConfigurationNoProxy struct{}

func (ProbingSessionPathSelectorSpecProxyConfigurationNoProxy) FieldPath

func (ProbingSessionPathSelectorSpecProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProxyConfigurationNoProxy) WithValue

type ProbingSessionPathSelectorSpecProxyConfigurationProxySetting

type ProbingSessionPathSelectorSpecProxyConfigurationProxySetting struct{}

func (ProbingSessionPathSelectorSpecProxyConfigurationProxySetting) FieldPath

func (ProbingSessionPathSelectorSpecProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingSessionPathSelectorSpecProxyConfigurationProxySetting) WithValue

type ProbingSessionPathSelectorSpecSpeedtestSettings

type ProbingSessionPathSelectorSpecSpeedtestSettings struct{}

func (ProbingSessionPathSelectorSpecSpeedtestSettings) Duration

func (ProbingSessionPathSelectorSpecSpeedtestSettings) FieldPath

func (ProbingSessionPathSelectorSpecSpeedtestSettings) ServerSelection

func (ProbingSessionPathSelectorSpecSpeedtestSettings) TcpPort

func (ProbingSessionPathSelectorSpecSpeedtestSettings) WithArrayOfValues

func (ProbingSessionPathSelectorSpecSpeedtestSettings) WithValue

type ProbingSessionPathSelectorSpecSpeedtestSettingsDuration

type ProbingSessionPathSelectorSpecSpeedtestSettingsDuration struct{}

func (ProbingSessionPathSelectorSpecSpeedtestSettingsDuration) FieldPath

func (ProbingSessionPathSelectorSpecSpeedtestSettingsDuration) WithArrayOfValues

func (ProbingSessionPathSelectorSpecSpeedtestSettingsDuration) WithValue

type ProbingSessionPathSelectorSpecSpeedtestSettingsServerSelection

type ProbingSessionPathSelectorSpecSpeedtestSettingsServerSelection struct{}

func (ProbingSessionPathSelectorSpecSpeedtestSettingsServerSelection) FieldPath

func (ProbingSessionPathSelectorSpecSpeedtestSettingsServerSelection) WithArrayOfValues

func (ProbingSessionPathSelectorSpecSpeedtestSettingsServerSelection) WithValue

type ProbingSessionPathSelectorSpecSpeedtestSettingsTcpPort

type ProbingSessionPathSelectorSpecSpeedtestSettingsTcpPort struct{}

func (ProbingSessionPathSelectorSpecSpeedtestSettingsTcpPort) FieldPath

func (ProbingSessionPathSelectorSpecSpeedtestSettingsTcpPort) WithArrayOfValues

func (ProbingSessionPathSelectorSpecSpeedtestSettingsTcpPort) WithValue

type ProbingSessionPathSelectorSpecTarget

type ProbingSessionPathSelectorSpecTarget struct{}

func (ProbingSessionPathSelectorSpecTarget) FieldPath

func (ProbingSessionPathSelectorSpecTarget) WithArrayOfValues

func (ProbingSessionPathSelectorSpecTarget) WithValue

type ProbingSessionPathSelectorSpecTargetGroup

type ProbingSessionPathSelectorSpecTargetGroup struct{}

func (ProbingSessionPathSelectorSpecTargetGroup) FieldPath

func (ProbingSessionPathSelectorSpecTargetGroup) WithArrayOfValues

func (ProbingSessionPathSelectorSpecTargetGroup) WithValue

type ProbingSessionPathSelectorSpecTos

type ProbingSessionPathSelectorSpecTos struct{}

func (ProbingSessionPathSelectorSpecTos) FieldPath

func (ProbingSessionPathSelectorSpecTos) WithArrayOfValues

func (ProbingSessionPathSelectorSpecTos) WithValue

type ProbingSessionPathSelectorSpecType

type ProbingSessionPathSelectorSpecType struct{}

func (ProbingSessionPathSelectorSpecType) FieldPath

func (ProbingSessionPathSelectorSpecType) WithArrayOfValues

func (ProbingSessionPathSelectorSpecType) WithValue

type ProbingSessionPathSelectorStatus

type ProbingSessionPathSelectorStatus struct{}

func (ProbingSessionPathSelectorStatus) FieldPath

func (ProbingSessionPathSelectorStatus) WithArrayOfValues

func (ProbingSessionPathSelectorStatus) WithSubArrayItemValue

func (ProbingSessionPathSelectorStatus) WithSubArrayOfValues

func (ProbingSessionPathSelectorStatus) WithSubPath

func (ProbingSessionPathSelectorStatus) WithSubValue

func (ProbingSessionPathSelectorStatus) WithValue

type ProbingSessionReferenceList

type ProbingSessionReferenceList []*Reference

func (ProbingSessionReferenceList) Append

func (ProbingSessionReferenceList) AppendList

func (ProbingSessionReferenceList) At

func (ProbingSessionReferenceList) Length

func (l ProbingSessionReferenceList) Length() int

func (ProbingSessionReferenceList) Set

func (ProbingSessionReferenceList) Slice

type ProbingSessionSpecFieldPathBuilder

type ProbingSessionSpecFieldPathBuilder struct{}

func NewProbingSessionSpecFieldPathBuilder

func NewProbingSessionSpecFieldPathBuilder() ProbingSessionSpecFieldPathBuilder

func (ProbingSessionSpecFieldPathBuilder) Address

func (ProbingSessionSpecFieldPathBuilder) Addresses

func (ProbingSessionSpecFieldPathBuilder) EnablePcap added in v0.8.0

func (ProbingSessionSpecFieldPathBuilder) HttpProbingConfig

func (ProbingSessionSpecFieldPathBuilder) Interval

func (ProbingSessionSpecFieldPathBuilder) IpVersion

func (ProbingSessionSpecFieldPathBuilder) Location added in v0.4.28

func (ProbingSessionSpecFieldPathBuilder) LocationType added in v0.4.28

func (ProbingSessionSpecFieldPathBuilder) Mode

func (ProbingSessionSpecFieldPathBuilder) PathProbing

func (ProbingSessionSpecFieldPathBuilder) Port

func (ProbingSessionSpecFieldPathBuilder) Probe

func (ProbingSessionSpecFieldPathBuilder) ProxyConfiguration

func (ProbingSessionSpecFieldPathBuilder) SpeedtestSettings

func (ProbingSessionSpecFieldPathBuilder) Target

func (ProbingSessionSpecFieldPathBuilder) TargetGroup

func (ProbingSessionSpecFieldPathBuilder) Tos

func (ProbingSessionSpecFieldPathBuilder) Type

type ProbingSessionSpec_FieldPath

type ProbingSessionSpec_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingSessionSpec_FieldPathSelector
	Get(source *ProbingSession_Spec) []interface{}
	GetSingle(source *ProbingSession_Spec) (interface{}, bool)
	ClearValue(item *ProbingSession_Spec)

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

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

func MustParseProbingSessionSpec_FieldPath

func MustParseProbingSessionSpec_FieldPath(rawField string) ProbingSessionSpec_FieldPath

func ParseProbingSessionSpec_FieldPath

func ParseProbingSessionSpec_FieldPath(rawField string) (ProbingSessionSpec_FieldPath, error)

type ProbingSessionSpec_FieldPathArrayItemValue

type ProbingSessionSpec_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingSessionSpec_FieldPath
	ContainsValue(*ProbingSession_Spec) bool
}

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

func MustParseProbingSessionSpec_FieldPathArrayItemValue

func MustParseProbingSessionSpec_FieldPathArrayItemValue(pathStr, valueStr string) ProbingSessionSpec_FieldPathArrayItemValue

func ParseProbingSessionSpec_FieldPathArrayItemValue

func ParseProbingSessionSpec_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingSessionSpec_FieldPathArrayItemValue, error)

ParseProbingSessionSpec_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingSessionSpec_FieldPathArrayOfValues

type ProbingSessionSpec_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingSessionSpec_FieldPath
}

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

func MustParseProbingSessionSpec_FieldPathArrayOfValues

func MustParseProbingSessionSpec_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingSessionSpec_FieldPathArrayOfValues

func ParseProbingSessionSpec_FieldPathArrayOfValues

func ParseProbingSessionSpec_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingSessionSpec_FieldPathArrayOfValues, error)

type ProbingSessionSpec_FieldPathSelector

type ProbingSessionSpec_FieldPathSelector int32
const (
	ProbingSessionSpec_FieldPathSelectorProbe              ProbingSessionSpec_FieldPathSelector = 0
	ProbingSessionSpec_FieldPathSelectorTarget             ProbingSessionSpec_FieldPathSelector = 1
	ProbingSessionSpec_FieldPathSelectorTargetGroup        ProbingSessionSpec_FieldPathSelector = 2
	ProbingSessionSpec_FieldPathSelectorMode               ProbingSessionSpec_FieldPathSelector = 3
	ProbingSessionSpec_FieldPathSelectorIpVersion          ProbingSessionSpec_FieldPathSelector = 4
	ProbingSessionSpec_FieldPathSelectorAddress            ProbingSessionSpec_FieldPathSelector = 5
	ProbingSessionSpec_FieldPathSelectorAddresses          ProbingSessionSpec_FieldPathSelector = 6
	ProbingSessionSpec_FieldPathSelectorPort               ProbingSessionSpec_FieldPathSelector = 7
	ProbingSessionSpec_FieldPathSelectorType               ProbingSessionSpec_FieldPathSelector = 8
	ProbingSessionSpec_FieldPathSelectorInterval           ProbingSessionSpec_FieldPathSelector = 9
	ProbingSessionSpec_FieldPathSelectorTos                ProbingSessionSpec_FieldPathSelector = 10
	ProbingSessionSpec_FieldPathSelectorPathProbing        ProbingSessionSpec_FieldPathSelector = 11
	ProbingSessionSpec_FieldPathSelectorSpeedtestSettings  ProbingSessionSpec_FieldPathSelector = 12
	ProbingSessionSpec_FieldPathSelectorHttpProbingConfig  ProbingSessionSpec_FieldPathSelector = 13
	ProbingSessionSpec_FieldPathSelectorProxyConfiguration ProbingSessionSpec_FieldPathSelector = 14
	ProbingSessionSpec_FieldPathSelectorLocationType       ProbingSessionSpec_FieldPathSelector = 15
	ProbingSessionSpec_FieldPathSelectorLocation           ProbingSessionSpec_FieldPathSelector = 16
	ProbingSessionSpec_FieldPathSelectorEnablePcap         ProbingSessionSpec_FieldPathSelector = 17
)

func (ProbingSessionSpec_FieldPathSelector) String

type ProbingSessionSpec_FieldPathValue

type ProbingSessionSpec_FieldPathValue interface {
	ProbingSessionSpec_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingSession_Spec)
	CompareWith(*ProbingSession_Spec) (cmp int, comparable bool)
}

ProbingSessionSpec_FieldPathValue allows storing values for Spec fields according to their type

func MustParseProbingSessionSpec_FieldPathValue

func MustParseProbingSessionSpec_FieldPathValue(pathStr, valueStr string) ProbingSessionSpec_FieldPathValue

func ParseProbingSessionSpec_FieldPathValue

func ParseProbingSessionSpec_FieldPathValue(pathStr, valueStr string) (ProbingSessionSpec_FieldPathValue, error)

type ProbingSessionSpec_FieldSubPath

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

func (*ProbingSessionSpec_FieldSubPath) AsHttpProbingConfigSubPath

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

func (*ProbingSessionSpec_FieldSubPath) AsLocationSubPath added in v0.4.28

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

func (*ProbingSessionSpec_FieldSubPath) AsPathProbingSubPath

func (fps *ProbingSessionSpec_FieldSubPath) AsPathProbingSubPath() (common.PathProbe_FieldPath, bool)

func (*ProbingSessionSpec_FieldSubPath) AsProxyConfigurationSubPath

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

func (*ProbingSessionSpec_FieldSubPath) AsSpeedtestSettingsSubPath

func (fps *ProbingSessionSpec_FieldSubPath) AsSpeedtestSettingsSubPath() (common.SpeedTestSettings_FieldPath, bool)

func (*ProbingSessionSpec_FieldSubPath) ClearValue

func (*ProbingSessionSpec_FieldSubPath) ClearValueRaw

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

func (*ProbingSessionSpec_FieldSubPath) Get

func (fps *ProbingSessionSpec_FieldSubPath) Get(source *ProbingSession_Spec) (values []interface{})

Get returns all values pointed by selected field from source ProbingSession_Spec

func (*ProbingSessionSpec_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingSessionSpec_FieldSubPath) GetRaw

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

func (*ProbingSessionSpec_FieldSubPath) GetSingle

func (fps *ProbingSessionSpec_FieldSubPath) GetSingle(source *ProbingSession_Spec) (interface{}, bool)

GetSingle returns value of selected field from source ProbingSession_Spec

func (*ProbingSessionSpec_FieldSubPath) GetSingleRaw

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

func (*ProbingSessionSpec_FieldSubPath) IsLeaf

func (fps *ProbingSessionSpec_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingSessionSpec_FieldSubPath) JSONString

func (fps *ProbingSessionSpec_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingSessionSpec_FieldSubPath) Selector

func (*ProbingSessionSpec_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingSessionSpec_FieldSubPath) String

String returns path representation in proto convention

func (*ProbingSessionSpec_FieldSubPath) WithIArrayItemValue

func (fps *ProbingSessionSpec_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingSessionSpec_FieldPathArrayItemValue

func (*ProbingSessionSpec_FieldSubPath) WithIArrayOfValues

func (fps *ProbingSessionSpec_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingSessionSpec_FieldPathArrayOfValues

func (*ProbingSessionSpec_FieldSubPath) WithIValue

func (fps *ProbingSessionSpec_FieldSubPath) WithIValue(value interface{}) ProbingSessionSpec_FieldPathValue

func (*ProbingSessionSpec_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingSessionSpec_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingSessionSpec_FieldSubPath) WithRawIValue

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

type ProbingSessionSpec_FieldSubPathArrayItemValue

type ProbingSessionSpec_FieldSubPathArrayItemValue struct {
	ProbingSessionSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) AsHttpProbingConfigPathItemValue

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) AsLocationPathItemValue added in v0.4.28

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) AsPathProbingPathItemValue

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) AsProxyConfigurationPathItemValue

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) AsSpeedtestSettingsPathItemValue

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) ContainsValue

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

func (*ProbingSessionSpec_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingSessionSpec_FieldSubPathArrayOfValues

type ProbingSessionSpec_FieldSubPathArrayOfValues struct {
	ProbingSessionSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) AsHttpProbingConfigPathArrayOfValues

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) AsLocationPathArrayOfValues added in v0.4.28

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) AsPathProbingPathArrayOfValues

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) AsProxyConfigurationPathArrayOfValues

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) AsSpeedtestSettingsPathArrayOfValues

func (*ProbingSessionSpec_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingSessionSpec_FieldSubPathValue

type ProbingSessionSpec_FieldSubPathValue struct {
	ProbingSessionSpec_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldSubPathValue) AsHttpProbingConfigPathValue

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

func (*ProbingSessionSpec_FieldSubPathValue) AsLocationPathValue added in v0.4.28

func (*ProbingSessionSpec_FieldSubPathValue) AsPathProbingPathValue

func (*ProbingSessionSpec_FieldSubPathValue) AsProxyConfigurationPathValue

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

func (*ProbingSessionSpec_FieldSubPathValue) AsSpeedtestSettingsPathValue

func (fpvs *ProbingSessionSpec_FieldSubPathValue) AsSpeedtestSettingsPathValue() (common.SpeedTestSettings_FieldPathValue, bool)

func (*ProbingSessionSpec_FieldSubPathValue) CompareWith

func (fpvs *ProbingSessionSpec_FieldSubPathValue) CompareWith(source *ProbingSession_Spec) (int, bool)

func (*ProbingSessionSpec_FieldSubPathValue) CompareWithRaw

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

func (*ProbingSessionSpec_FieldSubPathValue) GetRawValue

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

func (*ProbingSessionSpec_FieldSubPathValue) SetTo

func (*ProbingSessionSpec_FieldSubPathValue) SetToRaw

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

type ProbingSessionSpec_FieldTerminalPath

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

func (*ProbingSessionSpec_FieldTerminalPath) ClearValue

func (*ProbingSessionSpec_FieldTerminalPath) ClearValueRaw

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

func (*ProbingSessionSpec_FieldTerminalPath) Get

func (fp *ProbingSessionSpec_FieldTerminalPath) Get(source *ProbingSession_Spec) (values []interface{})

Get returns all values pointed by specific field from source ProbingSession_Spec

func (*ProbingSessionSpec_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingSessionSpec_FieldTerminalPath) GetRaw

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

func (*ProbingSessionSpec_FieldTerminalPath) GetSingle

func (fp *ProbingSessionSpec_FieldTerminalPath) GetSingle(source *ProbingSession_Spec) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingSession_Spec

func (*ProbingSessionSpec_FieldTerminalPath) GetSingleRaw

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

func (*ProbingSessionSpec_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingSessionSpec_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingSessionSpec_FieldTerminalPath) Selector

func (*ProbingSessionSpec_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingSessionSpec_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingSessionSpec_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingSessionSpec_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingSessionSpec_FieldPathArrayItemValue

func (*ProbingSessionSpec_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingSessionSpec_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingSessionSpec_FieldPathArrayOfValues

func (*ProbingSessionSpec_FieldTerminalPath) WithIValue

func (*ProbingSessionSpec_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingSessionSpec_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPath) WithRawIValue

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

type ProbingSessionSpec_FieldTerminalPathArrayItemValue

type ProbingSessionSpec_FieldTerminalPathArrayItemValue struct {
	ProbingSessionSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldTerminalPathArrayItemValue) AsAddressesItemValue

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

func (*ProbingSessionSpec_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingSessionSpec_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingSessionSpec_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingSessionSpec_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingSession_Spec) (interface{}, bool)

func (*ProbingSessionSpec_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingSessionSpec_FieldTerminalPathArrayOfValues

type ProbingSessionSpec_FieldTerminalPathArrayOfValues struct {
	ProbingSessionSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsAddressArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsAddressesArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsEnablePcapArrayOfValues added in v0.8.0

func (fpaov *ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsEnablePcapArrayOfValues() ([]bool, bool)

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsHttpProbingConfigArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsIntervalArrayOfValues

func (fpaov *ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsIntervalArrayOfValues() ([]*duration.Duration, bool)

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsIpVersionArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsLocationArrayOfValues added in v0.4.28

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsLocationTypeArrayOfValues added in v0.4.28

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsModeArrayOfValues

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsPathProbingArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsPortArrayOfValues

func (fpaov *ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsPortArrayOfValues() ([]uint32, bool)

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsProbeArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsProxyConfigurationArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsSpeedtestSettingsArrayOfValues

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

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsTargetArrayOfValues

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsTargetGroupArrayOfValues

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsTosArrayOfValues

func (fpaov *ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsTosArrayOfValues() ([]uint32, bool)

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) AsTypeArrayOfValues

func (*ProbingSessionSpec_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingSessionSpec_FieldTerminalPathValue

type ProbingSessionSpec_FieldTerminalPathValue struct {
	ProbingSessionSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionSpec_FieldTerminalPathValue) AsAddressValue

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

func (*ProbingSessionSpec_FieldTerminalPathValue) AsAddressesValue

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

func (*ProbingSessionSpec_FieldTerminalPathValue) AsEnablePcapValue added in v0.8.0

func (fpv *ProbingSessionSpec_FieldTerminalPathValue) AsEnablePcapValue() (bool, bool)

func (*ProbingSessionSpec_FieldTerminalPathValue) AsHttpProbingConfigValue

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

func (*ProbingSessionSpec_FieldTerminalPathValue) AsIntervalValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsIpVersionValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsLocationTypeValue added in v0.4.28

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

func (*ProbingSessionSpec_FieldTerminalPathValue) AsLocationValue added in v0.4.28

func (*ProbingSessionSpec_FieldTerminalPathValue) AsModeValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsPathProbingValue

func (fpv *ProbingSessionSpec_FieldTerminalPathValue) AsPathProbingValue() (*common.PathProbe, bool)

func (*ProbingSessionSpec_FieldTerminalPathValue) AsPortValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsProbeValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsProxyConfigurationValue

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

func (*ProbingSessionSpec_FieldTerminalPathValue) AsSpeedtestSettingsValue

func (fpv *ProbingSessionSpec_FieldTerminalPathValue) AsSpeedtestSettingsValue() (*common.SpeedTestSettings, bool)

func (*ProbingSessionSpec_FieldTerminalPathValue) AsTargetGroupValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsTargetValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsTosValue

func (*ProbingSessionSpec_FieldTerminalPathValue) AsTypeValue

func (*ProbingSessionSpec_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingSessionSpec_FieldTerminalPathValue' with the value under path in 'ProbingSession_Spec'.

func (*ProbingSessionSpec_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingSessionSpec_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingSessionSpec_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Spec

func (*ProbingSessionSpec_FieldTerminalPathValue) SetToRaw

type ProbingSessionStatusFieldPathBuilder

type ProbingSessionStatusFieldPathBuilder struct{}

func NewProbingSessionStatusFieldPathBuilder

func NewProbingSessionStatusFieldPathBuilder() ProbingSessionStatusFieldPathBuilder

type ProbingSessionStatus_FieldPath

type ProbingSessionStatus_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingSessionStatus_FieldPathSelector
	Get(source *ProbingSession_Status) []interface{}
	GetSingle(source *ProbingSession_Status) (interface{}, bool)
	ClearValue(item *ProbingSession_Status)

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

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

func MustParseProbingSessionStatus_FieldPath

func MustParseProbingSessionStatus_FieldPath(rawField string) ProbingSessionStatus_FieldPath

func ParseProbingSessionStatus_FieldPath

func ParseProbingSessionStatus_FieldPath(rawField string) (ProbingSessionStatus_FieldPath, error)

type ProbingSessionStatus_FieldPathArrayItemValue

type ProbingSessionStatus_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingSessionStatus_FieldPath
	ContainsValue(*ProbingSession_Status) bool
}

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

func MustParseProbingSessionStatus_FieldPathArrayItemValue

func MustParseProbingSessionStatus_FieldPathArrayItemValue(pathStr, valueStr string) ProbingSessionStatus_FieldPathArrayItemValue

func ParseProbingSessionStatus_FieldPathArrayItemValue

func ParseProbingSessionStatus_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingSessionStatus_FieldPathArrayItemValue, error)

ParseProbingSessionStatus_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingSessionStatus_FieldPathArrayOfValues

type ProbingSessionStatus_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingSessionStatus_FieldPath
}

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

func MustParseProbingSessionStatus_FieldPathArrayOfValues

func MustParseProbingSessionStatus_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingSessionStatus_FieldPathArrayOfValues

func ParseProbingSessionStatus_FieldPathArrayOfValues

func ParseProbingSessionStatus_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingSessionStatus_FieldPathArrayOfValues, error)

type ProbingSessionStatus_FieldPathSelector

type ProbingSessionStatus_FieldPathSelector int32

func (ProbingSessionStatus_FieldPathSelector) String

type ProbingSessionStatus_FieldPathValue

type ProbingSessionStatus_FieldPathValue interface {
	ProbingSessionStatus_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingSession_Status)
	CompareWith(*ProbingSession_Status) (cmp int, comparable bool)
}

ProbingSessionStatus_FieldPathValue allows storing values for Status fields according to their type

func MustParseProbingSessionStatus_FieldPathValue

func MustParseProbingSessionStatus_FieldPathValue(pathStr, valueStr string) ProbingSessionStatus_FieldPathValue

func ParseProbingSessionStatus_FieldPathValue

func ParseProbingSessionStatus_FieldPathValue(pathStr, valueStr string) (ProbingSessionStatus_FieldPathValue, error)

type ProbingSessionStatus_FieldTerminalPath

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

func (*ProbingSessionStatus_FieldTerminalPath) ClearValue

func (*ProbingSessionStatus_FieldTerminalPath) ClearValueRaw

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

func (*ProbingSessionStatus_FieldTerminalPath) Get

func (fp *ProbingSessionStatus_FieldTerminalPath) Get(source *ProbingSession_Status) (values []interface{})

Get returns all values pointed by specific field from source ProbingSession_Status

func (*ProbingSessionStatus_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingSessionStatus_FieldTerminalPath) GetRaw

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

func (*ProbingSessionStatus_FieldTerminalPath) GetSingle

func (fp *ProbingSessionStatus_FieldTerminalPath) GetSingle(source *ProbingSession_Status) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingSession_Status

func (*ProbingSessionStatus_FieldTerminalPath) GetSingleRaw

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

func (*ProbingSessionStatus_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingSessionStatus_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingSessionStatus_FieldTerminalPath) Selector

func (*ProbingSessionStatus_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingSessionStatus_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingSessionStatus_FieldTerminalPath) WithIArrayItemValue

func (*ProbingSessionStatus_FieldTerminalPath) WithIArrayOfValues

func (*ProbingSessionStatus_FieldTerminalPath) WithIValue

func (*ProbingSessionStatus_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingSessionStatus_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingSessionStatus_FieldTerminalPath) WithRawIValue

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

type ProbingSessionStatus_FieldTerminalPathArrayItemValue

type ProbingSessionStatus_FieldTerminalPathArrayItemValue struct {
	ProbingSessionStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionStatus_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingSessionStatus_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingSessionStatus_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingSessionStatus_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingSession_Status) (interface{}, bool)

func (*ProbingSessionStatus_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingSessionStatus_FieldTerminalPathArrayOfValues

type ProbingSessionStatus_FieldTerminalPathArrayOfValues struct {
	ProbingSessionStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionStatus_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingSessionStatus_FieldTerminalPathValue

type ProbingSessionStatus_FieldTerminalPathValue struct {
	ProbingSessionStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSessionStatus_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingSessionStatus_FieldTerminalPathValue' with the value under path in 'ProbingSession_Status'.

func (*ProbingSessionStatus_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingSessionStatus_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingSessionStatus_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Status

func (*ProbingSessionStatus_FieldTerminalPathValue) SetToRaw

type ProbingSessionType

type ProbingSessionType int32
const (
	ProbingSessionType_CLIENT ProbingSessionType = 0
	ProbingSessionType_SERVER ProbingSessionType = 1
)

func (ProbingSessionType) Descriptor

func (ProbingSessionType) Enum

func (ProbingSessionType) EnumDescriptor

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

Deprecated, Use ProbingSessionType.ProtoReflect.Descriptor instead.

func (ProbingSessionType) Number

func (ProbingSessionType) String

func (x ProbingSessionType) String() string

func (ProbingSessionType) Type

type ProbingSession_FieldMask

type ProbingSession_FieldMask struct {
	Paths []ProbingSession_FieldPath
}

func FullProbingSession_FieldMask

func FullProbingSession_FieldMask() *ProbingSession_FieldMask

func ResourceViewFieldMask

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

func (*ProbingSession_FieldMask) AppendPath

func (fieldMask *ProbingSession_FieldMask) AppendPath(path ProbingSession_FieldPath)

func (*ProbingSession_FieldMask) AppendRawPath

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

func (*ProbingSession_FieldMask) DecodeFirestore

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

func (*ProbingSession_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingSession_FieldMask) FilterInputFields

func (fieldMask *ProbingSession_FieldMask) FilterInputFields() *ProbingSession_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingSession_FieldMask) FromProtoFieldMask

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

func (*ProbingSession_FieldMask) GetPaths

func (fieldMask *ProbingSession_FieldMask) GetPaths() []ProbingSession_FieldPath

func (*ProbingSession_FieldMask) GetRawPaths

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

func (*ProbingSession_FieldMask) IsFull

func (fieldMask *ProbingSession_FieldMask) IsFull() bool

func (ProbingSession_FieldMask) Marshal

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

implement methods required by customType

func (ProbingSession_FieldMask) MarshalJSON

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

func (*ProbingSession_FieldMask) PathsCount

func (fieldMask *ProbingSession_FieldMask) PathsCount() int

func (*ProbingSession_FieldMask) Project

func (fieldMask *ProbingSession_FieldMask) Project(source *ProbingSession) *ProbingSession

func (*ProbingSession_FieldMask) ProjectRaw

func (*ProbingSession_FieldMask) ProtoMessage

func (fieldMask *ProbingSession_FieldMask) ProtoMessage()

func (*ProbingSession_FieldMask) ProtoReflect

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

func (*ProbingSession_FieldMask) Reset

func (fieldMask *ProbingSession_FieldMask) Reset()

func (*ProbingSession_FieldMask) Set

func (fieldMask *ProbingSession_FieldMask) Set(target, source *ProbingSession)

func (*ProbingSession_FieldMask) SetFromCliFlag

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

func (*ProbingSession_FieldMask) SetRaw

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

func (*ProbingSession_FieldMask) Size

func (fieldMask *ProbingSession_FieldMask) Size() int

func (*ProbingSession_FieldMask) String

func (fieldMask *ProbingSession_FieldMask) String() string

func (*ProbingSession_FieldMask) Subtract

func (*ProbingSession_FieldMask) SubtractRaw

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

func (*ProbingSession_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingSession_FieldMask) Unmarshal

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

func (*ProbingSession_FieldMask) UnmarshalJSON

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

type ProbingSession_FieldPath

type ProbingSession_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingSession_FieldPathSelector
	Get(source *ProbingSession) []interface{}
	GetSingle(source *ProbingSession) (interface{}, bool)
	ClearValue(item *ProbingSession)

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

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

func MustParseProbingSession_FieldPath

func MustParseProbingSession_FieldPath(rawField string) ProbingSession_FieldPath

func ParseProbingSession_FieldPath

func ParseProbingSession_FieldPath(rawField string) (ProbingSession_FieldPath, error)

type ProbingSession_FieldPathArrayItemValue

type ProbingSession_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingSession_FieldPath
	ContainsValue(*ProbingSession) bool
}

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

func MustParseProbingSession_FieldPathArrayItemValue

func MustParseProbingSession_FieldPathArrayItemValue(pathStr, valueStr string) ProbingSession_FieldPathArrayItemValue

func ParseProbingSession_FieldPathArrayItemValue

func ParseProbingSession_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingSession_FieldPathArrayItemValue, error)

ParseProbingSession_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingSession_FieldPathArrayOfValues

type ProbingSession_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingSession_FieldPath
}

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

func MustParseProbingSession_FieldPathArrayOfValues

func MustParseProbingSession_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingSession_FieldPathArrayOfValues

func ParseProbingSession_FieldPathArrayOfValues

func ParseProbingSession_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingSession_FieldPathArrayOfValues, error)

type ProbingSession_FieldPathSelector

type ProbingSession_FieldPathSelector int32
const (
	ProbingSession_FieldPathSelectorName                 ProbingSession_FieldPathSelector = 0
	ProbingSession_FieldPathSelectorDisplayName          ProbingSession_FieldPathSelector = 1
	ProbingSession_FieldPathSelectorMetadata             ProbingSession_FieldPathSelector = 2
	ProbingSession_FieldPathSelectorSpec                 ProbingSession_FieldPathSelector = 3
	ProbingSession_FieldPathSelectorProbingDistribution  ProbingSession_FieldPathSelector = 4
	ProbingSession_FieldPathSelectorProbingDistributions ProbingSession_FieldPathSelector = 5
	ProbingSession_FieldPathSelectorStatus               ProbingSession_FieldPathSelector = 6
)

func (ProbingSession_FieldPathSelector) String

type ProbingSession_FieldPathValue

type ProbingSession_FieldPathValue interface {
	ProbingSession_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingSession)
	CompareWith(*ProbingSession) (cmp int, comparable bool)
}

ProbingSession_FieldPathValue allows storing values for ProbingSession fields according to their type

func MustParseProbingSession_FieldPathValue

func MustParseProbingSession_FieldPathValue(pathStr, valueStr string) ProbingSession_FieldPathValue

func ParseProbingSession_FieldPathValue

func ParseProbingSession_FieldPathValue(pathStr, valueStr string) (ProbingSession_FieldPathValue, error)

type ProbingSession_FieldSubPath

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

func (*ProbingSession_FieldSubPath) AsMetadataSubPath

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

func (*ProbingSession_FieldSubPath) AsSpecSubPath

func (*ProbingSession_FieldSubPath) AsStatusSubPath

func (*ProbingSession_FieldSubPath) ClearValue

func (fps *ProbingSession_FieldSubPath) ClearValue(item *ProbingSession)

func (*ProbingSession_FieldSubPath) ClearValueRaw

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

func (*ProbingSession_FieldSubPath) Get

func (fps *ProbingSession_FieldSubPath) Get(source *ProbingSession) (values []interface{})

Get returns all values pointed by selected field from source ProbingSession

func (*ProbingSession_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingSession_FieldSubPath) GetRaw

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

func (*ProbingSession_FieldSubPath) GetSingle

func (fps *ProbingSession_FieldSubPath) GetSingle(source *ProbingSession) (interface{}, bool)

GetSingle returns value of selected field from source ProbingSession

func (*ProbingSession_FieldSubPath) GetSingleRaw

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

func (*ProbingSession_FieldSubPath) IsLeaf

func (fps *ProbingSession_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingSession_FieldSubPath) JSONString

func (fps *ProbingSession_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingSession_FieldSubPath) Selector

func (*ProbingSession_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingSession_FieldSubPath) String

func (fps *ProbingSession_FieldSubPath) String() string

String returns path representation in proto convention

func (*ProbingSession_FieldSubPath) WithIArrayItemValue

func (fps *ProbingSession_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingSession_FieldPathArrayItemValue

func (*ProbingSession_FieldSubPath) WithIArrayOfValues

func (fps *ProbingSession_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingSession_FieldPathArrayOfValues

func (*ProbingSession_FieldSubPath) WithIValue

func (fps *ProbingSession_FieldSubPath) WithIValue(value interface{}) ProbingSession_FieldPathValue

func (*ProbingSession_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingSession_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingSession_FieldSubPath) WithRawIValue

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

type ProbingSession_FieldSubPathArrayItemValue

type ProbingSession_FieldSubPathArrayItemValue struct {
	ProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*ProbingSession_FieldSubPathArrayItemValue) AsSpecPathItemValue

func (*ProbingSession_FieldSubPathArrayItemValue) AsStatusPathItemValue

func (*ProbingSession_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *ProbingSession_FieldSubPathArrayItemValue) ContainsValue(source *ProbingSession) bool

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

func (*ProbingSession_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingSession_FieldSubPathArrayOfValues

type ProbingSession_FieldSubPathArrayOfValues struct {
	ProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

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

func (*ProbingSession_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues

func (*ProbingSession_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues

func (*ProbingSession_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingSession_FieldSubPathValue

type ProbingSession_FieldSubPathValue struct {
	ProbingSession_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldSubPathValue) AsMetadataPathValue

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

func (*ProbingSession_FieldSubPathValue) AsSpecPathValue

func (*ProbingSession_FieldSubPathValue) AsStatusPathValue

func (*ProbingSession_FieldSubPathValue) CompareWith

func (fpvs *ProbingSession_FieldSubPathValue) CompareWith(source *ProbingSession) (int, bool)

func (*ProbingSession_FieldSubPathValue) CompareWithRaw

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

func (*ProbingSession_FieldSubPathValue) GetRawValue

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

func (*ProbingSession_FieldSubPathValue) SetTo

func (fpvs *ProbingSession_FieldSubPathValue) SetTo(target **ProbingSession)

func (*ProbingSession_FieldSubPathValue) SetToRaw

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

type ProbingSession_FieldTerminalPath

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

func (*ProbingSession_FieldTerminalPath) ClearValue

func (fp *ProbingSession_FieldTerminalPath) ClearValue(item *ProbingSession)

func (*ProbingSession_FieldTerminalPath) ClearValueRaw

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

func (*ProbingSession_FieldTerminalPath) Get

func (fp *ProbingSession_FieldTerminalPath) Get(source *ProbingSession) (values []interface{})

Get returns all values pointed by specific field from source ProbingSession

func (*ProbingSession_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingSession_FieldTerminalPath) GetRaw

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

func (*ProbingSession_FieldTerminalPath) GetSingle

func (fp *ProbingSession_FieldTerminalPath) GetSingle(source *ProbingSession) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingSession

func (*ProbingSession_FieldTerminalPath) GetSingleRaw

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

func (*ProbingSession_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingSession_FieldTerminalPath) JSONString

func (fp *ProbingSession_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingSession_FieldTerminalPath) Selector

func (*ProbingSession_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingSession_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingSession_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingSession_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingSession_FieldPathArrayItemValue

func (*ProbingSession_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingSession_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingSession_FieldPathArrayOfValues

func (*ProbingSession_FieldTerminalPath) WithIValue

func (fp *ProbingSession_FieldTerminalPath) WithIValue(value interface{}) ProbingSession_FieldPathValue

func (*ProbingSession_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingSession_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingSession_FieldTerminalPath) WithRawIValue

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

type ProbingSession_FieldTerminalPathArrayItemValue

type ProbingSession_FieldTerminalPathArrayItemValue struct {
	ProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldTerminalPathArrayItemValue) AsProbingDistributionsItemValue added in v0.8.4

func (fpaiv *ProbingSession_FieldTerminalPathArrayItemValue) AsProbingDistributionsItemValue() (*probing_distribution.Reference, bool)

func (*ProbingSession_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingSession_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingSession_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingSession_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingSession) (interface{}, bool)

func (*ProbingSession_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingSession_FieldTerminalPathArrayOfValues

type ProbingSession_FieldTerminalPathArrayOfValues struct {
	ProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

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

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsProbingDistributionArrayOfValues

func (fpaov *ProbingSession_FieldTerminalPathArrayOfValues) AsProbingDistributionArrayOfValues() ([]*probing_distribution.Reference, bool)

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsProbingDistributionsArrayOfValues added in v0.8.4

func (fpaov *ProbingSession_FieldTerminalPathArrayOfValues) AsProbingDistributionsArrayOfValues() ([][]*probing_distribution.Reference, bool)

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues

func (fpaov *ProbingSession_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues() ([]*ProbingSession_Spec, bool)

func (*ProbingSession_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues

func (fpaov *ProbingSession_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*ProbingSession_Status, bool)

func (*ProbingSession_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingSession_FieldTerminalPathValue

type ProbingSession_FieldTerminalPathValue struct {
	ProbingSession_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingSession_FieldTerminalPathValue) AsDisplayNameValue

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

func (*ProbingSession_FieldTerminalPathValue) AsMetadataValue

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

func (*ProbingSession_FieldTerminalPathValue) AsNameValue

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

func (*ProbingSession_FieldTerminalPathValue) AsProbingDistributionValue

func (fpv *ProbingSession_FieldTerminalPathValue) AsProbingDistributionValue() (*probing_distribution.Reference, bool)

func (*ProbingSession_FieldTerminalPathValue) AsProbingDistributionsValue added in v0.8.4

func (fpv *ProbingSession_FieldTerminalPathValue) AsProbingDistributionsValue() ([]*probing_distribution.Reference, bool)

func (*ProbingSession_FieldTerminalPathValue) AsSpecValue

func (*ProbingSession_FieldTerminalPathValue) AsStatusValue

func (*ProbingSession_FieldTerminalPathValue) CompareWith

func (fpv *ProbingSession_FieldTerminalPathValue) CompareWith(source *ProbingSession) (int, bool)

CompareWith compares value in the 'ProbingSession_FieldTerminalPathValue' with the value under path in 'ProbingSession'.

func (*ProbingSession_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingSession_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingSession_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ProbingSession

func (*ProbingSession_FieldTerminalPathValue) SetToRaw

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

type ProbingSession_Spec

type ProbingSession_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"`
	Target *probing_target.Reference `protobuf:"bytes,2,opt,customtype=Reference,name=target,proto3" json:"target,omitempty" firestore:"target"`
	// group reference
	TargetGroup *probing_target_group.Reference `` /* 139-byte string literal not displayed */
	// mode defines the mode for this probe target - icmp/udp/http/tcp
	Mode common.ProbingMode `protobuf:"varint,4,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,6,opt,name=address,proto3" json:"address,omitempty" firestore:"address"`
	// 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,7,rep,name=addresses,proto3" json:"addresses,omitempty" firestore:"addresses"`
	Port      uint32             `protobuf:"varint,8,opt,name=port,proto3" json:"port,omitempty" firestore:"port"`
	Type      ProbingSessionType `protobuf:"varint,9,opt,name=type,proto3,enum=ntt.watchdog.v1alpha2.ProbingSessionType" json:"type,omitempty" firestore:"type"`
	// Interval defines probing interval
	Interval *duration.Duration `protobuf:"bytes,10,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,11,opt,name=tos,proto3" json:"tos,omitempty" firestore:"tos"`
	// Path Probing settings.
	PathProbing *common.PathProbe `protobuf:"bytes,12,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 */
	// Target location type
	LocationType common.LocationType `` /* 164-byte string literal not displayed */
	// Specific target location if applicable
	Location   *common.Location `protobuf:"bytes,17,opt,name=location,proto3" json:"location,omitempty" firestore:"location"`
	EnablePcap bool             `protobuf:"varint,18,opt,name=enable_pcap,json=enablePcap,proto3" json:"enable_pcap,omitempty" firestore:"enablePcap"`
	// contains filtered or unexported fields
}

func (*ProbingSession_Spec) Clone

func (*ProbingSession_Spec) CloneRaw

func (*ProbingSession_Spec) Descriptor

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

Deprecated, Use ProbingSession_Spec.ProtoReflect.Descriptor instead.

func (*ProbingSession_Spec) GetAddress

func (m *ProbingSession_Spec) GetAddress() string

func (*ProbingSession_Spec) GetAddresses

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

func (*ProbingSession_Spec) GetEnablePcap added in v0.8.0

func (m *ProbingSession_Spec) GetEnablePcap() bool

func (*ProbingSession_Spec) GetHttpProbingConfig

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

func (*ProbingSession_Spec) GetInterval

func (m *ProbingSession_Spec) GetInterval() *duration.Duration

func (*ProbingSession_Spec) GetIpVersion

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

func (*ProbingSession_Spec) GetLocation added in v0.4.28

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

func (*ProbingSession_Spec) GetLocationType added in v0.4.28

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

func (*ProbingSession_Spec) GetMode

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

func (*ProbingSession_Spec) GetPathProbing

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

func (*ProbingSession_Spec) GetPort

func (m *ProbingSession_Spec) GetPort() uint32

func (*ProbingSession_Spec) GetProbe

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

func (*ProbingSession_Spec) GetProxyConfiguration

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

func (*ProbingSession_Spec) GetSpeedtestSettings

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

func (*ProbingSession_Spec) GetTarget

func (*ProbingSession_Spec) GetTargetGroup

func (m *ProbingSession_Spec) GetTargetGroup() *probing_target_group.Reference

func (*ProbingSession_Spec) GetTos

func (m *ProbingSession_Spec) GetTos() uint32

func (*ProbingSession_Spec) GetType

func (*ProbingSession_Spec) GotenMessage

func (*ProbingSession_Spec) GotenMessage()

func (*ProbingSession_Spec) GotenObjectExt

func (o *ProbingSession_Spec) GotenObjectExt()

func (*ProbingSession_Spec) GotenValidate

func (obj *ProbingSession_Spec) GotenValidate() error

func (*ProbingSession_Spec) MakeDiffFieldMask

func (*ProbingSession_Spec) MakeFullFieldMask

func (o *ProbingSession_Spec) MakeFullFieldMask() *ProbingSession_Spec_FieldMask

func (*ProbingSession_Spec) MakeRawDiffFieldMask

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

func (*ProbingSession_Spec) MakeRawFullFieldMask

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

func (*ProbingSession_Spec) Marshal

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

func (*ProbingSession_Spec) MarshalJSON

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

func (*ProbingSession_Spec) Merge

func (o *ProbingSession_Spec) Merge(source *ProbingSession_Spec)

func (*ProbingSession_Spec) MergeRaw

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

func (*ProbingSession_Spec) ProtoMessage

func (*ProbingSession_Spec) ProtoMessage()

func (*ProbingSession_Spec) ProtoReflect

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

func (*ProbingSession_Spec) Reset

func (m *ProbingSession_Spec) Reset()

func (*ProbingSession_Spec) SetAddress

func (m *ProbingSession_Spec) SetAddress(fv string)

func (*ProbingSession_Spec) SetAddresses

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

func (*ProbingSession_Spec) SetEnablePcap added in v0.8.0

func (m *ProbingSession_Spec) SetEnablePcap(fv bool)

func (*ProbingSession_Spec) SetHttpProbingConfig

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

func (*ProbingSession_Spec) SetInterval

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

func (*ProbingSession_Spec) SetIpVersion

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

func (*ProbingSession_Spec) SetLocation added in v0.4.28

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

func (*ProbingSession_Spec) SetLocationType added in v0.4.28

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

func (*ProbingSession_Spec) SetMode

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

func (*ProbingSession_Spec) SetPathProbing

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

func (*ProbingSession_Spec) SetPort

func (m *ProbingSession_Spec) SetPort(fv uint32)

func (*ProbingSession_Spec) SetProbe

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

func (*ProbingSession_Spec) SetProxyConfiguration

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

func (*ProbingSession_Spec) SetSpeedtestSettings

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

func (*ProbingSession_Spec) SetTarget

func (m *ProbingSession_Spec) SetTarget(fv *probing_target.Reference)

func (*ProbingSession_Spec) SetTargetGroup

func (m *ProbingSession_Spec) SetTargetGroup(fv *probing_target_group.Reference)

func (*ProbingSession_Spec) SetTos

func (m *ProbingSession_Spec) SetTos(fv uint32)

func (*ProbingSession_Spec) SetType

func (m *ProbingSession_Spec) SetType(fv ProbingSessionType)

func (*ProbingSession_Spec) String

func (m *ProbingSession_Spec) String() string

func (*ProbingSession_Spec) Unmarshal

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

func (*ProbingSession_Spec) UnmarshalJSON

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

type ProbingSession_SpecMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders

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

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingSession_SpecMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders

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

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingSession_SpecMapPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingSession_SpecPathSelectorAddress

type ProbingSession_SpecPathSelectorAddress struct{}

func (ProbingSession_SpecPathSelectorAddress) FieldPath

func (ProbingSession_SpecPathSelectorAddress) WithArrayOfValues

func (ProbingSession_SpecPathSelectorAddress) WithValue

type ProbingSession_SpecPathSelectorAddresses

type ProbingSession_SpecPathSelectorAddresses struct{}

func (ProbingSession_SpecPathSelectorAddresses) FieldPath

func (ProbingSession_SpecPathSelectorAddresses) WithArrayOfValues

func (ProbingSession_SpecPathSelectorAddresses) WithItemValue

func (ProbingSession_SpecPathSelectorAddresses) WithValue

type ProbingSession_SpecPathSelectorEnablePcap added in v0.8.0

type ProbingSession_SpecPathSelectorEnablePcap struct{}

func (ProbingSession_SpecPathSelectorEnablePcap) FieldPath added in v0.8.0

func (ProbingSession_SpecPathSelectorEnablePcap) WithArrayOfValues added in v0.8.0

func (ProbingSession_SpecPathSelectorEnablePcap) WithValue added in v0.8.0

type ProbingSession_SpecPathSelectorHttpProbingConfig

type ProbingSession_SpecPathSelectorHttpProbingConfig struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfig) AuthConfig

func (ProbingSession_SpecPathSelectorHttpProbingConfig) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfig) HttpRequest

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithSubArrayItemValue

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithSubArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithSubPath

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithSubValue

func (ProbingSession_SpecPathSelectorHttpProbingConfig) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfig

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfig struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfig) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfig) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfig) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigPassword

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigPassword struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigPassword) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigPassword) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigPassword) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigRequestHeaderTokenKey) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequest

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequest struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequest) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequest) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestAuthenticationMethod) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestExpectedResponseCode) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestBody) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestHeaders) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestRequestMethod) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestTimeout) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenRequestUrl) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyExpiryKey) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseBodyKey) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigTokenResponseHeader) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigUsername

type ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigUsername struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigUsername) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigUsername) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigAuthConfigUsername) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest) Url

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequest) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestAuthenticationMethod) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestExpectedResponseCode) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestBody

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestBody struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestBody) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestBody) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestBody) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestHeaders

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestHeaders struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestHeaders) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestHeaders) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestMethod

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestMethod struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestMethod) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestRequestMethod) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestTimeout

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestTimeout struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestTimeout) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestTimeout) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestTimeout) WithValue

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestUrl

type ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestUrl struct{}

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestUrl) FieldPath

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestUrl) WithArrayOfValues

func (ProbingSession_SpecPathSelectorHttpProbingConfigHttpRequestUrl) WithValue

type ProbingSession_SpecPathSelectorInterval

type ProbingSession_SpecPathSelectorInterval struct{}

func (ProbingSession_SpecPathSelectorInterval) FieldPath

func (ProbingSession_SpecPathSelectorInterval) WithArrayOfValues

func (ProbingSession_SpecPathSelectorInterval) WithValue

type ProbingSession_SpecPathSelectorIpVersion

type ProbingSession_SpecPathSelectorIpVersion struct{}

func (ProbingSession_SpecPathSelectorIpVersion) FieldPath

func (ProbingSession_SpecPathSelectorIpVersion) WithArrayOfValues

func (ProbingSession_SpecPathSelectorIpVersion) WithValue

type ProbingSession_SpecPathSelectorLocation added in v0.4.28

type ProbingSession_SpecPathSelectorLocation struct{}

func (ProbingSession_SpecPathSelectorLocation) Accuracy added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) Address added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) AdminHierarchy added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) Coordinates added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithSubArrayItemValue added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithSubArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithSubPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithSubValue added in v0.4.28

func (ProbingSession_SpecPathSelectorLocation) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAccuracy added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAccuracy struct{}

func (ProbingSession_SpecPathSelectorLocationAccuracy) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAccuracy) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAccuracy) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddress added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddress struct{}

func (ProbingSession_SpecPathSelectorLocationAddress) AdminArea1 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) AdminArea2 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) AdminArea3 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) AdminArea4 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) Continent added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) Country added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) CountryCode added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) PostalCode added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) StreetAddress added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddress) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea1 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea1 struct{}

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea1) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea1) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea1) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea2 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea2 struct{}

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea2) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea2) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea2) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea3 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea3 struct{}

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea3) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea3) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea3) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea4 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressAdminArea4 struct{}

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea4) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea4) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressAdminArea4) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressContinent added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressContinent struct{}

func (ProbingSession_SpecPathSelectorLocationAddressContinent) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressContinent) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressContinent) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressCountry added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressCountry struct{}

func (ProbingSession_SpecPathSelectorLocationAddressCountry) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressCountry) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressCountry) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressCountryCode added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressCountryCode struct{}

func (ProbingSession_SpecPathSelectorLocationAddressCountryCode) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressCountryCode) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressCountryCode) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressPostalCode added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressPostalCode struct{}

func (ProbingSession_SpecPathSelectorLocationAddressPostalCode) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressPostalCode) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressPostalCode) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressStreetAddress added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAddressStreetAddress struct{}

func (ProbingSession_SpecPathSelectorLocationAddressStreetAddress) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressStreetAddress) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAddressStreetAddress) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchy added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchy struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Admin1 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Admin2 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Admin3 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Admin4 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Admin5 added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Continent added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) Country added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchy) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin1 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin1 struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin1) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin1) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin1) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin2 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin2 struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin2) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin2) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin2) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin3 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin3 struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin3) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin3) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin3) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin4 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin4 struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin4) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin4) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin4) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin5 added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin5 struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin5) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin5) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyAdmin5) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyContinent added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyContinent struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyContinent) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyContinent) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyContinent) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyCountry added in v0.4.28

type ProbingSession_SpecPathSelectorLocationAdminHierarchyCountry struct{}

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyCountry) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyCountry) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationAdminHierarchyCountry) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationCoordinates added in v0.4.28

type ProbingSession_SpecPathSelectorLocationCoordinates struct{}

func (ProbingSession_SpecPathSelectorLocationCoordinates) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationCoordinates) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationCoordinates) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorLocationType added in v0.4.28

type ProbingSession_SpecPathSelectorLocationType struct{}

func (ProbingSession_SpecPathSelectorLocationType) FieldPath added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationType) WithArrayOfValues added in v0.4.28

func (ProbingSession_SpecPathSelectorLocationType) WithValue added in v0.4.28

type ProbingSession_SpecPathSelectorMode

type ProbingSession_SpecPathSelectorMode struct{}

func (ProbingSession_SpecPathSelectorMode) FieldPath

func (ProbingSession_SpecPathSelectorMode) WithArrayOfValues

func (ProbingSession_SpecPathSelectorMode) WithValue

type ProbingSession_SpecPathSelectorPathProbing

type ProbingSession_SpecPathSelectorPathProbing struct{}

func (ProbingSession_SpecPathSelectorPathProbing) Attempts

func (ProbingSession_SpecPathSelectorPathProbing) Enabled

func (ProbingSession_SpecPathSelectorPathProbing) FieldPath

func (ProbingSession_SpecPathSelectorPathProbing) Interval

func (ProbingSession_SpecPathSelectorPathProbing) IntervalSec

func (ProbingSession_SpecPathSelectorPathProbing) MaxTtl

func (ProbingSession_SpecPathSelectorPathProbing) Mode

func (ProbingSession_SpecPathSelectorPathProbing) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbing) WithSubArrayItemValue

func (ProbingSession_SpecPathSelectorPathProbing) WithSubArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbing) WithSubPath

func (ProbingSession_SpecPathSelectorPathProbing) WithSubValue

func (ProbingSession_SpecPathSelectorPathProbing) WithValue

type ProbingSession_SpecPathSelectorPathProbingAttempts

type ProbingSession_SpecPathSelectorPathProbingAttempts struct{}

func (ProbingSession_SpecPathSelectorPathProbingAttempts) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingAttempts) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingAttempts) WithValue

type ProbingSession_SpecPathSelectorPathProbingEnabled

type ProbingSession_SpecPathSelectorPathProbingEnabled struct{}

func (ProbingSession_SpecPathSelectorPathProbingEnabled) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingEnabled) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingEnabled) WithValue

type ProbingSession_SpecPathSelectorPathProbingInterval

type ProbingSession_SpecPathSelectorPathProbingInterval struct{}

func (ProbingSession_SpecPathSelectorPathProbingInterval) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingInterval) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingInterval) WithValue

type ProbingSession_SpecPathSelectorPathProbingIntervalSec

type ProbingSession_SpecPathSelectorPathProbingIntervalSec struct{}

func (ProbingSession_SpecPathSelectorPathProbingIntervalSec) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingIntervalSec) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingIntervalSec) WithValue

type ProbingSession_SpecPathSelectorPathProbingMaxTtl

type ProbingSession_SpecPathSelectorPathProbingMaxTtl struct{}

func (ProbingSession_SpecPathSelectorPathProbingMaxTtl) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingMaxTtl) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingMaxTtl) WithValue

type ProbingSession_SpecPathSelectorPathProbingMode

type ProbingSession_SpecPathSelectorPathProbingMode struct{}

func (ProbingSession_SpecPathSelectorPathProbingMode) FieldPath

func (ProbingSession_SpecPathSelectorPathProbingMode) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPathProbingMode) WithValue

type ProbingSession_SpecPathSelectorPort

type ProbingSession_SpecPathSelectorPort struct{}

func (ProbingSession_SpecPathSelectorPort) FieldPath

func (ProbingSession_SpecPathSelectorPort) WithArrayOfValues

func (ProbingSession_SpecPathSelectorPort) WithValue

type ProbingSession_SpecPathSelectorProbe

type ProbingSession_SpecPathSelectorProbe struct{}

func (ProbingSession_SpecPathSelectorProbe) FieldPath

func (ProbingSession_SpecPathSelectorProbe) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProbe) WithValue

type ProbingSession_SpecPathSelectorProxyConfiguration

type ProbingSession_SpecPathSelectorProxyConfiguration struct{}

func (ProbingSession_SpecPathSelectorProxyConfiguration) FieldPath

func (ProbingSession_SpecPathSelectorProxyConfiguration) HttpProxy

func (ProbingSession_SpecPathSelectorProxyConfiguration) HttpsProxy

func (ProbingSession_SpecPathSelectorProxyConfiguration) NoProxy

func (ProbingSession_SpecPathSelectorProxyConfiguration) ProxySetting

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithSubArrayItemValue

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithSubArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithSubPath

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithSubValue

func (ProbingSession_SpecPathSelectorProxyConfiguration) WithValue

type ProbingSession_SpecPathSelectorProxyConfigurationHttpProxy

type ProbingSession_SpecPathSelectorProxyConfigurationHttpProxy struct{}

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpProxy) FieldPath

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpProxy) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpProxy) WithValue

type ProbingSession_SpecPathSelectorProxyConfigurationHttpsProxy

type ProbingSession_SpecPathSelectorProxyConfigurationHttpsProxy struct{}

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpsProxy) FieldPath

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpsProxy) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfigurationHttpsProxy) WithValue

type ProbingSession_SpecPathSelectorProxyConfigurationNoProxy

type ProbingSession_SpecPathSelectorProxyConfigurationNoProxy struct{}

func (ProbingSession_SpecPathSelectorProxyConfigurationNoProxy) FieldPath

func (ProbingSession_SpecPathSelectorProxyConfigurationNoProxy) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfigurationNoProxy) WithValue

type ProbingSession_SpecPathSelectorProxyConfigurationProxySetting

type ProbingSession_SpecPathSelectorProxyConfigurationProxySetting struct{}

func (ProbingSession_SpecPathSelectorProxyConfigurationProxySetting) FieldPath

func (ProbingSession_SpecPathSelectorProxyConfigurationProxySetting) WithArrayOfValues

func (ProbingSession_SpecPathSelectorProxyConfigurationProxySetting) WithValue

type ProbingSession_SpecPathSelectorSpeedtestSettings

type ProbingSession_SpecPathSelectorSpeedtestSettings struct{}

func (ProbingSession_SpecPathSelectorSpeedtestSettings) Duration

func (ProbingSession_SpecPathSelectorSpeedtestSettings) FieldPath

func (ProbingSession_SpecPathSelectorSpeedtestSettings) ServerSelection

func (ProbingSession_SpecPathSelectorSpeedtestSettings) TcpPort

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithArrayOfValues

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithSubArrayItemValue

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithSubArrayOfValues

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithSubPath

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithSubValue

func (ProbingSession_SpecPathSelectorSpeedtestSettings) WithValue

type ProbingSession_SpecPathSelectorSpeedtestSettingsDuration

type ProbingSession_SpecPathSelectorSpeedtestSettingsDuration struct{}

func (ProbingSession_SpecPathSelectorSpeedtestSettingsDuration) FieldPath

func (ProbingSession_SpecPathSelectorSpeedtestSettingsDuration) WithArrayOfValues

func (ProbingSession_SpecPathSelectorSpeedtestSettingsDuration) WithValue

type ProbingSession_SpecPathSelectorSpeedtestSettingsServerSelection

type ProbingSession_SpecPathSelectorSpeedtestSettingsServerSelection struct{}

func (ProbingSession_SpecPathSelectorSpeedtestSettingsServerSelection) FieldPath

func (ProbingSession_SpecPathSelectorSpeedtestSettingsServerSelection) WithArrayOfValues

func (ProbingSession_SpecPathSelectorSpeedtestSettingsServerSelection) WithValue

type ProbingSession_SpecPathSelectorSpeedtestSettingsTcpPort

type ProbingSession_SpecPathSelectorSpeedtestSettingsTcpPort struct{}

func (ProbingSession_SpecPathSelectorSpeedtestSettingsTcpPort) FieldPath

func (ProbingSession_SpecPathSelectorSpeedtestSettingsTcpPort) WithArrayOfValues

func (ProbingSession_SpecPathSelectorSpeedtestSettingsTcpPort) WithValue

type ProbingSession_SpecPathSelectorTarget

type ProbingSession_SpecPathSelectorTarget struct{}

func (ProbingSession_SpecPathSelectorTarget) FieldPath

func (ProbingSession_SpecPathSelectorTarget) WithArrayOfValues

func (ProbingSession_SpecPathSelectorTarget) WithValue

type ProbingSession_SpecPathSelectorTargetGroup

type ProbingSession_SpecPathSelectorTargetGroup struct{}

func (ProbingSession_SpecPathSelectorTargetGroup) FieldPath

func (ProbingSession_SpecPathSelectorTargetGroup) WithArrayOfValues

func (ProbingSession_SpecPathSelectorTargetGroup) WithValue

type ProbingSession_SpecPathSelectorTos

type ProbingSession_SpecPathSelectorTos struct{}

func (ProbingSession_SpecPathSelectorTos) FieldPath

func (ProbingSession_SpecPathSelectorTos) WithArrayOfValues

func (ProbingSession_SpecPathSelectorTos) WithValue

type ProbingSession_SpecPathSelectorType

type ProbingSession_SpecPathSelectorType struct{}

func (ProbingSession_SpecPathSelectorType) FieldPath

func (ProbingSession_SpecPathSelectorType) WithArrayOfValues

func (ProbingSession_SpecPathSelectorType) WithValue

type ProbingSession_Spec_FieldMask

type ProbingSession_Spec_FieldMask struct {
	Paths []ProbingSessionSpec_FieldPath
}

func FullProbingSession_Spec_FieldMask

func FullProbingSession_Spec_FieldMask() *ProbingSession_Spec_FieldMask

func (*ProbingSession_Spec_FieldMask) AppendPath

func (fieldMask *ProbingSession_Spec_FieldMask) AppendPath(path ProbingSessionSpec_FieldPath)

func (*ProbingSession_Spec_FieldMask) AppendRawPath

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

func (*ProbingSession_Spec_FieldMask) DecodeFirestore

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

func (*ProbingSession_Spec_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingSession_Spec_FieldMask) FilterInputFields

func (fieldMask *ProbingSession_Spec_FieldMask) FilterInputFields() *ProbingSession_Spec_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingSession_Spec_FieldMask) FromProtoFieldMask

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

func (*ProbingSession_Spec_FieldMask) GetPaths

func (*ProbingSession_Spec_FieldMask) GetRawPaths

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

func (*ProbingSession_Spec_FieldMask) IsFull

func (fieldMask *ProbingSession_Spec_FieldMask) IsFull() bool

func (ProbingSession_Spec_FieldMask) Marshal

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

implement methods required by customType

func (ProbingSession_Spec_FieldMask) MarshalJSON

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

func (*ProbingSession_Spec_FieldMask) PathsCount

func (fieldMask *ProbingSession_Spec_FieldMask) PathsCount() int

func (*ProbingSession_Spec_FieldMask) Project

func (*ProbingSession_Spec_FieldMask) ProjectRaw

func (*ProbingSession_Spec_FieldMask) ProtoMessage

func (fieldMask *ProbingSession_Spec_FieldMask) ProtoMessage()

func (*ProbingSession_Spec_FieldMask) ProtoReflect

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

func (*ProbingSession_Spec_FieldMask) Reset

func (fieldMask *ProbingSession_Spec_FieldMask) Reset()

func (*ProbingSession_Spec_FieldMask) Set

func (fieldMask *ProbingSession_Spec_FieldMask) Set(target, source *ProbingSession_Spec)

func (*ProbingSession_Spec_FieldMask) SetFromCliFlag

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

func (*ProbingSession_Spec_FieldMask) SetRaw

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

func (*ProbingSession_Spec_FieldMask) Size

func (fieldMask *ProbingSession_Spec_FieldMask) Size() int

func (*ProbingSession_Spec_FieldMask) String

func (fieldMask *ProbingSession_Spec_FieldMask) String() string

func (*ProbingSession_Spec_FieldMask) Subtract

func (*ProbingSession_Spec_FieldMask) SubtractRaw

func (*ProbingSession_Spec_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingSession_Spec_FieldMask) Unmarshal

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

func (*ProbingSession_Spec_FieldMask) UnmarshalJSON

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

type ProbingSession_Status

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

func (*ProbingSession_Status) Clone

func (*ProbingSession_Status) CloneRaw

func (*ProbingSession_Status) Descriptor

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

Deprecated, Use ProbingSession_Status.ProtoReflect.Descriptor instead.

func (*ProbingSession_Status) GotenMessage

func (*ProbingSession_Status) GotenMessage()

func (*ProbingSession_Status) GotenObjectExt

func (o *ProbingSession_Status) GotenObjectExt()

func (*ProbingSession_Status) GotenValidate

func (obj *ProbingSession_Status) GotenValidate() error

func (*ProbingSession_Status) MakeDiffFieldMask

func (*ProbingSession_Status) MakeFullFieldMask

func (*ProbingSession_Status) MakeRawDiffFieldMask

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

func (*ProbingSession_Status) MakeRawFullFieldMask

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

func (*ProbingSession_Status) Marshal

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

func (*ProbingSession_Status) MarshalJSON

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

func (*ProbingSession_Status) Merge

func (o *ProbingSession_Status) Merge(source *ProbingSession_Status)

func (*ProbingSession_Status) MergeRaw

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

func (*ProbingSession_Status) ProtoMessage

func (*ProbingSession_Status) ProtoMessage()

func (*ProbingSession_Status) ProtoReflect

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

func (*ProbingSession_Status) Reset

func (m *ProbingSession_Status) Reset()

func (*ProbingSession_Status) String

func (m *ProbingSession_Status) String() string

func (*ProbingSession_Status) Unmarshal

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

func (*ProbingSession_Status) UnmarshalJSON

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

type ProbingSession_Status_FieldMask

type ProbingSession_Status_FieldMask struct {
	Paths []ProbingSessionStatus_FieldPath
}

func FullProbingSession_Status_FieldMask

func FullProbingSession_Status_FieldMask() *ProbingSession_Status_FieldMask

func (*ProbingSession_Status_FieldMask) AppendPath

func (*ProbingSession_Status_FieldMask) AppendRawPath

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

func (*ProbingSession_Status_FieldMask) DecodeFirestore

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

func (*ProbingSession_Status_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingSession_Status_FieldMask) FilterInputFields

func (fieldMask *ProbingSession_Status_FieldMask) FilterInputFields() *ProbingSession_Status_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingSession_Status_FieldMask) FromProtoFieldMask

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

func (*ProbingSession_Status_FieldMask) GetPaths

func (*ProbingSession_Status_FieldMask) GetRawPaths

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

func (*ProbingSession_Status_FieldMask) IsFull

func (fieldMask *ProbingSession_Status_FieldMask) IsFull() bool

func (ProbingSession_Status_FieldMask) Marshal

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

implement methods required by customType

func (ProbingSession_Status_FieldMask) MarshalJSON

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

func (*ProbingSession_Status_FieldMask) PathsCount

func (fieldMask *ProbingSession_Status_FieldMask) PathsCount() int

func (*ProbingSession_Status_FieldMask) Project

func (*ProbingSession_Status_FieldMask) ProjectRaw

func (*ProbingSession_Status_FieldMask) ProtoMessage

func (fieldMask *ProbingSession_Status_FieldMask) ProtoMessage()

func (*ProbingSession_Status_FieldMask) ProtoReflect

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

func (*ProbingSession_Status_FieldMask) Reset

func (fieldMask *ProbingSession_Status_FieldMask) Reset()

func (*ProbingSession_Status_FieldMask) Set

func (fieldMask *ProbingSession_Status_FieldMask) Set(target, source *ProbingSession_Status)

func (*ProbingSession_Status_FieldMask) SetFromCliFlag

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

func (*ProbingSession_Status_FieldMask) SetRaw

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

func (*ProbingSession_Status_FieldMask) Size

func (fieldMask *ProbingSession_Status_FieldMask) Size() int

func (*ProbingSession_Status_FieldMask) String

func (fieldMask *ProbingSession_Status_FieldMask) String() string

func (*ProbingSession_Status_FieldMask) Subtract

func (*ProbingSession_Status_FieldMask) SubtractRaw

func (*ProbingSession_Status_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingSession_Status_FieldMask) Unmarshal

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

func (*ProbingSession_Status_FieldMask) UnmarshalJSON

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

type QueryResultChange

type QueryResultChange struct {
	Changes        []*ProbingSessionChange
	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 {
	ProbingSessions   []*ProbingSession
	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, probingSession *ProbingSession) (*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) GetProbingSession

func (ref *Reference) GetProbingSession() *ProbingSession

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

func (*Reference) ResolveRaw

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

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type SearchQuery

type SearchQuery struct {
	ListQuery
	Phrase string
}

func (*SearchQuery) GetPhrase

func (q *SearchQuery) GetPhrase() string

func (*SearchQuery) GetWithPagingInfo added in v0.8.3

func (q *SearchQuery) GetWithPagingInfo() bool

func (*SearchQuery) SetPhrase

func (q *SearchQuery) SetPhrase(phrase string)

func (*SearchQuery) String

func (q *SearchQuery) String() string

type WatchQuery

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

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime added in v0.7.13

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

func (*WatchQuery) GetWatchType

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

func (*WatchQuery) SetMaximumChunkSize

func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)

func (*WatchQuery) SetResumeToken

func (q *WatchQuery) SetResumeToken(token string)

func (*WatchQuery) SetStartingTime added in v0.7.13

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

func (*WatchQuery) SetWatchType

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

func (*WatchQuery) String

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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