agent_software_version

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Nil = "agentSoftwareVersions/{agent_software_version}"
)

Variables

This section is empty.

Functions

Types

type AgentSoftwareVersion

type AgentSoftwareVersion struct {

	// Name of AgentSoftwareVersion
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// Linux agent version
	Linux string `protobuf:"bytes,2,opt,name=linux,proto3" json:"linux,omitempty" firestore:"linux"`
	// Windows agent version
	Windows string `protobuf:"bytes,3,opt,name=windows,proto3" json:"windows,omitempty" firestore:"windows"`
	// Mac agent version
	Mac string `protobuf:"bytes,4,opt,name=mac,proto3" json:"mac,omitempty" firestore:"mac"`
	// Android agent version
	Android string `protobuf:"bytes,5,opt,name=android,proto3" json:"android,omitempty" firestore:"android"`
	// Metadata
	Metadata *ntt_meta.Meta `protobuf:"bytes,6,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// contains filtered or unexported fields
}

AgentSoftwareVersion Resource

func (*AgentSoftwareVersion) Clone

func (*AgentSoftwareVersion) CloneRaw

func (*AgentSoftwareVersion) Descriptor

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

Deprecated, Use AgentSoftwareVersion.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersion) GetAndroid

func (m *AgentSoftwareVersion) GetAndroid() string

func (*AgentSoftwareVersion) GetLinux

func (m *AgentSoftwareVersion) GetLinux() string

func (*AgentSoftwareVersion) GetMac

func (m *AgentSoftwareVersion) GetMac() string

func (*AgentSoftwareVersion) GetMetadata

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

func (*AgentSoftwareVersion) GetName

func (m *AgentSoftwareVersion) GetName() *Name

func (*AgentSoftwareVersion) GetRawName

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

func (*AgentSoftwareVersion) GetResourceDescriptor

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

func (*AgentSoftwareVersion) GetWindows

func (m *AgentSoftwareVersion) GetWindows() string

func (*AgentSoftwareVersion) GotenMessage

func (*AgentSoftwareVersion) GotenMessage()

func (*AgentSoftwareVersion) GotenObjectExt

func (o *AgentSoftwareVersion) GotenObjectExt()

func (*AgentSoftwareVersion) GotenValidate

func (obj *AgentSoftwareVersion) GotenValidate() error

func (*AgentSoftwareVersion) MakeDiffFieldMask

func (*AgentSoftwareVersion) MakeFullFieldMask

func (o *AgentSoftwareVersion) MakeFullFieldMask() *AgentSoftwareVersion_FieldMask

func (*AgentSoftwareVersion) MakeRawDiffFieldMask

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

func (*AgentSoftwareVersion) MakeRawFullFieldMask

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

func (*AgentSoftwareVersion) Marshal

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

func (*AgentSoftwareVersion) MarshalJSON

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

func (*AgentSoftwareVersion) MaybePopulateDefaults

func (r *AgentSoftwareVersion) MaybePopulateDefaults() error

func (*AgentSoftwareVersion) Merge

func (o *AgentSoftwareVersion) Merge(source *AgentSoftwareVersion)

func (*AgentSoftwareVersion) MergeRaw

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

func (*AgentSoftwareVersion) ProtoMessage

func (*AgentSoftwareVersion) ProtoMessage()

func (*AgentSoftwareVersion) ProtoReflect

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

func (*AgentSoftwareVersion) Reset

func (m *AgentSoftwareVersion) Reset()

func (*AgentSoftwareVersion) SetAndroid

func (m *AgentSoftwareVersion) SetAndroid(fv string)

func (*AgentSoftwareVersion) SetLinux

func (m *AgentSoftwareVersion) SetLinux(fv string)

func (*AgentSoftwareVersion) SetMac

func (m *AgentSoftwareVersion) SetMac(fv string)

func (*AgentSoftwareVersion) SetMetadata

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

func (*AgentSoftwareVersion) SetName

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

func (*AgentSoftwareVersion) SetWindows

func (m *AgentSoftwareVersion) SetWindows(fv string)

func (*AgentSoftwareVersion) String

func (m *AgentSoftwareVersion) String() string

func (*AgentSoftwareVersion) Unmarshal

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

func (*AgentSoftwareVersion) UnmarshalJSON

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

type AgentSoftwareVersionAccess

type AgentSoftwareVersionAccess interface {
	GetAgentSoftwareVersion(context.Context, *GetQuery) (*AgentSoftwareVersion, error)
	BatchGetAgentSoftwareVersions(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryAgentSoftwareVersions(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchAgentSoftwareVersion(context.Context, *GetQuery, func(*AgentSoftwareVersionChange) error) error
	WatchAgentSoftwareVersions(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveAgentSoftwareVersion(context.Context, *AgentSoftwareVersion, ...gotenresource.SaveOption) error
	DeleteAgentSoftwareVersion(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type AgentSoftwareVersionChange

type AgentSoftwareVersionChange struct {

	// AgentSoftwareVersion change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*AgentSoftwareVersionChange_Added_
	//	*AgentSoftwareVersionChange_Modified_
	//	*AgentSoftwareVersionChange_Current_
	//	*AgentSoftwareVersionChange_Removed_
	ChangeType isAgentSoftwareVersionChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*AgentSoftwareVersionChange) Descriptor

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

Deprecated, Use AgentSoftwareVersionChange.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersionChange) GetAdded

func (*AgentSoftwareVersionChange) GetAgentSoftwareVersion

func (c *AgentSoftwareVersionChange) GetAgentSoftwareVersion() *AgentSoftwareVersion

func (*AgentSoftwareVersionChange) GetAgentSoftwareVersionName

func (c *AgentSoftwareVersionChange) GetAgentSoftwareVersionName() *Name

func (*AgentSoftwareVersionChange) GetChangeType

func (m *AgentSoftwareVersionChange) GetChangeType() isAgentSoftwareVersionChange_ChangeType

func (*AgentSoftwareVersionChange) GetCurrent

func (*AgentSoftwareVersionChange) GetCurrentViewIndex

func (c *AgentSoftwareVersionChange) GetCurrentViewIndex() int32

func (*AgentSoftwareVersionChange) GetModified

func (*AgentSoftwareVersionChange) GetPreviousViewIndex

func (c *AgentSoftwareVersionChange) GetPreviousViewIndex() int32

func (*AgentSoftwareVersionChange) GetRawName

func (*AgentSoftwareVersionChange) GetRawResource

func (*AgentSoftwareVersionChange) GetRemoved

func (*AgentSoftwareVersionChange) GotenMessage

func (*AgentSoftwareVersionChange) GotenMessage()

func (*AgentSoftwareVersionChange) GotenValidate

func (obj *AgentSoftwareVersionChange) GotenValidate() error

func (*AgentSoftwareVersionChange) IsAdd

func (c *AgentSoftwareVersionChange) IsAdd() bool

func (*AgentSoftwareVersionChange) IsCurrent

func (c *AgentSoftwareVersionChange) IsCurrent() bool

func (*AgentSoftwareVersionChange) IsDelete

func (c *AgentSoftwareVersionChange) IsDelete() bool

func (*AgentSoftwareVersionChange) IsModify

func (c *AgentSoftwareVersionChange) IsModify() bool

func (*AgentSoftwareVersionChange) Marshal

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

func (*AgentSoftwareVersionChange) MarshalJSON

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

func (*AgentSoftwareVersionChange) ProtoMessage

func (*AgentSoftwareVersionChange) ProtoMessage()

func (*AgentSoftwareVersionChange) ProtoReflect

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

func (*AgentSoftwareVersionChange) Reset

func (m *AgentSoftwareVersionChange) Reset()

func (*AgentSoftwareVersionChange) SetAdded

func (*AgentSoftwareVersionChange) SetAddedRaw

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

func (*AgentSoftwareVersionChange) SetChangeType

func (m *AgentSoftwareVersionChange) SetChangeType(ofv isAgentSoftwareVersionChange_ChangeType)

func (*AgentSoftwareVersionChange) SetCurrent

func (*AgentSoftwareVersionChange) SetCurrentRaw

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

func (*AgentSoftwareVersionChange) SetDeletedRaw

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

func (*AgentSoftwareVersionChange) SetModified

func (*AgentSoftwareVersionChange) SetModifiedRaw

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

func (*AgentSoftwareVersionChange) SetRemoved

func (*AgentSoftwareVersionChange) String

func (m *AgentSoftwareVersionChange) String() string

func (*AgentSoftwareVersionChange) Unmarshal

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

func (*AgentSoftwareVersionChange) UnmarshalJSON

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

type AgentSoftwareVersionChangeList

type AgentSoftwareVersionChangeList []*AgentSoftwareVersionChange

func (AgentSoftwareVersionChangeList) Append

func (AgentSoftwareVersionChangeList) AppendList

func (AgentSoftwareVersionChangeList) At

func (AgentSoftwareVersionChangeList) Length

func (AgentSoftwareVersionChangeList) Set

func (AgentSoftwareVersionChangeList) Slice

type AgentSoftwareVersionChangeMap

type AgentSoftwareVersionChangeMap map[Name]*AgentSoftwareVersionChange

func (AgentSoftwareVersionChangeMap) Delete

func (AgentSoftwareVersionChangeMap) ForEach

func (AgentSoftwareVersionChangeMap) Get

func (AgentSoftwareVersionChangeMap) Length

func (AgentSoftwareVersionChangeMap) Set

type AgentSoftwareVersionChange_Added

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

AgentSoftwareVersion has been added to query view

func (*AgentSoftwareVersionChange_Added) Descriptor

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

Deprecated, Use AgentSoftwareVersionChange_Added.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersionChange_Added) GetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Added) GetAgentSoftwareVersion() *AgentSoftwareVersion

func (*AgentSoftwareVersionChange_Added) GetViewIndex

func (m *AgentSoftwareVersionChange_Added) GetViewIndex() int32

func (*AgentSoftwareVersionChange_Added) GotenMessage

func (*AgentSoftwareVersionChange_Added) GotenMessage()

func (*AgentSoftwareVersionChange_Added) GotenValidate

func (obj *AgentSoftwareVersionChange_Added) GotenValidate() error

func (*AgentSoftwareVersionChange_Added) Marshal

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

func (*AgentSoftwareVersionChange_Added) MarshalJSON

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

func (*AgentSoftwareVersionChange_Added) ProtoMessage

func (*AgentSoftwareVersionChange_Added) ProtoMessage()

func (*AgentSoftwareVersionChange_Added) ProtoReflect

func (*AgentSoftwareVersionChange_Added) Reset

func (*AgentSoftwareVersionChange_Added) SetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Added) SetAgentSoftwareVersion(fv *AgentSoftwareVersion)

func (*AgentSoftwareVersionChange_Added) SetViewIndex

func (m *AgentSoftwareVersionChange_Added) SetViewIndex(fv int32)

func (*AgentSoftwareVersionChange_Added) String

func (*AgentSoftwareVersionChange_Added) Unmarshal

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

func (*AgentSoftwareVersionChange_Added) UnmarshalJSON

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

type AgentSoftwareVersionChange_Added_

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

type AgentSoftwareVersionChange_Current

type AgentSoftwareVersionChange_Current struct {
	AgentSoftwareVersion *AgentSoftwareVersion `` /* 156-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*AgentSoftwareVersionChange_Current) Descriptor

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

Deprecated, Use AgentSoftwareVersionChange_Current.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersionChange_Current) GetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Current) GetAgentSoftwareVersion() *AgentSoftwareVersion

func (*AgentSoftwareVersionChange_Current) GotenMessage

func (*AgentSoftwareVersionChange_Current) GotenMessage()

func (*AgentSoftwareVersionChange_Current) GotenValidate

func (obj *AgentSoftwareVersionChange_Current) GotenValidate() error

func (*AgentSoftwareVersionChange_Current) Marshal

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

func (*AgentSoftwareVersionChange_Current) MarshalJSON

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

func (*AgentSoftwareVersionChange_Current) ProtoMessage

func (*AgentSoftwareVersionChange_Current) ProtoMessage()

func (*AgentSoftwareVersionChange_Current) ProtoReflect

func (*AgentSoftwareVersionChange_Current) Reset

func (*AgentSoftwareVersionChange_Current) SetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Current) SetAgentSoftwareVersion(fv *AgentSoftwareVersion)

func (*AgentSoftwareVersionChange_Current) String

func (*AgentSoftwareVersionChange_Current) Unmarshal

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

func (*AgentSoftwareVersionChange_Current) UnmarshalJSON

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

type AgentSoftwareVersionChange_Current_

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

type AgentSoftwareVersionChange_Modified

type AgentSoftwareVersionChange_Modified struct {

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

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

func (*AgentSoftwareVersionChange_Modified) Descriptor

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

Deprecated, Use AgentSoftwareVersionChange_Modified.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersionChange_Modified) GetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Modified) GetAgentSoftwareVersion() *AgentSoftwareVersion

func (*AgentSoftwareVersionChange_Modified) GetFieldMask

func (*AgentSoftwareVersionChange_Modified) GetName

func (*AgentSoftwareVersionChange_Modified) GetPreviousViewIndex

func (m *AgentSoftwareVersionChange_Modified) GetPreviousViewIndex() int32

func (*AgentSoftwareVersionChange_Modified) GetViewIndex

func (m *AgentSoftwareVersionChange_Modified) GetViewIndex() int32

func (*AgentSoftwareVersionChange_Modified) GotenMessage

func (*AgentSoftwareVersionChange_Modified) GotenMessage()

func (*AgentSoftwareVersionChange_Modified) GotenValidate

func (obj *AgentSoftwareVersionChange_Modified) GotenValidate() error

func (*AgentSoftwareVersionChange_Modified) Marshal

func (*AgentSoftwareVersionChange_Modified) MarshalJSON

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

func (*AgentSoftwareVersionChange_Modified) ProtoMessage

func (*AgentSoftwareVersionChange_Modified) ProtoMessage()

func (*AgentSoftwareVersionChange_Modified) ProtoReflect

func (*AgentSoftwareVersionChange_Modified) Reset

func (*AgentSoftwareVersionChange_Modified) SetAgentSoftwareVersion

func (m *AgentSoftwareVersionChange_Modified) SetAgentSoftwareVersion(fv *AgentSoftwareVersion)

func (*AgentSoftwareVersionChange_Modified) SetFieldMask

func (*AgentSoftwareVersionChange_Modified) SetName

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

func (*AgentSoftwareVersionChange_Modified) SetPreviousViewIndex

func (m *AgentSoftwareVersionChange_Modified) SetPreviousViewIndex(fv int32)

func (*AgentSoftwareVersionChange_Modified) SetViewIndex

func (m *AgentSoftwareVersionChange_Modified) SetViewIndex(fv int32)

func (*AgentSoftwareVersionChange_Modified) String

func (*AgentSoftwareVersionChange_Modified) Unmarshal

func (*AgentSoftwareVersionChange_Modified) UnmarshalJSON

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

type AgentSoftwareVersionChange_Modified_

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

type AgentSoftwareVersionChange_Removed

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

func (*AgentSoftwareVersionChange_Removed) Descriptor

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

Deprecated, Use AgentSoftwareVersionChange_Removed.ProtoReflect.Descriptor instead.

func (*AgentSoftwareVersionChange_Removed) GetName

func (*AgentSoftwareVersionChange_Removed) GetViewIndex

func (m *AgentSoftwareVersionChange_Removed) GetViewIndex() int32

func (*AgentSoftwareVersionChange_Removed) GotenMessage

func (*AgentSoftwareVersionChange_Removed) GotenMessage()

func (*AgentSoftwareVersionChange_Removed) GotenValidate

func (obj *AgentSoftwareVersionChange_Removed) GotenValidate() error

func (*AgentSoftwareVersionChange_Removed) Marshal

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

func (*AgentSoftwareVersionChange_Removed) MarshalJSON

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

func (*AgentSoftwareVersionChange_Removed) ProtoMessage

func (*AgentSoftwareVersionChange_Removed) ProtoMessage()

func (*AgentSoftwareVersionChange_Removed) ProtoReflect

func (*AgentSoftwareVersionChange_Removed) Reset

func (*AgentSoftwareVersionChange_Removed) SetName

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

func (*AgentSoftwareVersionChange_Removed) SetViewIndex

func (m *AgentSoftwareVersionChange_Removed) SetViewIndex(fv int32)

func (*AgentSoftwareVersionChange_Removed) String

func (*AgentSoftwareVersionChange_Removed) Unmarshal

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

func (*AgentSoftwareVersionChange_Removed) UnmarshalJSON

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

type AgentSoftwareVersionChange_Removed_

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

type AgentSoftwareVersionFieldPathBuilder

type AgentSoftwareVersionFieldPathBuilder struct{}

func NewAgentSoftwareVersionFieldPathBuilder

func NewAgentSoftwareVersionFieldPathBuilder() AgentSoftwareVersionFieldPathBuilder

func (AgentSoftwareVersionFieldPathBuilder) Android

func (AgentSoftwareVersionFieldPathBuilder) Linux

func (AgentSoftwareVersionFieldPathBuilder) Mac

func (AgentSoftwareVersionFieldPathBuilder) Metadata

func (AgentSoftwareVersionFieldPathBuilder) Name

func (AgentSoftwareVersionFieldPathBuilder) Windows

type AgentSoftwareVersionList

type AgentSoftwareVersionList []*AgentSoftwareVersion

func (AgentSoftwareVersionList) Append

func (AgentSoftwareVersionList) AppendList

func (AgentSoftwareVersionList) At

func (AgentSoftwareVersionList) Length

func (l AgentSoftwareVersionList) Length() int

func (AgentSoftwareVersionList) Set

func (AgentSoftwareVersionList) Slice

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

type AgentSoftwareVersionMap

type AgentSoftwareVersionMap map[Name]*AgentSoftwareVersion

func (AgentSoftwareVersionMap) Delete

func (AgentSoftwareVersionMap) ForEach

func (AgentSoftwareVersionMap) Get

func (AgentSoftwareVersionMap) Length

func (m AgentSoftwareVersionMap) Length() int

func (AgentSoftwareVersionMap) Set

type AgentSoftwareVersionMapPathSelectorMetadataAnnotations

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

func (AgentSoftwareVersionMapPathSelectorMetadataAnnotations) FieldPath

func (AgentSoftwareVersionMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (AgentSoftwareVersionMapPathSelectorMetadataAnnotations) WithValue

type AgentSoftwareVersionMapPathSelectorMetadataLabels

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

func (AgentSoftwareVersionMapPathSelectorMetadataLabels) FieldPath

func (AgentSoftwareVersionMapPathSelectorMetadataLabels) WithArrayOfValues

func (AgentSoftwareVersionMapPathSelectorMetadataLabels) WithValue

type AgentSoftwareVersionMapPathSelectorMetadataShards

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

func (AgentSoftwareVersionMapPathSelectorMetadataShards) FieldPath

func (AgentSoftwareVersionMapPathSelectorMetadataShards) WithArrayOfValues

func (AgentSoftwareVersionMapPathSelectorMetadataShards) WithValue

type AgentSoftwareVersionNameList

type AgentSoftwareVersionNameList []*Name

func (AgentSoftwareVersionNameList) Append

func (AgentSoftwareVersionNameList) AppendList

func (AgentSoftwareVersionNameList) At

func (AgentSoftwareVersionNameList) Length

func (l AgentSoftwareVersionNameList) Length() int

func (AgentSoftwareVersionNameList) Set

func (AgentSoftwareVersionNameList) Slice

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

type AgentSoftwareVersionPathSelectorAndroid

type AgentSoftwareVersionPathSelectorAndroid struct{}

func (AgentSoftwareVersionPathSelectorAndroid) FieldPath

func (AgentSoftwareVersionPathSelectorAndroid) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorAndroid) WithValue

type AgentSoftwareVersionPathSelectorLinux

type AgentSoftwareVersionPathSelectorLinux struct{}

func (AgentSoftwareVersionPathSelectorLinux) FieldPath

func (AgentSoftwareVersionPathSelectorLinux) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorLinux) WithValue

type AgentSoftwareVersionPathSelectorMac

type AgentSoftwareVersionPathSelectorMac struct{}

func (AgentSoftwareVersionPathSelectorMac) FieldPath

func (AgentSoftwareVersionPathSelectorMac) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMac) WithValue

type AgentSoftwareVersionPathSelectorMetadata

type AgentSoftwareVersionPathSelectorMetadata struct{}

func (AgentSoftwareVersionPathSelectorMetadata) Annotations

func (AgentSoftwareVersionPathSelectorMetadata) CreateTime

func (AgentSoftwareVersionPathSelectorMetadata) DeleteTime

func (AgentSoftwareVersionPathSelectorMetadata) FieldPath

func (AgentSoftwareVersionPathSelectorMetadata) Generation

func (AgentSoftwareVersionPathSelectorMetadata) Labels

func (AgentSoftwareVersionPathSelectorMetadata) Lifecycle

func (AgentSoftwareVersionPathSelectorMetadata) OwnerReferences

func (AgentSoftwareVersionPathSelectorMetadata) ResourceVersion

func (AgentSoftwareVersionPathSelectorMetadata) Shards

func (AgentSoftwareVersionPathSelectorMetadata) Syncing

func (AgentSoftwareVersionPathSelectorMetadata) Tags

func (AgentSoftwareVersionPathSelectorMetadata) UpdateTime

func (AgentSoftwareVersionPathSelectorMetadata) Uuid

func (AgentSoftwareVersionPathSelectorMetadata) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadata) WithSubArrayItemValue

func (AgentSoftwareVersionPathSelectorMetadata) WithSubArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadata) WithSubPath

func (AgentSoftwareVersionPathSelectorMetadata) WithSubValue

func (AgentSoftwareVersionPathSelectorMetadata) WithValue

type AgentSoftwareVersionPathSelectorMetadataAnnotations

type AgentSoftwareVersionPathSelectorMetadataAnnotations struct{}

func (AgentSoftwareVersionPathSelectorMetadataAnnotations) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataAnnotations) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataAnnotations) WithKey

func (AgentSoftwareVersionPathSelectorMetadataAnnotations) WithValue

type AgentSoftwareVersionPathSelectorMetadataCreateTime

type AgentSoftwareVersionPathSelectorMetadataCreateTime struct{}

func (AgentSoftwareVersionPathSelectorMetadataCreateTime) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataCreateTime) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataCreateTime) WithValue

type AgentSoftwareVersionPathSelectorMetadataDeleteTime

type AgentSoftwareVersionPathSelectorMetadataDeleteTime struct{}

func (AgentSoftwareVersionPathSelectorMetadataDeleteTime) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataDeleteTime) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataDeleteTime) WithValue

type AgentSoftwareVersionPathSelectorMetadataGeneration

type AgentSoftwareVersionPathSelectorMetadataGeneration struct{}

func (AgentSoftwareVersionPathSelectorMetadataGeneration) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataGeneration) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataGeneration) WithValue

type AgentSoftwareVersionPathSelectorMetadataLabels

type AgentSoftwareVersionPathSelectorMetadataLabels struct{}

func (AgentSoftwareVersionPathSelectorMetadataLabels) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataLabels) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataLabels) WithKey

func (AgentSoftwareVersionPathSelectorMetadataLabels) WithValue

type AgentSoftwareVersionPathSelectorMetadataLifecycle

type AgentSoftwareVersionPathSelectorMetadataLifecycle struct{}

func (AgentSoftwareVersionPathSelectorMetadataLifecycle) BlockDeletion

func (AgentSoftwareVersionPathSelectorMetadataLifecycle) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataLifecycle) State

func (AgentSoftwareVersionPathSelectorMetadataLifecycle) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataLifecycle) WithValue

type AgentSoftwareVersionPathSelectorMetadataLifecycleBlockDeletion

type AgentSoftwareVersionPathSelectorMetadataLifecycleBlockDeletion struct{}

func (AgentSoftwareVersionPathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataLifecycleBlockDeletion) WithValue

type AgentSoftwareVersionPathSelectorMetadataLifecycleState

type AgentSoftwareVersionPathSelectorMetadataLifecycleState struct{}

func (AgentSoftwareVersionPathSelectorMetadataLifecycleState) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataLifecycleState) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataLifecycleState) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferences

type AgentSoftwareVersionPathSelectorMetadataOwnerReferences struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) Controller

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) Kind

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) Name

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) Region

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) Version

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) WithItemValue

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferences) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesController

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesController struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesController) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesController) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesKind

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesKind struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesKind) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesKind) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesName

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesName struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesName) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesName) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRegion

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRegion struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRegion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRegion) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRequiresOwnerReference

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesVersion

type AgentSoftwareVersionPathSelectorMetadataOwnerReferencesVersion struct{}

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesVersion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataOwnerReferencesVersion) WithValue

type AgentSoftwareVersionPathSelectorMetadataResourceVersion

type AgentSoftwareVersionPathSelectorMetadataResourceVersion struct{}

func (AgentSoftwareVersionPathSelectorMetadataResourceVersion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataResourceVersion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataResourceVersion) WithValue

type AgentSoftwareVersionPathSelectorMetadataShards

type AgentSoftwareVersionPathSelectorMetadataShards struct{}

func (AgentSoftwareVersionPathSelectorMetadataShards) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataShards) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataShards) WithKey

func (AgentSoftwareVersionPathSelectorMetadataShards) WithValue

type AgentSoftwareVersionPathSelectorMetadataSyncing

type AgentSoftwareVersionPathSelectorMetadataSyncing struct{}

func (AgentSoftwareVersionPathSelectorMetadataSyncing) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataSyncing) OwningRegion

func (AgentSoftwareVersionPathSelectorMetadataSyncing) Regions

func (AgentSoftwareVersionPathSelectorMetadataSyncing) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataSyncing) WithValue

type AgentSoftwareVersionPathSelectorMetadataSyncingOwningRegion

type AgentSoftwareVersionPathSelectorMetadataSyncingOwningRegion struct{}

func (AgentSoftwareVersionPathSelectorMetadataSyncingOwningRegion) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataSyncingOwningRegion) WithValue

type AgentSoftwareVersionPathSelectorMetadataSyncingRegions

type AgentSoftwareVersionPathSelectorMetadataSyncingRegions struct{}

func (AgentSoftwareVersionPathSelectorMetadataSyncingRegions) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataSyncingRegions) WithItemValue

func (AgentSoftwareVersionPathSelectorMetadataSyncingRegions) WithValue

type AgentSoftwareVersionPathSelectorMetadataTags

type AgentSoftwareVersionPathSelectorMetadataTags struct{}

func (AgentSoftwareVersionPathSelectorMetadataTags) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataTags) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataTags) WithItemValue

func (AgentSoftwareVersionPathSelectorMetadataTags) WithValue

type AgentSoftwareVersionPathSelectorMetadataUpdateTime

type AgentSoftwareVersionPathSelectorMetadataUpdateTime struct{}

func (AgentSoftwareVersionPathSelectorMetadataUpdateTime) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataUpdateTime) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataUpdateTime) WithValue

type AgentSoftwareVersionPathSelectorMetadataUuid

type AgentSoftwareVersionPathSelectorMetadataUuid struct{}

func (AgentSoftwareVersionPathSelectorMetadataUuid) FieldPath

func (AgentSoftwareVersionPathSelectorMetadataUuid) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorMetadataUuid) WithValue

type AgentSoftwareVersionPathSelectorName

type AgentSoftwareVersionPathSelectorName struct{}

func (AgentSoftwareVersionPathSelectorName) FieldPath

func (AgentSoftwareVersionPathSelectorName) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorName) WithValue

type AgentSoftwareVersionPathSelectorWindows

type AgentSoftwareVersionPathSelectorWindows struct{}

func (AgentSoftwareVersionPathSelectorWindows) FieldPath

func (AgentSoftwareVersionPathSelectorWindows) WithArrayOfValues

func (AgentSoftwareVersionPathSelectorWindows) WithValue

type AgentSoftwareVersionReferenceList

type AgentSoftwareVersionReferenceList []*Reference

func (AgentSoftwareVersionReferenceList) Append

func (AgentSoftwareVersionReferenceList) AppendList

func (AgentSoftwareVersionReferenceList) At

func (AgentSoftwareVersionReferenceList) Length

func (AgentSoftwareVersionReferenceList) Set

func (AgentSoftwareVersionReferenceList) Slice

type AgentSoftwareVersion_FieldMask

type AgentSoftwareVersion_FieldMask struct {
	Paths []AgentSoftwareVersion_FieldPath
}

func FullAgentSoftwareVersion_FieldMask

func FullAgentSoftwareVersion_FieldMask() *AgentSoftwareVersion_FieldMask

func ResourceViewFieldMask

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

func (*AgentSoftwareVersion_FieldMask) AppendPath

func (*AgentSoftwareVersion_FieldMask) AppendRawPath

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

func (*AgentSoftwareVersion_FieldMask) DecodeFirestore

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

func (*AgentSoftwareVersion_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*AgentSoftwareVersion_FieldMask) FilterInputFields

func (fieldMask *AgentSoftwareVersion_FieldMask) FilterInputFields() *AgentSoftwareVersion_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*AgentSoftwareVersion_FieldMask) FromProtoFieldMask

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

func (*AgentSoftwareVersion_FieldMask) GetPaths

func (*AgentSoftwareVersion_FieldMask) GetRawPaths

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

func (*AgentSoftwareVersion_FieldMask) IsFull

func (fieldMask *AgentSoftwareVersion_FieldMask) IsFull() bool

func (AgentSoftwareVersion_FieldMask) Marshal

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

implement methods required by customType

func (AgentSoftwareVersion_FieldMask) MarshalJSON

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

func (*AgentSoftwareVersion_FieldMask) PathsCount

func (fieldMask *AgentSoftwareVersion_FieldMask) PathsCount() int

func (*AgentSoftwareVersion_FieldMask) Project

func (*AgentSoftwareVersion_FieldMask) ProjectRaw

func (*AgentSoftwareVersion_FieldMask) ProtoMessage

func (fieldMask *AgentSoftwareVersion_FieldMask) ProtoMessage()

func (*AgentSoftwareVersion_FieldMask) ProtoReflect

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

func (*AgentSoftwareVersion_FieldMask) Reset

func (fieldMask *AgentSoftwareVersion_FieldMask) Reset()

func (*AgentSoftwareVersion_FieldMask) Set

func (fieldMask *AgentSoftwareVersion_FieldMask) Set(target, source *AgentSoftwareVersion)

func (*AgentSoftwareVersion_FieldMask) SetFromCliFlag

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

func (*AgentSoftwareVersion_FieldMask) SetRaw

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

func (*AgentSoftwareVersion_FieldMask) Size

func (fieldMask *AgentSoftwareVersion_FieldMask) Size() int

func (*AgentSoftwareVersion_FieldMask) String

func (fieldMask *AgentSoftwareVersion_FieldMask) String() string

func (*AgentSoftwareVersion_FieldMask) Subtract

func (*AgentSoftwareVersion_FieldMask) SubtractRaw

func (*AgentSoftwareVersion_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*AgentSoftwareVersion_FieldMask) Unmarshal

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

func (*AgentSoftwareVersion_FieldMask) UnmarshalJSON

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

type AgentSoftwareVersion_FieldPath

type AgentSoftwareVersion_FieldPath interface {
	gotenobject.FieldPath
	Selector() AgentSoftwareVersion_FieldPathSelector
	Get(source *AgentSoftwareVersion) []interface{}
	GetSingle(source *AgentSoftwareVersion) (interface{}, bool)
	ClearValue(item *AgentSoftwareVersion)

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

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

func MustParseAgentSoftwareVersion_FieldPath

func MustParseAgentSoftwareVersion_FieldPath(rawField string) AgentSoftwareVersion_FieldPath

func ParseAgentSoftwareVersion_FieldPath

func ParseAgentSoftwareVersion_FieldPath(rawField string) (AgentSoftwareVersion_FieldPath, error)

type AgentSoftwareVersion_FieldPathArrayItemValue

type AgentSoftwareVersion_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	AgentSoftwareVersion_FieldPath
	ContainsValue(*AgentSoftwareVersion) bool
}

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

func MustParseAgentSoftwareVersion_FieldPathArrayItemValue

func MustParseAgentSoftwareVersion_FieldPathArrayItemValue(pathStr, valueStr string) AgentSoftwareVersion_FieldPathArrayItemValue

func ParseAgentSoftwareVersion_FieldPathArrayItemValue

func ParseAgentSoftwareVersion_FieldPathArrayItemValue(pathStr, valueStr string) (AgentSoftwareVersion_FieldPathArrayItemValue, error)

ParseAgentSoftwareVersion_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type AgentSoftwareVersion_FieldPathArrayOfValues

type AgentSoftwareVersion_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	AgentSoftwareVersion_FieldPath
}

AgentSoftwareVersion_FieldPathArrayOfValues allows storing slice of values for AgentSoftwareVersion fields according to their type

func MustParseAgentSoftwareVersion_FieldPathArrayOfValues

func MustParseAgentSoftwareVersion_FieldPathArrayOfValues(pathStr, valuesStr string) AgentSoftwareVersion_FieldPathArrayOfValues

func ParseAgentSoftwareVersion_FieldPathArrayOfValues

func ParseAgentSoftwareVersion_FieldPathArrayOfValues(pathStr, valuesStr string) (AgentSoftwareVersion_FieldPathArrayOfValues, error)

type AgentSoftwareVersion_FieldPathSelector

type AgentSoftwareVersion_FieldPathSelector int32
const (
	AgentSoftwareVersion_FieldPathSelectorName     AgentSoftwareVersion_FieldPathSelector = 0
	AgentSoftwareVersion_FieldPathSelectorLinux    AgentSoftwareVersion_FieldPathSelector = 1
	AgentSoftwareVersion_FieldPathSelectorWindows  AgentSoftwareVersion_FieldPathSelector = 2
	AgentSoftwareVersion_FieldPathSelectorMac      AgentSoftwareVersion_FieldPathSelector = 3
	AgentSoftwareVersion_FieldPathSelectorAndroid  AgentSoftwareVersion_FieldPathSelector = 4
	AgentSoftwareVersion_FieldPathSelectorMetadata AgentSoftwareVersion_FieldPathSelector = 5
)

func (AgentSoftwareVersion_FieldPathSelector) String

type AgentSoftwareVersion_FieldPathValue

type AgentSoftwareVersion_FieldPathValue interface {
	AgentSoftwareVersion_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **AgentSoftwareVersion)
	CompareWith(*AgentSoftwareVersion) (cmp int, comparable bool)
}

AgentSoftwareVersion_FieldPathValue allows storing values for AgentSoftwareVersion fields according to their type

func MustParseAgentSoftwareVersion_FieldPathValue

func MustParseAgentSoftwareVersion_FieldPathValue(pathStr, valueStr string) AgentSoftwareVersion_FieldPathValue

func ParseAgentSoftwareVersion_FieldPathValue

func ParseAgentSoftwareVersion_FieldPathValue(pathStr, valueStr string) (AgentSoftwareVersion_FieldPathValue, error)

type AgentSoftwareVersion_FieldSubPath

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

func (*AgentSoftwareVersion_FieldSubPath) AsMetadataSubPath

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

func (*AgentSoftwareVersion_FieldSubPath) ClearValue

func (*AgentSoftwareVersion_FieldSubPath) ClearValueRaw

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

func (*AgentSoftwareVersion_FieldSubPath) Get

func (fps *AgentSoftwareVersion_FieldSubPath) Get(source *AgentSoftwareVersion) (values []interface{})

Get returns all values pointed by selected field from source AgentSoftwareVersion

func (*AgentSoftwareVersion_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*AgentSoftwareVersion_FieldSubPath) GetRaw

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

func (*AgentSoftwareVersion_FieldSubPath) GetSingle

func (fps *AgentSoftwareVersion_FieldSubPath) GetSingle(source *AgentSoftwareVersion) (interface{}, bool)

GetSingle returns value of selected field from source AgentSoftwareVersion

func (*AgentSoftwareVersion_FieldSubPath) GetSingleRaw

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

func (*AgentSoftwareVersion_FieldSubPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*AgentSoftwareVersion_FieldSubPath) JSONString

func (fps *AgentSoftwareVersion_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*AgentSoftwareVersion_FieldSubPath) Selector

func (*AgentSoftwareVersion_FieldSubPath) SplitIntoTerminalIPaths

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

func (*AgentSoftwareVersion_FieldSubPath) String

String returns path representation in proto convention

func (*AgentSoftwareVersion_FieldSubPath) WithIArrayItemValue

func (fps *AgentSoftwareVersion_FieldSubPath) WithIArrayItemValue(value interface{}) AgentSoftwareVersion_FieldPathArrayItemValue

func (*AgentSoftwareVersion_FieldSubPath) WithIArrayOfValues

func (fps *AgentSoftwareVersion_FieldSubPath) WithIArrayOfValues(values interface{}) AgentSoftwareVersion_FieldPathArrayOfValues

func (*AgentSoftwareVersion_FieldSubPath) WithIValue

func (*AgentSoftwareVersion_FieldSubPath) WithRawIArrayItemValue

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

func (*AgentSoftwareVersion_FieldSubPath) WithRawIArrayOfValues

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

func (*AgentSoftwareVersion_FieldSubPath) WithRawIValue

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

type AgentSoftwareVersion_FieldSubPathArrayItemValue

type AgentSoftwareVersion_FieldSubPathArrayItemValue struct {
	AgentSoftwareVersion_FieldPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*AgentSoftwareVersion_FieldSubPathArrayItemValue) ContainsValue

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

func (*AgentSoftwareVersion_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type AgentSoftwareVersion_FieldSubPathArrayOfValues

type AgentSoftwareVersion_FieldSubPathArrayOfValues struct {
	AgentSoftwareVersion_FieldPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (*AgentSoftwareVersion_FieldSubPathArrayOfValues) GetRawValues

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

type AgentSoftwareVersion_FieldSubPathValue

type AgentSoftwareVersion_FieldSubPathValue struct {
	AgentSoftwareVersion_FieldPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldSubPathValue) AsMetadataPathValue

func (*AgentSoftwareVersion_FieldSubPathValue) CompareWith

func (*AgentSoftwareVersion_FieldSubPathValue) CompareWithRaw

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

func (*AgentSoftwareVersion_FieldSubPathValue) GetRawValue

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

func (*AgentSoftwareVersion_FieldSubPathValue) SetTo

func (*AgentSoftwareVersion_FieldSubPathValue) SetToRaw

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

type AgentSoftwareVersion_FieldTerminalPath

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

func (*AgentSoftwareVersion_FieldTerminalPath) ClearValue

func (*AgentSoftwareVersion_FieldTerminalPath) ClearValueRaw

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

func (*AgentSoftwareVersion_FieldTerminalPath) Get

func (fp *AgentSoftwareVersion_FieldTerminalPath) Get(source *AgentSoftwareVersion) (values []interface{})

Get returns all values pointed by specific field from source AgentSoftwareVersion

func (*AgentSoftwareVersion_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*AgentSoftwareVersion_FieldTerminalPath) GetRaw

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

func (*AgentSoftwareVersion_FieldTerminalPath) GetSingle

func (fp *AgentSoftwareVersion_FieldTerminalPath) GetSingle(source *AgentSoftwareVersion) (interface{}, bool)

GetSingle returns value pointed by specific field of from source AgentSoftwareVersion

func (*AgentSoftwareVersion_FieldTerminalPath) GetSingleRaw

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

func (*AgentSoftwareVersion_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*AgentSoftwareVersion_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*AgentSoftwareVersion_FieldTerminalPath) Selector

func (*AgentSoftwareVersion_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*AgentSoftwareVersion_FieldTerminalPath) String

String returns path representation in proto convention

func (*AgentSoftwareVersion_FieldTerminalPath) WithIArrayItemValue

func (*AgentSoftwareVersion_FieldTerminalPath) WithIArrayOfValues

func (*AgentSoftwareVersion_FieldTerminalPath) WithIValue

func (*AgentSoftwareVersion_FieldTerminalPath) WithRawIArrayItemValue

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

func (*AgentSoftwareVersion_FieldTerminalPath) WithRawIArrayOfValues

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

func (*AgentSoftwareVersion_FieldTerminalPath) WithRawIValue

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

type AgentSoftwareVersion_FieldTerminalPathArrayItemValue

type AgentSoftwareVersion_FieldTerminalPathArrayItemValue struct {
	AgentSoftwareVersion_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*AgentSoftwareVersion_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*AgentSoftwareVersion_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *AgentSoftwareVersion_FieldTerminalPathArrayItemValue) GetSingle(source *AgentSoftwareVersion) (interface{}, bool)

func (*AgentSoftwareVersion_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type AgentSoftwareVersion_FieldTerminalPathArrayOfValues

type AgentSoftwareVersion_FieldTerminalPathArrayOfValues struct {
	AgentSoftwareVersion_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsAndroidArrayOfValues

func (fpaov *AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsAndroidArrayOfValues() ([]string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsLinuxArrayOfValues

func (fpaov *AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsLinuxArrayOfValues() ([]string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsMacArrayOfValues

func (fpaov *AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsMacArrayOfValues() ([]string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsWindowsArrayOfValues

func (fpaov *AgentSoftwareVersion_FieldTerminalPathArrayOfValues) AsWindowsArrayOfValues() ([]string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathArrayOfValues) GetRawValues

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

type AgentSoftwareVersion_FieldTerminalPathValue

type AgentSoftwareVersion_FieldTerminalPathValue struct {
	AgentSoftwareVersion_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsAndroidValue

func (fpv *AgentSoftwareVersion_FieldTerminalPathValue) AsAndroidValue() (string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsLinuxValue

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsMacValue

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsMetadataValue

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsNameValue

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

func (*AgentSoftwareVersion_FieldTerminalPathValue) AsWindowsValue

func (fpv *AgentSoftwareVersion_FieldTerminalPathValue) AsWindowsValue() (string, bool)

func (*AgentSoftwareVersion_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'AgentSoftwareVersion_FieldTerminalPathValue' with the value under path in 'AgentSoftwareVersion'.

func (*AgentSoftwareVersion_FieldTerminalPathValue) CompareWithRaw

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

func (*AgentSoftwareVersion_FieldTerminalPathValue) GetRawValue

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

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

func (*AgentSoftwareVersion_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object AgentSoftwareVersion

func (*AgentSoftwareVersion_FieldTerminalPathValue) SetToRaw

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

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 *AgentSoftwareVersion) 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 []*AgentSoftwareVersion) (out []*AgentSoftwareVersion)

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 AgentSoftwareVersion_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 *AgentSoftwareVersion) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	AgentSoftwareVersion_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 {
	AgentSoftwareVersion_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 AgentSoftwareVersion_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 AgentSoftwareVersion_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 *AgentSoftwareVersion) 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 AgentSoftwareVersion_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 {
	AgentSoftwareVersion_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *AgentSoftwareVersion) 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 AgentSoftwareVersion_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      *AgentSoftwareVersion_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           *AgentSoftwareVersion_FieldMask
	WithPagingInfo bool
}

func (*ListQuery) GetFieldMask

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

func (*ListQuery) GetFilter

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

func (*ListQuery) GetPager

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

func (*ListQuery) GetResourceDescriptor

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

func (*ListQuery) GetWithPagingInfo

func (q *ListQuery) GetWithPagingInfo() bool

func (*ListQuery) GotenQuery

func (q *ListQuery) GotenQuery()

func (*ListQuery) SetFieldMask

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

func (*ListQuery) SetFilter

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

func (*ListQuery) SetPager

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

func (*ListQuery) SetWithPagingInfo

func (q *ListQuery) SetWithPagingInfo(with bool)

func (*ListQuery) String

func (q *ListQuery) String() string

type Name

type Name struct {
	NamePattern
	AgentSoftwareVersionId string `firestore:"agentSoftwareVersionId"`
}

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

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

func (*Name) GetIUnderlyingParentName

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

func (*Name) GetIdParts

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

func (*Name) GetPattern

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

func (*Name) 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) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

func (b *NameBuilder) SetId(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 *AgentSoftwareVersion) int

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *AgentSoftwareVersion_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 AgentSoftwareVersionList, elem *AgentSoftwareVersion) (AgentSoftwareVersionList, 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 AgentSoftwareVersionList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

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

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type PagerCursor

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

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

func (*PagerCursor) GetInclusion

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

func (*PagerCursor) GetPageDirection

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

func (*PagerCursor) GetValue

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

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

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

func (*PagerCursor) ProtoString

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

func (*PagerCursor) SetCursorValue

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

func (*PagerCursor) SetFromCliFlag

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

func (*PagerCursor) SetInclusion

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

func (*PagerCursor) SetPageDirection

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

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

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

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

func MakePagerQuery

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

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

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

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

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

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

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

func (*PagerQuery) PageDirection

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

func (*PagerQuery) SetCursor

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

func (*PagerQuery) SetLimit

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy

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

func (*PagerQuery) SetPageDirection

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

func (*PagerQuery) SetPeekForward

func (p *PagerQuery) SetPeekForward(peekForward bool)

type QueryResultChange

type QueryResultChange struct {
	Changes        []*AgentSoftwareVersionChange
	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 {
	AgentSoftwareVersions []*AgentSoftwareVersion
	PrevPageCursor        *PagerCursor
	NextPageCursor        *PagerCursor
	TotalResultsCount     int32
	CurrentOffset         int32
}

func (*QueryResultSnapshot) GetNextPageCursor

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

func (*QueryResultSnapshot) GetPagingInfo

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

func (*QueryResultSnapshot) GetPrevPageCursor

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

func (*QueryResultSnapshot) GetResults

func (*QueryResultSnapshot) SetCursors

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

func (*QueryResultSnapshot) SetPagingInfo

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

func (*QueryResultSnapshot) SetResults

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

type Reference

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

func MakeReference

func MakeReference(name *Name, agentSoftwareVersion *AgentSoftwareVersion) (*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) GetAgentSoftwareVersion

func (ref *Reference) GetAgentSoftwareVersion() *AgentSoftwareVersion

func (*Reference) GetIParentName

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

func (*Reference) GetIUnderlyingParentName

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

func (*Reference) GetIdParts

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

func (*Reference) GetPattern

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

func (*Reference) GetRawResource

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

func (*Reference) GetResourceDescriptor

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

func (*Reference) GetSegments

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

func (*Reference) GotenEqual

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

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

func (*Reference) IsFullyQualified

func (ref *Reference) IsFullyQualified() bool

func (*Reference) IsSpecified

func (ref *Reference) IsSpecified() bool

func (*Reference) Matches

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

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

func (*Reference) ParseProtoString

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

func (*Reference) ProtoString

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

func (*Reference) Resolve

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

func (*Reference) ResolveRaw

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

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type WatchQuery

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

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime

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

func (*WatchQuery) GetWatchType

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

func (*WatchQuery) SetMaximumChunkSize

func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)

func (*WatchQuery) SetResumeToken

func (q *WatchQuery) SetResumeToken(token string)

func (*WatchQuery) SetStartingTime

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

func (*WatchQuery) SetWatchType

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

func (*WatchQuery) String

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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