probing_target_group

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Project = "projects/{project}/probingTargetGroups/{probing_target_group}"
)

Variables

This section is empty.

Functions

func AsAnyCastAccess

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

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 ProbingTargetGroup_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 *ProbingTargetGroup) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	ProbingTargetGroup_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *ProbingTargetGroup) 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 ProbingTargetGroup_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 *ProbingTargetGroup) 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 ProbingTargetGroup_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 *ProbingTargetGroup) 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 ProbingTargetGroup_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 {
	ProbingTargetGroup_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *ProbingTargetGroup) 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 ProbingTargetGroup_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 ProbingTargetGroup_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *ProbingTargetGroup) 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 ProbingTargetGroup_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 ProbingTargetGroup_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *ProbingTargetGroup) 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 ProbingTargetGroup_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 *ProbingTargetGroup) 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 ProbingTargetGroup_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 {
	ProbingTargetGroup_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *ProbingTargetGroup) 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 ProbingTargetGroup_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      *ProbingTargetGroup_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           *ProbingTargetGroup_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
	ProbingTargetGroupId string `firestore:"probingTargetGroupId"`
}

func MustParseName

func MustParseName(name string) *Name

func ParseName

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

func ParseNameOrId

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

func (*Name) AsRawReference

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

func (*Name) AsReference

func (name *Name) AsReference() *Reference

func (*Name) ConvertToNative

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

func (*Name) ConvertToType

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

func (*Name) Equal

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

func (*Name) FullyQualifiedName

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

func (*Name) GetIParentName added in v0.7.1

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

func (*Name) GetIUnderlyingParentName added in v0.7.1

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

func (*Name) GetIdParts

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

func (*Name) GetPattern

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

func (*Name) GetProjectName

func (name *Name) GetProjectName() *project.Name

func (*Name) GetResourceDescriptor

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

func (*Name) GetSegments

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

func (*Name) GotenEqual

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

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

func (*Name) HasTrait

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

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Match

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

func (*Name) Matches

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

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

func (*Name) ParseProtoString

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

func (*Name) ProtoString

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

func (*Name) Receive

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

func (*Name) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Name) SetFromSegments

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

func (*Name) String

func (name *Name) String() string

func (*Name) Type

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

func (*Name) TypeName

func (name *Name) TypeName() string

func (*Name) Value

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

type NameBuilder

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

func NewNameBuilder

func NewNameBuilder() *NameBuilder

func (*NameBuilder) Name

func (b *NameBuilder) Name() *Name

func (*NameBuilder) Parent

func (b *NameBuilder) Parent() *ParentName

func (*NameBuilder) ParentReference

func (b *NameBuilder) ParentReference() *ParentReference

func (*NameBuilder) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

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

func (*NameBuilder) SetProject

func (b *NameBuilder) SetProject(parent *project.Name) *NameBuilder

func (*NameBuilder) SetProjectId

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

type NamePattern

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

type OrderBy

type OrderBy struct {
	OrderByFields []OrderByField
}

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

func (*OrderBy) Compare

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

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *ProbingTargetGroup_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 ProbingTargetGroupList, elem *ProbingTargetGroup) (ProbingTargetGroupList, 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 ProbingTargetGroupList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

type OrderByField struct {
	FieldPath ProbingTargetGroup_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 *ProbingTargetGroup) int

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type PagerCursor

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

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

func (*PagerCursor) GetInclusion

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

func (*PagerCursor) GetPageDirection

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

func (*PagerCursor) GetValue

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

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

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

func (*PagerCursor) ProtoString

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

func (*PagerCursor) SetCursorValue

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

func (*PagerCursor) SetFromCliFlag

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

func (*PagerCursor) SetInclusion

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

func (*PagerCursor) SetPageDirection

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

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

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

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

func MakePagerQuery

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

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

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

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

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

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

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

func (*PagerQuery) PageDirection

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

func (*PagerQuery) SetCursor added in v0.7.1

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

func (*PagerQuery) SetLimit added in v0.7.1

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy added in v0.7.1

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

func (*PagerQuery) SetPageDirection added in v0.7.1

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

func (*PagerQuery) SetPeekForward added in v0.7.1

func (p *PagerQuery) SetPeekForward(peekForward bool)

type ParentName

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

func MustParseParentName

func MustParseParentName(name string) *ParentName

func ParseParentName

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

func (*ParentName) AsRawReference

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

func (*ParentName) AsReference

func (name *ParentName) AsReference() *ParentReference

func (*ParentName) DescendsFrom

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

func (*ParentName) FullyQualifiedName

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

func (*ParentName) GetIParentName added in v0.7.1

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

func (*ParentName) GetIUnderlyingParentName added in v0.7.1

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

func (*ParentName) GetIdParts

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

func (*ParentName) GetPattern

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

func (*ParentName) GetProjectName

func (name *ParentName) GetProjectName() *project.Name

func (*ParentName) GetResourceDescriptor

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

func (*ParentName) GetSegments

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

func (*ParentName) GotenEqual

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

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

func (*ParentName) IsFullyQualified

func (name *ParentName) IsFullyQualified() bool

func (*ParentName) IsSpecified

func (name *ParentName) IsSpecified() bool

func (*ParentName) Matches

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

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

func (*ParentName) ParseProtoString

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

func (*ParentName) ProtoString

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

func (*ParentName) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*ParentName) SetFromSegments

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

func (*ParentName) String

func (name *ParentName) String() string

type ParentReference

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

func MakeParentReference

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

func MustParseParentReference

func MustParseParentReference(name string) *ParentReference

func ParseParentReference

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

func (*ParentReference) ClearCached

func (ref *ParentReference) ClearCached()

func (*ParentReference) ConvertToNative added in v0.6.2

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

func (*ParentReference) ConvertToType added in v0.6.2

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

func (*ParentReference) Equal added in v0.6.2

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

func (*ParentReference) GetIParentName added in v0.7.1

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

func (*ParentReference) GetIUnderlyingParentName added in v0.7.1

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

func (*ParentReference) GetIdParts

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

func (*ParentReference) GetPattern

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

func (*ParentReference) GetProject

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

func (*ParentReference) GetProjectReference

func (ref *ParentReference) GetProjectReference() *project.Reference

func (*ParentReference) GetRawResource

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

func (*ParentReference) GetResourceDescriptor

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

func (*ParentReference) GetSegments

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

func (*ParentReference) GetUnderlyingReference

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

func (*ParentReference) GotenEqual

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

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

func (*ParentReference) HasTrait added in v0.6.2

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

func (*ParentReference) IsFullyQualified

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

func (*ParentReference) Match added in v0.6.2

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

func (*ParentReference) Matches

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

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

func (*ParentReference) ParseProtoString

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

func (*ParentReference) ProtoString

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

func (*ParentReference) Receive added in v0.6.2

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

func (*ParentReference) ResolveRaw

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

func (*ParentReference) Resolved

func (ref *ParentReference) Resolved() bool

func (*ParentReference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*ParentReference) String

func (ref *ParentReference) String() string

func (*ParentReference) Type added in v0.6.2

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

func (*ParentReference) TypeName added in v0.6.2

func (name *ParentReference) TypeName() string

func (*ParentReference) Value added in v0.6.2

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

type ProbingTargetGroup

type ProbingTargetGroup struct {

	// Name of ProbingTargetGroup
	// 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"`
	// Human-readable name
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	// state of group
	State *ProbingTargetGroup_State `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty" firestore:"state"`
	// metadata is additional information of the probing target group.
	Metadata *ntt_meta.Meta `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// contains filtered or unexported fields
}

ProbingTargetGroup Resource

func (*ProbingTargetGroup) Clone

func (*ProbingTargetGroup) CloneRaw

func (*ProbingTargetGroup) Descriptor

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

Deprecated, Use ProbingTargetGroup.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroup) GetDisplayName

func (m *ProbingTargetGroup) GetDisplayName() string

func (*ProbingTargetGroup) GetMetadata

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

func (*ProbingTargetGroup) GetName

func (m *ProbingTargetGroup) GetName() *Name

func (*ProbingTargetGroup) GetRawName

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

func (*ProbingTargetGroup) GetResourceDescriptor

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

func (*ProbingTargetGroup) GetState

func (*ProbingTargetGroup) GotenMessage

func (*ProbingTargetGroup) GotenMessage()

func (*ProbingTargetGroup) GotenObjectExt

func (o *ProbingTargetGroup) GotenObjectExt()

func (*ProbingTargetGroup) GotenValidate

func (obj *ProbingTargetGroup) GotenValidate() error

func (*ProbingTargetGroup) MakeDiffFieldMask

func (*ProbingTargetGroup) MakeFullFieldMask

func (o *ProbingTargetGroup) MakeFullFieldMask() *ProbingTargetGroup_FieldMask

func (*ProbingTargetGroup) MakeRawDiffFieldMask

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

func (*ProbingTargetGroup) MakeRawFullFieldMask

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

func (*ProbingTargetGroup) Marshal

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

func (*ProbingTargetGroup) MarshalJSON

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

func (*ProbingTargetGroup) MaybePopulateDefaults

func (r *ProbingTargetGroup) MaybePopulateDefaults() error

func (*ProbingTargetGroup) Merge

func (o *ProbingTargetGroup) Merge(source *ProbingTargetGroup)

func (*ProbingTargetGroup) MergeRaw

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

func (*ProbingTargetGroup) ProtoMessage

func (*ProbingTargetGroup) ProtoMessage()

func (*ProbingTargetGroup) ProtoReflect

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

func (*ProbingTargetGroup) Reset

func (m *ProbingTargetGroup) Reset()

func (*ProbingTargetGroup) SetDisplayName

func (m *ProbingTargetGroup) SetDisplayName(fv string)

func (*ProbingTargetGroup) SetMetadata

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

func (*ProbingTargetGroup) SetName

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

func (*ProbingTargetGroup) SetState

func (*ProbingTargetGroup) String

func (m *ProbingTargetGroup) String() string

func (*ProbingTargetGroup) Unmarshal

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

func (*ProbingTargetGroup) UnmarshalJSON

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

type ProbingTargetGroupAccess

type ProbingTargetGroupAccess interface {
	GetProbingTargetGroup(context.Context, *GetQuery) (*ProbingTargetGroup, error)
	BatchGetProbingTargetGroups(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryProbingTargetGroups(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	SearchProbingTargetGroups(context.Context, *SearchQuery) (*QueryResultSnapshot, error)
	WatchProbingTargetGroup(context.Context, *GetQuery, func(*ProbingTargetGroupChange) error) error
	WatchProbingTargetGroups(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveProbingTargetGroup(context.Context, *ProbingTargetGroup, ...gotenresource.SaveOption) error
	DeleteProbingTargetGroup(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type ProbingTargetGroupChange

type ProbingTargetGroupChange struct {

	// ProbingTargetGroup change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*ProbingTargetGroupChange_Added_
	//	*ProbingTargetGroupChange_Modified_
	//	*ProbingTargetGroupChange_Current_
	//	*ProbingTargetGroupChange_Removed_
	ChangeType isProbingTargetGroupChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*ProbingTargetGroupChange) Descriptor

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

Deprecated, Use ProbingTargetGroupChange.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroupChange) GetAdded

func (*ProbingTargetGroupChange) GetChangeType

func (m *ProbingTargetGroupChange) GetChangeType() isProbingTargetGroupChange_ChangeType

func (*ProbingTargetGroupChange) GetCurrent

func (*ProbingTargetGroupChange) GetCurrentViewIndex

func (c *ProbingTargetGroupChange) GetCurrentViewIndex() int32

func (*ProbingTargetGroupChange) GetModified

func (*ProbingTargetGroupChange) GetPreviousViewIndex

func (c *ProbingTargetGroupChange) GetPreviousViewIndex() int32

func (*ProbingTargetGroupChange) GetProbingTargetGroup

func (c *ProbingTargetGroupChange) GetProbingTargetGroup() *ProbingTargetGroup

func (*ProbingTargetGroupChange) GetProbingTargetGroupName

func (c *ProbingTargetGroupChange) GetProbingTargetGroupName() *Name

func (*ProbingTargetGroupChange) GetRawName

func (*ProbingTargetGroupChange) GetRawResource added in v0.5.1

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

func (*ProbingTargetGroupChange) GetRemoved

func (*ProbingTargetGroupChange) GotenMessage

func (*ProbingTargetGroupChange) GotenMessage()

func (*ProbingTargetGroupChange) GotenValidate

func (obj *ProbingTargetGroupChange) GotenValidate() error

func (*ProbingTargetGroupChange) IsAdd

func (c *ProbingTargetGroupChange) IsAdd() bool

func (*ProbingTargetGroupChange) IsCurrent

func (c *ProbingTargetGroupChange) IsCurrent() bool

func (*ProbingTargetGroupChange) IsDelete

func (c *ProbingTargetGroupChange) IsDelete() bool

func (*ProbingTargetGroupChange) IsModify

func (c *ProbingTargetGroupChange) IsModify() bool

func (*ProbingTargetGroupChange) Marshal

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

func (*ProbingTargetGroupChange) MarshalJSON

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

func (*ProbingTargetGroupChange) ProtoMessage

func (*ProbingTargetGroupChange) ProtoMessage()

func (*ProbingTargetGroupChange) ProtoReflect

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

func (*ProbingTargetGroupChange) Reset

func (m *ProbingTargetGroupChange) Reset()

func (*ProbingTargetGroupChange) SetAdded

func (*ProbingTargetGroupChange) SetAddedRaw

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

func (*ProbingTargetGroupChange) SetChangeType

func (m *ProbingTargetGroupChange) SetChangeType(ofv isProbingTargetGroupChange_ChangeType)

func (*ProbingTargetGroupChange) SetCurrent

func (*ProbingTargetGroupChange) SetCurrentRaw

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

func (*ProbingTargetGroupChange) SetDeletedRaw

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

func (*ProbingTargetGroupChange) SetModified

func (*ProbingTargetGroupChange) SetModifiedRaw

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

func (*ProbingTargetGroupChange) SetRemoved

func (*ProbingTargetGroupChange) String

func (m *ProbingTargetGroupChange) String() string

func (*ProbingTargetGroupChange) Unmarshal

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

func (*ProbingTargetGroupChange) UnmarshalJSON

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

type ProbingTargetGroupChangeList

type ProbingTargetGroupChangeList []*ProbingTargetGroupChange

func (ProbingTargetGroupChangeList) Append

func (ProbingTargetGroupChangeList) AppendList

func (ProbingTargetGroupChangeList) At

func (ProbingTargetGroupChangeList) Length

func (l ProbingTargetGroupChangeList) Length() int

func (ProbingTargetGroupChangeList) Set

func (ProbingTargetGroupChangeList) Slice

type ProbingTargetGroupChangeMap

type ProbingTargetGroupChangeMap map[Name]*ProbingTargetGroupChange

func (ProbingTargetGroupChangeMap) Delete

func (ProbingTargetGroupChangeMap) ForEach

func (ProbingTargetGroupChangeMap) Get

func (ProbingTargetGroupChangeMap) Length

func (m ProbingTargetGroupChangeMap) Length() int

func (ProbingTargetGroupChangeMap) Set

type ProbingTargetGroupChange_Added

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

ProbingTargetGroup has been added to query view

func (*ProbingTargetGroupChange_Added) Descriptor

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

Deprecated, Use ProbingTargetGroupChange_Added.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroupChange_Added) GetProbingTargetGroup

func (m *ProbingTargetGroupChange_Added) GetProbingTargetGroup() *ProbingTargetGroup

func (*ProbingTargetGroupChange_Added) GetViewIndex

func (m *ProbingTargetGroupChange_Added) GetViewIndex() int32

func (*ProbingTargetGroupChange_Added) GotenMessage

func (*ProbingTargetGroupChange_Added) GotenMessage()

func (*ProbingTargetGroupChange_Added) GotenValidate

func (obj *ProbingTargetGroupChange_Added) GotenValidate() error

func (*ProbingTargetGroupChange_Added) Marshal

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

func (*ProbingTargetGroupChange_Added) MarshalJSON

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

func (*ProbingTargetGroupChange_Added) ProtoMessage

func (*ProbingTargetGroupChange_Added) ProtoMessage()

func (*ProbingTargetGroupChange_Added) ProtoReflect

func (*ProbingTargetGroupChange_Added) Reset

func (m *ProbingTargetGroupChange_Added) Reset()

func (*ProbingTargetGroupChange_Added) SetProbingTargetGroup

func (m *ProbingTargetGroupChange_Added) SetProbingTargetGroup(fv *ProbingTargetGroup)

func (*ProbingTargetGroupChange_Added) SetViewIndex

func (m *ProbingTargetGroupChange_Added) SetViewIndex(fv int32)

func (*ProbingTargetGroupChange_Added) String

func (*ProbingTargetGroupChange_Added) Unmarshal

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

func (*ProbingTargetGroupChange_Added) UnmarshalJSON

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

type ProbingTargetGroupChange_Added_

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

type ProbingTargetGroupChange_Current

type ProbingTargetGroupChange_Current struct {
	ProbingTargetGroup *ProbingTargetGroup `` /* 148-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*ProbingTargetGroupChange_Current) Descriptor

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

Deprecated, Use ProbingTargetGroupChange_Current.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroupChange_Current) GetProbingTargetGroup

func (m *ProbingTargetGroupChange_Current) GetProbingTargetGroup() *ProbingTargetGroup

func (*ProbingTargetGroupChange_Current) GotenMessage

func (*ProbingTargetGroupChange_Current) GotenMessage()

func (*ProbingTargetGroupChange_Current) GotenValidate

func (obj *ProbingTargetGroupChange_Current) GotenValidate() error

func (*ProbingTargetGroupChange_Current) Marshal

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

func (*ProbingTargetGroupChange_Current) MarshalJSON

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

func (*ProbingTargetGroupChange_Current) ProtoMessage

func (*ProbingTargetGroupChange_Current) ProtoMessage()

func (*ProbingTargetGroupChange_Current) ProtoReflect

func (*ProbingTargetGroupChange_Current) Reset

func (*ProbingTargetGroupChange_Current) SetProbingTargetGroup

func (m *ProbingTargetGroupChange_Current) SetProbingTargetGroup(fv *ProbingTargetGroup)

func (*ProbingTargetGroupChange_Current) String

func (*ProbingTargetGroupChange_Current) Unmarshal

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

func (*ProbingTargetGroupChange_Current) UnmarshalJSON

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

type ProbingTargetGroupChange_Current_

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

type ProbingTargetGroupChange_Modified

type ProbingTargetGroupChange_Modified struct {

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

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

func (*ProbingTargetGroupChange_Modified) Descriptor

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

Deprecated, Use ProbingTargetGroupChange_Modified.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroupChange_Modified) GetFieldMask

func (*ProbingTargetGroupChange_Modified) GetName

func (*ProbingTargetGroupChange_Modified) GetPreviousViewIndex

func (m *ProbingTargetGroupChange_Modified) GetPreviousViewIndex() int32

func (*ProbingTargetGroupChange_Modified) GetProbingTargetGroup

func (m *ProbingTargetGroupChange_Modified) GetProbingTargetGroup() *ProbingTargetGroup

func (*ProbingTargetGroupChange_Modified) GetViewIndex

func (m *ProbingTargetGroupChange_Modified) GetViewIndex() int32

func (*ProbingTargetGroupChange_Modified) GotenMessage

func (*ProbingTargetGroupChange_Modified) GotenMessage()

func (*ProbingTargetGroupChange_Modified) GotenValidate

func (obj *ProbingTargetGroupChange_Modified) GotenValidate() error

func (*ProbingTargetGroupChange_Modified) Marshal

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

func (*ProbingTargetGroupChange_Modified) MarshalJSON

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

func (*ProbingTargetGroupChange_Modified) ProtoMessage

func (*ProbingTargetGroupChange_Modified) ProtoMessage()

func (*ProbingTargetGroupChange_Modified) ProtoReflect

func (*ProbingTargetGroupChange_Modified) Reset

func (*ProbingTargetGroupChange_Modified) SetFieldMask

func (*ProbingTargetGroupChange_Modified) SetName

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

func (*ProbingTargetGroupChange_Modified) SetPreviousViewIndex

func (m *ProbingTargetGroupChange_Modified) SetPreviousViewIndex(fv int32)

func (*ProbingTargetGroupChange_Modified) SetProbingTargetGroup

func (m *ProbingTargetGroupChange_Modified) SetProbingTargetGroup(fv *ProbingTargetGroup)

func (*ProbingTargetGroupChange_Modified) SetViewIndex

func (m *ProbingTargetGroupChange_Modified) SetViewIndex(fv int32)

func (*ProbingTargetGroupChange_Modified) String

func (*ProbingTargetGroupChange_Modified) Unmarshal

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

func (*ProbingTargetGroupChange_Modified) UnmarshalJSON

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

type ProbingTargetGroupChange_Modified_

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

type ProbingTargetGroupChange_Removed

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

func (*ProbingTargetGroupChange_Removed) Descriptor

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

Deprecated, Use ProbingTargetGroupChange_Removed.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroupChange_Removed) GetName

func (m *ProbingTargetGroupChange_Removed) GetName() *Name

func (*ProbingTargetGroupChange_Removed) GetViewIndex

func (m *ProbingTargetGroupChange_Removed) GetViewIndex() int32

func (*ProbingTargetGroupChange_Removed) GotenMessage

func (*ProbingTargetGroupChange_Removed) GotenMessage()

func (*ProbingTargetGroupChange_Removed) GotenValidate

func (obj *ProbingTargetGroupChange_Removed) GotenValidate() error

func (*ProbingTargetGroupChange_Removed) Marshal

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

func (*ProbingTargetGroupChange_Removed) MarshalJSON

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

func (*ProbingTargetGroupChange_Removed) ProtoMessage

func (*ProbingTargetGroupChange_Removed) ProtoMessage()

func (*ProbingTargetGroupChange_Removed) ProtoReflect

func (*ProbingTargetGroupChange_Removed) Reset

func (*ProbingTargetGroupChange_Removed) SetName

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

func (*ProbingTargetGroupChange_Removed) SetViewIndex

func (m *ProbingTargetGroupChange_Removed) SetViewIndex(fv int32)

func (*ProbingTargetGroupChange_Removed) String

func (*ProbingTargetGroupChange_Removed) Unmarshal

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

func (*ProbingTargetGroupChange_Removed) UnmarshalJSON

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

type ProbingTargetGroupChange_Removed_

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

type ProbingTargetGroupFieldPathBuilder

type ProbingTargetGroupFieldPathBuilder struct{}

func NewProbingTargetGroupFieldPathBuilder

func NewProbingTargetGroupFieldPathBuilder() ProbingTargetGroupFieldPathBuilder

func (ProbingTargetGroupFieldPathBuilder) DisplayName

func (ProbingTargetGroupFieldPathBuilder) Metadata

func (ProbingTargetGroupFieldPathBuilder) Name

func (ProbingTargetGroupFieldPathBuilder) State

type ProbingTargetGroupList

type ProbingTargetGroupList []*ProbingTargetGroup

func (ProbingTargetGroupList) Append

func (ProbingTargetGroupList) AppendList

func (ProbingTargetGroupList) At

func (ProbingTargetGroupList) Length

func (l ProbingTargetGroupList) Length() int

func (ProbingTargetGroupList) Set

func (ProbingTargetGroupList) Slice

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

type ProbingTargetGroupMap

type ProbingTargetGroupMap map[Name]*ProbingTargetGroup

func (ProbingTargetGroupMap) Delete

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

func (ProbingTargetGroupMap) ForEach

func (ProbingTargetGroupMap) Get

func (ProbingTargetGroupMap) Length

func (m ProbingTargetGroupMap) Length() int

func (ProbingTargetGroupMap) Set

type ProbingTargetGroupMapPathSelectorMetadataAnnotations

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

func (ProbingTargetGroupMapPathSelectorMetadataAnnotations) FieldPath

func (ProbingTargetGroupMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingTargetGroupMapPathSelectorMetadataAnnotations) WithValue

type ProbingTargetGroupMapPathSelectorMetadataLabels

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

func (ProbingTargetGroupMapPathSelectorMetadataLabels) FieldPath

func (ProbingTargetGroupMapPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingTargetGroupMapPathSelectorMetadataLabels) WithValue

type ProbingTargetGroupMapPathSelectorMetadataShards

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

func (ProbingTargetGroupMapPathSelectorMetadataShards) FieldPath

func (ProbingTargetGroupMapPathSelectorMetadataShards) WithArrayOfValues

func (ProbingTargetGroupMapPathSelectorMetadataShards) WithValue

type ProbingTargetGroupNameList

type ProbingTargetGroupNameList []*Name

func (ProbingTargetGroupNameList) Append

func (ProbingTargetGroupNameList) AppendList

func (ProbingTargetGroupNameList) At

func (ProbingTargetGroupNameList) Length

func (l ProbingTargetGroupNameList) Length() int

func (ProbingTargetGroupNameList) Set

func (ProbingTargetGroupNameList) Slice

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

type ProbingTargetGroupParentNameList

type ProbingTargetGroupParentNameList []*ParentName

func (ProbingTargetGroupParentNameList) Append

func (ProbingTargetGroupParentNameList) AppendList

func (ProbingTargetGroupParentNameList) At

func (ProbingTargetGroupParentNameList) Length

func (ProbingTargetGroupParentNameList) Set

func (ProbingTargetGroupParentNameList) Slice

type ProbingTargetGroupParentReferenceList

type ProbingTargetGroupParentReferenceList []*ParentReference

func (ProbingTargetGroupParentReferenceList) Append

func (ProbingTargetGroupParentReferenceList) AppendList

func (ProbingTargetGroupParentReferenceList) At

func (ProbingTargetGroupParentReferenceList) Length

func (ProbingTargetGroupParentReferenceList) Set

func (ProbingTargetGroupParentReferenceList) Slice

type ProbingTargetGroupPathSelectorDisplayName

type ProbingTargetGroupPathSelectorDisplayName struct{}

func (ProbingTargetGroupPathSelectorDisplayName) FieldPath

func (ProbingTargetGroupPathSelectorDisplayName) WithArrayOfValues

func (ProbingTargetGroupPathSelectorDisplayName) WithValue

type ProbingTargetGroupPathSelectorMetadata

type ProbingTargetGroupPathSelectorMetadata struct{}

func (ProbingTargetGroupPathSelectorMetadata) Annotations

func (ProbingTargetGroupPathSelectorMetadata) CreateTime

func (ProbingTargetGroupPathSelectorMetadata) DeleteTime added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadata) FieldPath

func (ProbingTargetGroupPathSelectorMetadata) Generation

func (ProbingTargetGroupPathSelectorMetadata) Labels

func (ProbingTargetGroupPathSelectorMetadata) Lifecycle added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadata) OwnerReferences

func (ProbingTargetGroupPathSelectorMetadata) ResourceVersion

func (ProbingTargetGroupPathSelectorMetadata) Shards

func (ProbingTargetGroupPathSelectorMetadata) Syncing

func (ProbingTargetGroupPathSelectorMetadata) Tags

func (ProbingTargetGroupPathSelectorMetadata) UpdateTime

func (ProbingTargetGroupPathSelectorMetadata) Uuid

func (ProbingTargetGroupPathSelectorMetadata) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadata) WithSubArrayItemValue

func (ProbingTargetGroupPathSelectorMetadata) WithSubArrayOfValues

func (ProbingTargetGroupPathSelectorMetadata) WithSubPath

func (ProbingTargetGroupPathSelectorMetadata) WithSubValue

func (ProbingTargetGroupPathSelectorMetadata) WithValue

type ProbingTargetGroupPathSelectorMetadataAnnotations

type ProbingTargetGroupPathSelectorMetadataAnnotations struct{}

func (ProbingTargetGroupPathSelectorMetadataAnnotations) FieldPath

func (ProbingTargetGroupPathSelectorMetadataAnnotations) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataAnnotations) WithKey

func (ProbingTargetGroupPathSelectorMetadataAnnotations) WithValue

type ProbingTargetGroupPathSelectorMetadataCreateTime

type ProbingTargetGroupPathSelectorMetadataCreateTime struct{}

func (ProbingTargetGroupPathSelectorMetadataCreateTime) FieldPath

func (ProbingTargetGroupPathSelectorMetadataCreateTime) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataCreateTime) WithValue

type ProbingTargetGroupPathSelectorMetadataDeleteTime added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataDeleteTime struct{}

func (ProbingTargetGroupPathSelectorMetadataDeleteTime) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataDeleteTime) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataDeleteTime) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataGeneration

type ProbingTargetGroupPathSelectorMetadataGeneration struct{}

func (ProbingTargetGroupPathSelectorMetadataGeneration) FieldPath

func (ProbingTargetGroupPathSelectorMetadataGeneration) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataGeneration) WithValue

type ProbingTargetGroupPathSelectorMetadataLabels

type ProbingTargetGroupPathSelectorMetadataLabels struct{}

func (ProbingTargetGroupPathSelectorMetadataLabels) FieldPath

func (ProbingTargetGroupPathSelectorMetadataLabels) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataLabels) WithKey

func (ProbingTargetGroupPathSelectorMetadataLabels) WithValue

type ProbingTargetGroupPathSelectorMetadataLifecycle added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataLifecycle struct{}

func (ProbingTargetGroupPathSelectorMetadataLifecycle) BlockDeletion added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycle) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycle) State added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycle) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycle) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataLifecycleBlockDeletion added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataLifecycleBlockDeletion struct{}

func (ProbingTargetGroupPathSelectorMetadataLifecycleBlockDeletion) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycleBlockDeletion) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataLifecycleState added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataLifecycleState struct{}

func (ProbingTargetGroupPathSelectorMetadataLifecycleState) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycleState) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataLifecycleState) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferences

type ProbingTargetGroupPathSelectorMetadataOwnerReferences struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) Controller

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) FieldPath

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) Kind

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) Name

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) Region added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) RequiresOwnerReference added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) Version added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) WithItemValue

func (ProbingTargetGroupPathSelectorMetadataOwnerReferences) WithValue

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesBlockOwnerDeletion

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesController

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesController struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesController) FieldPath

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesController) WithValue

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesKind

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesKind struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesKind) FieldPath

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesKind) WithValue

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesName

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesName struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesName) FieldPath

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesName) WithValue

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesRegion added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesRegion struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRegion) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRegion) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesRequiresOwnerReference added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesVersion added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataOwnerReferencesVersion struct{}

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesVersion) FieldPath added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues added in v0.7.1

func (ProbingTargetGroupPathSelectorMetadataOwnerReferencesVersion) WithValue added in v0.7.1

type ProbingTargetGroupPathSelectorMetadataResourceVersion

type ProbingTargetGroupPathSelectorMetadataResourceVersion struct{}

func (ProbingTargetGroupPathSelectorMetadataResourceVersion) FieldPath

func (ProbingTargetGroupPathSelectorMetadataResourceVersion) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataResourceVersion) WithValue

type ProbingTargetGroupPathSelectorMetadataShards

type ProbingTargetGroupPathSelectorMetadataShards struct{}

func (ProbingTargetGroupPathSelectorMetadataShards) FieldPath

func (ProbingTargetGroupPathSelectorMetadataShards) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataShards) WithKey

func (ProbingTargetGroupPathSelectorMetadataShards) WithValue

type ProbingTargetGroupPathSelectorMetadataSyncing

type ProbingTargetGroupPathSelectorMetadataSyncing struct{}

func (ProbingTargetGroupPathSelectorMetadataSyncing) FieldPath

func (ProbingTargetGroupPathSelectorMetadataSyncing) OwningRegion

func (ProbingTargetGroupPathSelectorMetadataSyncing) Regions

func (ProbingTargetGroupPathSelectorMetadataSyncing) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataSyncing) WithValue

type ProbingTargetGroupPathSelectorMetadataSyncingOwningRegion

type ProbingTargetGroupPathSelectorMetadataSyncingOwningRegion struct{}

func (ProbingTargetGroupPathSelectorMetadataSyncingOwningRegion) FieldPath

func (ProbingTargetGroupPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataSyncingOwningRegion) WithValue

type ProbingTargetGroupPathSelectorMetadataSyncingRegions

type ProbingTargetGroupPathSelectorMetadataSyncingRegions struct{}

func (ProbingTargetGroupPathSelectorMetadataSyncingRegions) FieldPath

func (ProbingTargetGroupPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataSyncingRegions) WithItemValue

func (ProbingTargetGroupPathSelectorMetadataSyncingRegions) WithValue

type ProbingTargetGroupPathSelectorMetadataTags

type ProbingTargetGroupPathSelectorMetadataTags struct{}

func (ProbingTargetGroupPathSelectorMetadataTags) FieldPath

func (ProbingTargetGroupPathSelectorMetadataTags) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataTags) WithItemValue

func (ProbingTargetGroupPathSelectorMetadataTags) WithValue

type ProbingTargetGroupPathSelectorMetadataUpdateTime

type ProbingTargetGroupPathSelectorMetadataUpdateTime struct{}

func (ProbingTargetGroupPathSelectorMetadataUpdateTime) FieldPath

func (ProbingTargetGroupPathSelectorMetadataUpdateTime) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataUpdateTime) WithValue

type ProbingTargetGroupPathSelectorMetadataUuid

type ProbingTargetGroupPathSelectorMetadataUuid struct{}

func (ProbingTargetGroupPathSelectorMetadataUuid) FieldPath

func (ProbingTargetGroupPathSelectorMetadataUuid) WithArrayOfValues

func (ProbingTargetGroupPathSelectorMetadataUuid) WithValue

type ProbingTargetGroupPathSelectorName

type ProbingTargetGroupPathSelectorName struct{}

func (ProbingTargetGroupPathSelectorName) FieldPath

func (ProbingTargetGroupPathSelectorName) WithArrayOfValues

func (ProbingTargetGroupPathSelectorName) WithValue

type ProbingTargetGroupPathSelectorState

type ProbingTargetGroupPathSelectorState struct{}

func (ProbingTargetGroupPathSelectorState) FieldPath

func (ProbingTargetGroupPathSelectorState) TargetCount

func (ProbingTargetGroupPathSelectorState) WithArrayOfValues

func (ProbingTargetGroupPathSelectorState) WithSubArrayItemValue

func (ProbingTargetGroupPathSelectorState) WithSubArrayOfValues

func (ProbingTargetGroupPathSelectorState) WithSubPath

func (ProbingTargetGroupPathSelectorState) WithSubValue

func (ProbingTargetGroupPathSelectorState) WithValue

type ProbingTargetGroupPathSelectorStateTargetCount

type ProbingTargetGroupPathSelectorStateTargetCount struct{}

func (ProbingTargetGroupPathSelectorStateTargetCount) FieldPath

func (ProbingTargetGroupPathSelectorStateTargetCount) WithArrayOfValues

func (ProbingTargetGroupPathSelectorStateTargetCount) WithValue

type ProbingTargetGroupReferenceList

type ProbingTargetGroupReferenceList []*Reference

func (ProbingTargetGroupReferenceList) Append

func (ProbingTargetGroupReferenceList) AppendList

func (ProbingTargetGroupReferenceList) At

func (ProbingTargetGroupReferenceList) Length

func (ProbingTargetGroupReferenceList) Set

func (ProbingTargetGroupReferenceList) Slice

type ProbingTargetGroupStateFieldPathBuilder

type ProbingTargetGroupStateFieldPathBuilder struct{}

func NewProbingTargetGroupStateFieldPathBuilder

func NewProbingTargetGroupStateFieldPathBuilder() ProbingTargetGroupStateFieldPathBuilder

func (ProbingTargetGroupStateFieldPathBuilder) TargetCount

type ProbingTargetGroupState_FieldPath

type ProbingTargetGroupState_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingTargetGroupState_FieldPathSelector
	Get(source *ProbingTargetGroup_State) []interface{}
	GetSingle(source *ProbingTargetGroup_State) (interface{}, bool)
	ClearValue(item *ProbingTargetGroup_State)

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

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

func MustParseProbingTargetGroupState_FieldPath

func MustParseProbingTargetGroupState_FieldPath(rawField string) ProbingTargetGroupState_FieldPath

func ParseProbingTargetGroupState_FieldPath

func ParseProbingTargetGroupState_FieldPath(rawField string) (ProbingTargetGroupState_FieldPath, error)

type ProbingTargetGroupState_FieldPathArrayItemValue

type ProbingTargetGroupState_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingTargetGroupState_FieldPath
	ContainsValue(*ProbingTargetGroup_State) bool
}

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

func MustParseProbingTargetGroupState_FieldPathArrayItemValue

func MustParseProbingTargetGroupState_FieldPathArrayItemValue(pathStr, valueStr string) ProbingTargetGroupState_FieldPathArrayItemValue

func ParseProbingTargetGroupState_FieldPathArrayItemValue

func ParseProbingTargetGroupState_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingTargetGroupState_FieldPathArrayItemValue, error)

ParseProbingTargetGroupState_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingTargetGroupState_FieldPathArrayOfValues

type ProbingTargetGroupState_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingTargetGroupState_FieldPath
}

ProbingTargetGroupState_FieldPathArrayOfValues allows storing slice of values for State fields according to their type

func MustParseProbingTargetGroupState_FieldPathArrayOfValues

func MustParseProbingTargetGroupState_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingTargetGroupState_FieldPathArrayOfValues

func ParseProbingTargetGroupState_FieldPathArrayOfValues

func ParseProbingTargetGroupState_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingTargetGroupState_FieldPathArrayOfValues, error)

type ProbingTargetGroupState_FieldPathSelector

type ProbingTargetGroupState_FieldPathSelector int32
const (
	ProbingTargetGroupState_FieldPathSelectorTargetCount ProbingTargetGroupState_FieldPathSelector = 0
)

func (ProbingTargetGroupState_FieldPathSelector) String

type ProbingTargetGroupState_FieldPathValue

type ProbingTargetGroupState_FieldPathValue interface {
	ProbingTargetGroupState_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingTargetGroup_State)
	CompareWith(*ProbingTargetGroup_State) (cmp int, comparable bool)
}

ProbingTargetGroupState_FieldPathValue allows storing values for State fields according to their type

func MustParseProbingTargetGroupState_FieldPathValue

func MustParseProbingTargetGroupState_FieldPathValue(pathStr, valueStr string) ProbingTargetGroupState_FieldPathValue

func ParseProbingTargetGroupState_FieldPathValue

func ParseProbingTargetGroupState_FieldPathValue(pathStr, valueStr string) (ProbingTargetGroupState_FieldPathValue, error)

type ProbingTargetGroupState_FieldTerminalPath

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

func (*ProbingTargetGroupState_FieldTerminalPath) ClearValue

func (*ProbingTargetGroupState_FieldTerminalPath) ClearValueRaw

func (*ProbingTargetGroupState_FieldTerminalPath) Get

func (fp *ProbingTargetGroupState_FieldTerminalPath) Get(source *ProbingTargetGroup_State) (values []interface{})

Get returns all values pointed by specific field from source ProbingTargetGroup_State

func (*ProbingTargetGroupState_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingTargetGroupState_FieldTerminalPath) GetRaw

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

func (*ProbingTargetGroupState_FieldTerminalPath) GetSingle

func (fp *ProbingTargetGroupState_FieldTerminalPath) GetSingle(source *ProbingTargetGroup_State) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingTargetGroup_State

func (*ProbingTargetGroupState_FieldTerminalPath) GetSingleRaw

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

func (*ProbingTargetGroupState_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingTargetGroupState_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingTargetGroupState_FieldTerminalPath) Selector

func (*ProbingTargetGroupState_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingTargetGroupState_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingTargetGroupState_FieldTerminalPath) WithIArrayItemValue

func (*ProbingTargetGroupState_FieldTerminalPath) WithIArrayOfValues

func (*ProbingTargetGroupState_FieldTerminalPath) WithIValue

func (*ProbingTargetGroupState_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingTargetGroupState_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingTargetGroupState_FieldTerminalPath) WithRawIValue

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

type ProbingTargetGroupState_FieldTerminalPathArrayItemValue

type ProbingTargetGroupState_FieldTerminalPathArrayItemValue struct {
	ProbingTargetGroupState_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroupState_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingTargetGroupState_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingTargetGroupState_FieldTerminalPathArrayItemValue) GetSingle

func (*ProbingTargetGroupState_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingTargetGroupState_FieldTerminalPathArrayOfValues

type ProbingTargetGroupState_FieldTerminalPathArrayOfValues struct {
	ProbingTargetGroupState_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroupState_FieldTerminalPathArrayOfValues) AsTargetCountArrayOfValues

func (fpaov *ProbingTargetGroupState_FieldTerminalPathArrayOfValues) AsTargetCountArrayOfValues() ([]int64, bool)

func (*ProbingTargetGroupState_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingTargetGroupState_FieldTerminalPathValue

type ProbingTargetGroupState_FieldTerminalPathValue struct {
	ProbingTargetGroupState_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroupState_FieldTerminalPathValue) AsTargetCountValue

func (fpv *ProbingTargetGroupState_FieldTerminalPathValue) AsTargetCountValue() (int64, bool)

func (*ProbingTargetGroupState_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingTargetGroupState_FieldTerminalPathValue' with the value under path in 'ProbingTargetGroup_State'.

func (*ProbingTargetGroupState_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingTargetGroupState_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingTargetGroupState_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object State

func (*ProbingTargetGroupState_FieldTerminalPathValue) SetToRaw

type ProbingTargetGroup_FieldMask

type ProbingTargetGroup_FieldMask struct {
	Paths []ProbingTargetGroup_FieldPath
}

func FullProbingTargetGroup_FieldMask

func FullProbingTargetGroup_FieldMask() *ProbingTargetGroup_FieldMask

func ResourceViewFieldMask

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

func (*ProbingTargetGroup_FieldMask) AppendPath

func (fieldMask *ProbingTargetGroup_FieldMask) AppendPath(path ProbingTargetGroup_FieldPath)

func (*ProbingTargetGroup_FieldMask) AppendRawPath

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

func (*ProbingTargetGroup_FieldMask) DecodeFirestore

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

func (*ProbingTargetGroup_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingTargetGroup_FieldMask) FilterInputFields

func (fieldMask *ProbingTargetGroup_FieldMask) FilterInputFields() *ProbingTargetGroup_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingTargetGroup_FieldMask) FromProtoFieldMask

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

func (*ProbingTargetGroup_FieldMask) GetPaths

func (*ProbingTargetGroup_FieldMask) GetRawPaths

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

func (*ProbingTargetGroup_FieldMask) IsFull

func (fieldMask *ProbingTargetGroup_FieldMask) IsFull() bool

func (ProbingTargetGroup_FieldMask) Marshal

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

implement methods required by customType

func (ProbingTargetGroup_FieldMask) MarshalJSON

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

func (*ProbingTargetGroup_FieldMask) PathsCount

func (fieldMask *ProbingTargetGroup_FieldMask) PathsCount() int

func (*ProbingTargetGroup_FieldMask) Project

func (*ProbingTargetGroup_FieldMask) ProjectRaw

func (*ProbingTargetGroup_FieldMask) ProtoMessage

func (fieldMask *ProbingTargetGroup_FieldMask) ProtoMessage()

func (*ProbingTargetGroup_FieldMask) ProtoReflect

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

func (*ProbingTargetGroup_FieldMask) Reset

func (fieldMask *ProbingTargetGroup_FieldMask) Reset()

func (*ProbingTargetGroup_FieldMask) Set

func (fieldMask *ProbingTargetGroup_FieldMask) Set(target, source *ProbingTargetGroup)

func (*ProbingTargetGroup_FieldMask) SetFromCliFlag

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

func (*ProbingTargetGroup_FieldMask) SetRaw

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

func (*ProbingTargetGroup_FieldMask) Size

func (fieldMask *ProbingTargetGroup_FieldMask) Size() int

func (*ProbingTargetGroup_FieldMask) String

func (fieldMask *ProbingTargetGroup_FieldMask) String() string

func (*ProbingTargetGroup_FieldMask) Subtract

func (*ProbingTargetGroup_FieldMask) SubtractRaw

func (*ProbingTargetGroup_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingTargetGroup_FieldMask) Unmarshal

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

func (*ProbingTargetGroup_FieldMask) UnmarshalJSON

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

type ProbingTargetGroup_FieldPath

type ProbingTargetGroup_FieldPath interface {
	gotenobject.FieldPath
	Selector() ProbingTargetGroup_FieldPathSelector
	Get(source *ProbingTargetGroup) []interface{}
	GetSingle(source *ProbingTargetGroup) (interface{}, bool)
	ClearValue(item *ProbingTargetGroup)

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

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

func MustParseProbingTargetGroup_FieldPath

func MustParseProbingTargetGroup_FieldPath(rawField string) ProbingTargetGroup_FieldPath

func ParseProbingTargetGroup_FieldPath

func ParseProbingTargetGroup_FieldPath(rawField string) (ProbingTargetGroup_FieldPath, error)

type ProbingTargetGroup_FieldPathArrayItemValue

type ProbingTargetGroup_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	ProbingTargetGroup_FieldPath
	ContainsValue(*ProbingTargetGroup) bool
}

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

func MustParseProbingTargetGroup_FieldPathArrayItemValue

func MustParseProbingTargetGroup_FieldPathArrayItemValue(pathStr, valueStr string) ProbingTargetGroup_FieldPathArrayItemValue

func ParseProbingTargetGroup_FieldPathArrayItemValue

func ParseProbingTargetGroup_FieldPathArrayItemValue(pathStr, valueStr string) (ProbingTargetGroup_FieldPathArrayItemValue, error)

ParseProbingTargetGroup_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type ProbingTargetGroup_FieldPathArrayOfValues

type ProbingTargetGroup_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	ProbingTargetGroup_FieldPath
}

ProbingTargetGroup_FieldPathArrayOfValues allows storing slice of values for ProbingTargetGroup fields according to their type

func MustParseProbingTargetGroup_FieldPathArrayOfValues

func MustParseProbingTargetGroup_FieldPathArrayOfValues(pathStr, valuesStr string) ProbingTargetGroup_FieldPathArrayOfValues

func ParseProbingTargetGroup_FieldPathArrayOfValues

func ParseProbingTargetGroup_FieldPathArrayOfValues(pathStr, valuesStr string) (ProbingTargetGroup_FieldPathArrayOfValues, error)

type ProbingTargetGroup_FieldPathSelector

type ProbingTargetGroup_FieldPathSelector int32
const (
	ProbingTargetGroup_FieldPathSelectorName        ProbingTargetGroup_FieldPathSelector = 0
	ProbingTargetGroup_FieldPathSelectorDisplayName ProbingTargetGroup_FieldPathSelector = 1
	ProbingTargetGroup_FieldPathSelectorState       ProbingTargetGroup_FieldPathSelector = 2
	ProbingTargetGroup_FieldPathSelectorMetadata    ProbingTargetGroup_FieldPathSelector = 3
)

func (ProbingTargetGroup_FieldPathSelector) String

type ProbingTargetGroup_FieldPathValue

type ProbingTargetGroup_FieldPathValue interface {
	ProbingTargetGroup_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **ProbingTargetGroup)
	CompareWith(*ProbingTargetGroup) (cmp int, comparable bool)
}

ProbingTargetGroup_FieldPathValue allows storing values for ProbingTargetGroup fields according to their type

func MustParseProbingTargetGroup_FieldPathValue

func MustParseProbingTargetGroup_FieldPathValue(pathStr, valueStr string) ProbingTargetGroup_FieldPathValue

func ParseProbingTargetGroup_FieldPathValue

func ParseProbingTargetGroup_FieldPathValue(pathStr, valueStr string) (ProbingTargetGroup_FieldPathValue, error)

type ProbingTargetGroup_FieldSubPath

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

func (*ProbingTargetGroup_FieldSubPath) AsMetadataSubPath

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

func (*ProbingTargetGroup_FieldSubPath) AsStateSubPath

func (*ProbingTargetGroup_FieldSubPath) ClearValue

func (fps *ProbingTargetGroup_FieldSubPath) ClearValue(item *ProbingTargetGroup)

func (*ProbingTargetGroup_FieldSubPath) ClearValueRaw

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

func (*ProbingTargetGroup_FieldSubPath) Get

func (fps *ProbingTargetGroup_FieldSubPath) Get(source *ProbingTargetGroup) (values []interface{})

Get returns all values pointed by selected field from source ProbingTargetGroup

func (*ProbingTargetGroup_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingTargetGroup_FieldSubPath) GetRaw

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

func (*ProbingTargetGroup_FieldSubPath) GetSingle

func (fps *ProbingTargetGroup_FieldSubPath) GetSingle(source *ProbingTargetGroup) (interface{}, bool)

GetSingle returns value of selected field from source ProbingTargetGroup

func (*ProbingTargetGroup_FieldSubPath) GetSingleRaw

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

func (*ProbingTargetGroup_FieldSubPath) IsLeaf

func (fps *ProbingTargetGroup_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*ProbingTargetGroup_FieldSubPath) JSONString

func (fps *ProbingTargetGroup_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*ProbingTargetGroup_FieldSubPath) Selector

func (*ProbingTargetGroup_FieldSubPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingTargetGroup_FieldSubPath) String

String returns path representation in proto convention

func (*ProbingTargetGroup_FieldSubPath) WithIArrayItemValue

func (fps *ProbingTargetGroup_FieldSubPath) WithIArrayItemValue(value interface{}) ProbingTargetGroup_FieldPathArrayItemValue

func (*ProbingTargetGroup_FieldSubPath) WithIArrayOfValues

func (fps *ProbingTargetGroup_FieldSubPath) WithIArrayOfValues(values interface{}) ProbingTargetGroup_FieldPathArrayOfValues

func (*ProbingTargetGroup_FieldSubPath) WithIValue

func (fps *ProbingTargetGroup_FieldSubPath) WithIValue(value interface{}) ProbingTargetGroup_FieldPathValue

func (*ProbingTargetGroup_FieldSubPath) WithRawIArrayItemValue

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

func (*ProbingTargetGroup_FieldSubPath) WithRawIArrayOfValues

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

func (*ProbingTargetGroup_FieldSubPath) WithRawIValue

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

type ProbingTargetGroup_FieldSubPathArrayItemValue

type ProbingTargetGroup_FieldSubPathArrayItemValue struct {
	ProbingTargetGroup_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*ProbingTargetGroup_FieldSubPathArrayItemValue) AsStatePathItemValue

func (*ProbingTargetGroup_FieldSubPathArrayItemValue) ContainsValue

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

func (*ProbingTargetGroup_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type ProbingTargetGroup_FieldSubPathArrayOfValues

type ProbingTargetGroup_FieldSubPathArrayOfValues struct {
	ProbingTargetGroup_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (*ProbingTargetGroup_FieldSubPathArrayOfValues) AsStatePathArrayOfValues

func (*ProbingTargetGroup_FieldSubPathArrayOfValues) GetRawValues

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

type ProbingTargetGroup_FieldSubPathValue

type ProbingTargetGroup_FieldSubPathValue struct {
	ProbingTargetGroup_FieldPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldSubPathValue) AsMetadataPathValue

func (*ProbingTargetGroup_FieldSubPathValue) AsStatePathValue

func (*ProbingTargetGroup_FieldSubPathValue) CompareWith

func (fpvs *ProbingTargetGroup_FieldSubPathValue) CompareWith(source *ProbingTargetGroup) (int, bool)

func (*ProbingTargetGroup_FieldSubPathValue) CompareWithRaw

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

func (*ProbingTargetGroup_FieldSubPathValue) GetRawValue

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

func (*ProbingTargetGroup_FieldSubPathValue) SetTo

func (*ProbingTargetGroup_FieldSubPathValue) SetToRaw

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

type ProbingTargetGroup_FieldTerminalPath

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

func (*ProbingTargetGroup_FieldTerminalPath) ClearValue

func (*ProbingTargetGroup_FieldTerminalPath) ClearValueRaw

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

func (*ProbingTargetGroup_FieldTerminalPath) Get

func (fp *ProbingTargetGroup_FieldTerminalPath) Get(source *ProbingTargetGroup) (values []interface{})

Get returns all values pointed by specific field from source ProbingTargetGroup

func (*ProbingTargetGroup_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*ProbingTargetGroup_FieldTerminalPath) GetRaw

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

func (*ProbingTargetGroup_FieldTerminalPath) GetSingle

func (fp *ProbingTargetGroup_FieldTerminalPath) GetSingle(source *ProbingTargetGroup) (interface{}, bool)

GetSingle returns value pointed by specific field of from source ProbingTargetGroup

func (*ProbingTargetGroup_FieldTerminalPath) GetSingleRaw

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

func (*ProbingTargetGroup_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*ProbingTargetGroup_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*ProbingTargetGroup_FieldTerminalPath) Selector

func (*ProbingTargetGroup_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.7.1

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

func (*ProbingTargetGroup_FieldTerminalPath) String

String returns path representation in proto convention

func (*ProbingTargetGroup_FieldTerminalPath) WithIArrayItemValue

func (fp *ProbingTargetGroup_FieldTerminalPath) WithIArrayItemValue(value interface{}) ProbingTargetGroup_FieldPathArrayItemValue

func (*ProbingTargetGroup_FieldTerminalPath) WithIArrayOfValues

func (fp *ProbingTargetGroup_FieldTerminalPath) WithIArrayOfValues(values interface{}) ProbingTargetGroup_FieldPathArrayOfValues

func (*ProbingTargetGroup_FieldTerminalPath) WithIValue

func (*ProbingTargetGroup_FieldTerminalPath) WithRawIArrayItemValue

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

func (*ProbingTargetGroup_FieldTerminalPath) WithRawIArrayOfValues

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

func (*ProbingTargetGroup_FieldTerminalPath) WithRawIValue

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

type ProbingTargetGroup_FieldTerminalPathArrayItemValue

type ProbingTargetGroup_FieldTerminalPathArrayItemValue struct {
	ProbingTargetGroup_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*ProbingTargetGroup_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*ProbingTargetGroup_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *ProbingTargetGroup_FieldTerminalPathArrayItemValue) GetSingle(source *ProbingTargetGroup) (interface{}, bool)

func (*ProbingTargetGroup_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type ProbingTargetGroup_FieldTerminalPathArrayOfValues

type ProbingTargetGroup_FieldTerminalPathArrayOfValues struct {
	ProbingTargetGroup_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

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

func (*ProbingTargetGroup_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*ProbingTargetGroup_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*ProbingTargetGroup_FieldTerminalPathArrayOfValues) AsStateArrayOfValues

func (*ProbingTargetGroup_FieldTerminalPathArrayOfValues) GetRawValues

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

type ProbingTargetGroup_FieldTerminalPathValue

type ProbingTargetGroup_FieldTerminalPathValue struct {
	ProbingTargetGroup_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*ProbingTargetGroup_FieldTerminalPathValue) AsDisplayNameValue

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

func (*ProbingTargetGroup_FieldTerminalPathValue) AsMetadataValue

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

func (*ProbingTargetGroup_FieldTerminalPathValue) AsNameValue

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

func (*ProbingTargetGroup_FieldTerminalPathValue) AsStateValue

func (*ProbingTargetGroup_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'ProbingTargetGroup_FieldTerminalPathValue' with the value under path in 'ProbingTargetGroup'.

func (*ProbingTargetGroup_FieldTerminalPathValue) CompareWithRaw

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

func (*ProbingTargetGroup_FieldTerminalPathValue) GetRawValue

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

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

func (*ProbingTargetGroup_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ProbingTargetGroup

func (*ProbingTargetGroup_FieldTerminalPathValue) SetToRaw

type ProbingTargetGroup_State

type ProbingTargetGroup_State struct {

	// total count of [ProbingTargets][ntt.watchdog.v1alpha2.ProbingTarget]
	// associated with this group
	TargetCount int64 `protobuf:"varint,1,opt,name=target_count,json=targetCount,proto3" json:"target_count,omitempty" firestore:"targetCount"`
	// contains filtered or unexported fields
}

Group State

func (*ProbingTargetGroup_State) Clone

func (*ProbingTargetGroup_State) CloneRaw

func (*ProbingTargetGroup_State) Descriptor

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

Deprecated, Use ProbingTargetGroup_State.ProtoReflect.Descriptor instead.

func (*ProbingTargetGroup_State) GetTargetCount

func (m *ProbingTargetGroup_State) GetTargetCount() int64

func (*ProbingTargetGroup_State) GotenMessage

func (*ProbingTargetGroup_State) GotenMessage()

func (*ProbingTargetGroup_State) GotenObjectExt

func (o *ProbingTargetGroup_State) GotenObjectExt()

func (*ProbingTargetGroup_State) GotenValidate

func (obj *ProbingTargetGroup_State) GotenValidate() error

func (*ProbingTargetGroup_State) MakeDiffFieldMask

func (*ProbingTargetGroup_State) MakeFullFieldMask

func (*ProbingTargetGroup_State) MakeRawDiffFieldMask

func (*ProbingTargetGroup_State) MakeRawFullFieldMask

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

func (*ProbingTargetGroup_State) Marshal

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

func (*ProbingTargetGroup_State) MarshalJSON

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

func (*ProbingTargetGroup_State) Merge

func (*ProbingTargetGroup_State) MergeRaw

func (*ProbingTargetGroup_State) ProtoMessage

func (*ProbingTargetGroup_State) ProtoMessage()

func (*ProbingTargetGroup_State) ProtoReflect

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

func (*ProbingTargetGroup_State) Reset

func (m *ProbingTargetGroup_State) Reset()

func (*ProbingTargetGroup_State) SetTargetCount

func (m *ProbingTargetGroup_State) SetTargetCount(fv int64)

func (*ProbingTargetGroup_State) String

func (m *ProbingTargetGroup_State) String() string

func (*ProbingTargetGroup_State) Unmarshal

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

func (*ProbingTargetGroup_State) UnmarshalJSON

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

type ProbingTargetGroup_StatePathSelectorTargetCount

type ProbingTargetGroup_StatePathSelectorTargetCount struct{}

func (ProbingTargetGroup_StatePathSelectorTargetCount) FieldPath

func (ProbingTargetGroup_StatePathSelectorTargetCount) WithArrayOfValues

func (ProbingTargetGroup_StatePathSelectorTargetCount) WithValue

type ProbingTargetGroup_State_FieldMask

type ProbingTargetGroup_State_FieldMask struct {
	Paths []ProbingTargetGroupState_FieldPath
}

func FullProbingTargetGroup_State_FieldMask

func FullProbingTargetGroup_State_FieldMask() *ProbingTargetGroup_State_FieldMask

func (*ProbingTargetGroup_State_FieldMask) AppendPath

func (*ProbingTargetGroup_State_FieldMask) AppendRawPath

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

func (*ProbingTargetGroup_State_FieldMask) DecodeFirestore

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

func (*ProbingTargetGroup_State_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*ProbingTargetGroup_State_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*ProbingTargetGroup_State_FieldMask) FromProtoFieldMask

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

func (*ProbingTargetGroup_State_FieldMask) GetPaths

func (*ProbingTargetGroup_State_FieldMask) GetRawPaths

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

func (*ProbingTargetGroup_State_FieldMask) IsFull

func (fieldMask *ProbingTargetGroup_State_FieldMask) IsFull() bool

func (ProbingTargetGroup_State_FieldMask) Marshal

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

implement methods required by customType

func (ProbingTargetGroup_State_FieldMask) MarshalJSON

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

func (*ProbingTargetGroup_State_FieldMask) PathsCount

func (fieldMask *ProbingTargetGroup_State_FieldMask) PathsCount() int

func (*ProbingTargetGroup_State_FieldMask) Project

func (*ProbingTargetGroup_State_FieldMask) ProjectRaw

func (*ProbingTargetGroup_State_FieldMask) ProtoMessage

func (fieldMask *ProbingTargetGroup_State_FieldMask) ProtoMessage()

func (*ProbingTargetGroup_State_FieldMask) ProtoReflect

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

func (*ProbingTargetGroup_State_FieldMask) Reset

func (fieldMask *ProbingTargetGroup_State_FieldMask) Reset()

func (*ProbingTargetGroup_State_FieldMask) Set

func (fieldMask *ProbingTargetGroup_State_FieldMask) Set(target, source *ProbingTargetGroup_State)

func (*ProbingTargetGroup_State_FieldMask) SetFromCliFlag

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

func (*ProbingTargetGroup_State_FieldMask) SetRaw

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

func (*ProbingTargetGroup_State_FieldMask) Size

func (fieldMask *ProbingTargetGroup_State_FieldMask) Size() int

func (*ProbingTargetGroup_State_FieldMask) String

func (fieldMask *ProbingTargetGroup_State_FieldMask) String() string

func (*ProbingTargetGroup_State_FieldMask) Subtract

func (*ProbingTargetGroup_State_FieldMask) SubtractRaw

func (*ProbingTargetGroup_State_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*ProbingTargetGroup_State_FieldMask) Unmarshal

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

func (*ProbingTargetGroup_State_FieldMask) UnmarshalJSON

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

type QueryResultChange

type QueryResultChange struct {
	Changes        []*ProbingTargetGroupChange
	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 {
	ProbingTargetGroups []*ProbingTargetGroup
	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, probingTargetGroup *ProbingTargetGroup) (*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) GetProbingTargetGroup

func (ref *Reference) GetProbingTargetGroup() *ProbingTargetGroup

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

func (*Reference) ResolveRaw

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

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type SearchQuery

type SearchQuery struct {
	ListQuery
	Phrase string
}

func (*SearchQuery) GetPhrase

func (q *SearchQuery) GetPhrase() string

func (*SearchQuery) GetWithPagingInfo added in v0.8.3

func (q *SearchQuery) GetWithPagingInfo() bool

func (*SearchQuery) SetPhrase

func (q *SearchQuery) SetPhrase(phrase string)

func (*SearchQuery) String

func (q *SearchQuery) String() string

type WatchQuery

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

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime added in v0.7.13

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

func (*WatchQuery) GetWatchType

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

func (*WatchQuery) SetMaximumChunkSize

func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)

func (*WatchQuery) SetResumeToken

func (q *WatchQuery) SetResumeToken(token string)

func (*WatchQuery) SetStartingTime added in v0.7.13

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

func (*WatchQuery) SetWatchType

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

func (*WatchQuery) String added in v0.4.26

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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