os_image_profile

package
v1.0.38 Latest Latest
Warning

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

Go to latest
Published: Apr 27, 2024 License: Apache-2.0 Imports: 41 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NamePattern_Project_Region = "projects/{project}/regions/{region}/osImageProfiles/{os_image_profile}"
)

Variables

This section is empty.

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access OsImageProfileAccess) gotenresource.Access

Types

type Descriptor

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

func GetDescriptor

func GetDescriptor() *Descriptor

func (*Descriptor) CanBeParentless added in v1.0.21

func (d *Descriptor) CanBeParentless() bool

func (*Descriptor) GetNameDescriptor

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

func (*Descriptor) GetParentResDescriptors added in v1.0.21

func (d *Descriptor) GetParentResDescriptors() []gotenresource.Descriptor

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)

func (*Descriptor) SupportsMetadata added in v1.0.21

func (d *Descriptor) SupportsMetadata() bool

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

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 OsImageProfile_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 *OsImageProfile) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	OsImageProfile_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *OsImageProfile) 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 OsImageProfile_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 *OsImageProfile) 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 OsImageProfile_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 *OsImageProfile) 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 OsImageProfile_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 {
	OsImageProfile_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *OsImageProfile) 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 OsImageProfile_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 OsImageProfile_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *OsImageProfile) 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 OsImageProfile_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 OsImageProfile_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *OsImageProfile) 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 OsImageProfile_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 *OsImageProfile) 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 OsImageProfile_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 {
	OsImageProfile_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *OsImageProfile) 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 OsImageProfile_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      *OsImageProfile_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           *OsImageProfile_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 {
	ParentName
	OsImageProfileId string `firestore:"osImageProfileId"`
}

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

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

func (*Name) GetResourceDescriptor

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

func (*Name) GetSegments

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

func (*Name) GotenEqual

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

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

func (*Name) HasTrait

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

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Match

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

func (*Name) Matches

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

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

func (*Name) ParseProtoString

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

func (*Name) ProtoString

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

func (*Name) Receive

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

func (*Name) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Name) SetFromSegments

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

func (*Name) String

func (name *Name) String() string

func (*Name) Type

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

func (*Name) TypeName

func (name *Name) TypeName() string

func (*Name) Value

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

type NameBuilder

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

func NewNameBuilder

func NewNameBuilder() *NameBuilder

func (*NameBuilder) Name

func (b *NameBuilder) Name() *Name

func (*NameBuilder) Parent

func (b *NameBuilder) Parent() *ParentName

func (*NameBuilder) ParentReference

func (b *NameBuilder) ParentReference() *ParentReference

func (*NameBuilder) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

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

func (*NameBuilder) SetProject

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

func (*NameBuilder) SetProjectId

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

func (*NameBuilder) SetRegionId

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

type NamePattern

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

type OrderBy

type OrderBy struct {
	OrderByFields []OrderByField
}

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

func (*OrderBy) Compare

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

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *OsImageProfile_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 OsImageProfileList, elem *OsImageProfile) (OsImageProfileList, 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 OsImageProfileList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

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

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type OsImageProfile

type OsImageProfile struct {

	// Name of OsImageProfile
	// 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"`
	Metadata *meta.Meta `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// Display name of the profile
	DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	// Device type for the profile
	DeviceType *device_type.Reference `` /* 135-byte string literal not displayed */
	// Install runtimes and drivers for Hailo-8 and NVIDIA CUDA.
	InstallAiAccelerator bool `` /* 157-byte string literal not displayed */
	// Enable disk encryption
	Encryption bool `protobuf:"varint,6,opt,name=encryption,proto3" json:"encryption,omitempty" firestore:"encryption"`
	// Disk Mapping YAML configuration.
	DiskMapping string `protobuf:"bytes,7,opt,name=disk_mapping,json=diskMapping,proto3" json:"disk_mapping,omitempty" firestore:"diskMapping"`
	// Network Agent YAML configuration.
	NetworkAgent string `protobuf:"bytes,8,opt,name=network_agent,json=networkAgent,proto3" json:"network_agent,omitempty" firestore:"networkAgent"`
	// NTP Server settings.
	Ntp string `protobuf:"bytes,9,opt,name=ntp,proto3" json:"ntp,omitempty" firestore:"ntp"`
	// HTTP PROXY address
	HttpProxy string `protobuf:"bytes,10,opt,name=http_proxy,json=httpProxy,proto3" json:"http_proxy,omitempty" firestore:"httpProxy"`
	// HTTPS PROXY address
	HttpsProxy string `protobuf:"bytes,11,opt,name=https_proxy,json=httpsProxy,proto3" json:"https_proxy,omitempty" firestore:"httpsProxy"`
	// NO Proxy addresses (comma separated).
	NoProxy string `protobuf:"bytes,12,opt,name=no_proxy,json=noProxy,proto3" json:"no_proxy,omitempty" firestore:"noProxy"`
	// contains filtered or unexported fields
}

OsImageProfile Resource

func (*OsImageProfile) Clone

func (o *OsImageProfile) Clone() *OsImageProfile

func (*OsImageProfile) CloneRaw

func (*OsImageProfile) Descriptor

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

Deprecated, Use OsImageProfile.ProtoReflect.Descriptor instead.

func (*OsImageProfile) EnsureMetadata added in v1.0.21

func (r *OsImageProfile) EnsureMetadata() *meta.Meta

func (*OsImageProfile) GetDeviceType

func (m *OsImageProfile) GetDeviceType() *device_type.Reference

func (*OsImageProfile) GetDiskMapping

func (m *OsImageProfile) GetDiskMapping() string

func (*OsImageProfile) GetDisplayName

func (m *OsImageProfile) GetDisplayName() string

func (*OsImageProfile) GetEncryption

func (m *OsImageProfile) GetEncryption() bool

func (*OsImageProfile) GetHttpProxy

func (m *OsImageProfile) GetHttpProxy() string

func (*OsImageProfile) GetHttpsProxy

func (m *OsImageProfile) GetHttpsProxy() string

func (*OsImageProfile) GetInstallAiAccelerator

func (m *OsImageProfile) GetInstallAiAccelerator() bool

func (*OsImageProfile) GetMetadata

func (m *OsImageProfile) GetMetadata() *meta.Meta

func (*OsImageProfile) GetName

func (m *OsImageProfile) GetName() *Name

func (*OsImageProfile) GetNetworkAgent

func (m *OsImageProfile) GetNetworkAgent() string

func (*OsImageProfile) GetNoProxy

func (m *OsImageProfile) GetNoProxy() string

func (*OsImageProfile) GetNtp

func (m *OsImageProfile) GetNtp() string

func (*OsImageProfile) GetRawName

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

func (*OsImageProfile) GetResourceDescriptor

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

func (*OsImageProfile) GotenMessage

func (*OsImageProfile) GotenMessage()

func (*OsImageProfile) GotenObjectExt

func (o *OsImageProfile) GotenObjectExt()

func (*OsImageProfile) GotenValidate

func (obj *OsImageProfile) GotenValidate() error

func (*OsImageProfile) MakeDiffFieldMask

func (o *OsImageProfile) MakeDiffFieldMask(other *OsImageProfile) *OsImageProfile_FieldMask

func (*OsImageProfile) MakeFullFieldMask

func (o *OsImageProfile) MakeFullFieldMask() *OsImageProfile_FieldMask

func (*OsImageProfile) MakeRawDiffFieldMask

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

func (*OsImageProfile) MakeRawFullFieldMask

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

func (*OsImageProfile) Marshal

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

func (*OsImageProfile) MarshalJSON

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

func (*OsImageProfile) MaybePopulateDefaults

func (r *OsImageProfile) MaybePopulateDefaults() error

func (*OsImageProfile) Merge

func (o *OsImageProfile) Merge(source *OsImageProfile)

func (*OsImageProfile) MergeRaw

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

func (*OsImageProfile) ProtoMessage

func (*OsImageProfile) ProtoMessage()

func (*OsImageProfile) ProtoReflect

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

func (*OsImageProfile) Reset

func (m *OsImageProfile) Reset()

func (*OsImageProfile) SetDeviceType

func (m *OsImageProfile) SetDeviceType(fv *device_type.Reference)

func (*OsImageProfile) SetDiskMapping

func (m *OsImageProfile) SetDiskMapping(fv string)

func (*OsImageProfile) SetDisplayName

func (m *OsImageProfile) SetDisplayName(fv string)

func (*OsImageProfile) SetEncryption

func (m *OsImageProfile) SetEncryption(fv bool)

func (*OsImageProfile) SetHttpProxy

func (m *OsImageProfile) SetHttpProxy(fv string)

func (*OsImageProfile) SetHttpsProxy

func (m *OsImageProfile) SetHttpsProxy(fv string)

func (*OsImageProfile) SetInstallAiAccelerator

func (m *OsImageProfile) SetInstallAiAccelerator(fv bool)

func (*OsImageProfile) SetMetadata

func (m *OsImageProfile) SetMetadata(fv *meta.Meta)

func (*OsImageProfile) SetName

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

func (*OsImageProfile) SetNetworkAgent

func (m *OsImageProfile) SetNetworkAgent(fv string)

func (*OsImageProfile) SetNoProxy

func (m *OsImageProfile) SetNoProxy(fv string)

func (*OsImageProfile) SetNtp

func (m *OsImageProfile) SetNtp(fv string)

func (*OsImageProfile) String

func (m *OsImageProfile) String() string

func (*OsImageProfile) Unmarshal

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

func (*OsImageProfile) UnmarshalJSON

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

type OsImageProfileAccess

type OsImageProfileAccess interface {
	GetOsImageProfile(context.Context, *GetQuery) (*OsImageProfile, error)
	BatchGetOsImageProfiles(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryOsImageProfiles(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchOsImageProfile(context.Context, *GetQuery, func(*OsImageProfileChange) error) error
	WatchOsImageProfiles(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveOsImageProfile(context.Context, *OsImageProfile, ...gotenresource.SaveOption) error
	DeleteOsImageProfile(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type OsImageProfileChange

type OsImageProfileChange struct {

	// OsImageProfile change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*OsImageProfileChange_Added_
	//	*OsImageProfileChange_Modified_
	//	*OsImageProfileChange_Current_
	//	*OsImageProfileChange_Removed_
	ChangeType isOsImageProfileChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*OsImageProfileChange) Descriptor

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

Deprecated, Use OsImageProfileChange.ProtoReflect.Descriptor instead.

func (*OsImageProfileChange) GetAdded

func (*OsImageProfileChange) GetChangeType

func (m *OsImageProfileChange) GetChangeType() isOsImageProfileChange_ChangeType

func (*OsImageProfileChange) GetCurrent

func (*OsImageProfileChange) GetCurrentViewIndex

func (c *OsImageProfileChange) GetCurrentViewIndex() int32

func (*OsImageProfileChange) GetModified

func (*OsImageProfileChange) GetOsImageProfile

func (c *OsImageProfileChange) GetOsImageProfile() *OsImageProfile

func (*OsImageProfileChange) GetOsImageProfileName

func (c *OsImageProfileChange) GetOsImageProfileName() *Name

func (*OsImageProfileChange) GetPreviousViewIndex

func (c *OsImageProfileChange) GetPreviousViewIndex() int32

func (*OsImageProfileChange) GetRawName

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

func (*OsImageProfileChange) GetRawResource

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

func (*OsImageProfileChange) GetRemoved

func (*OsImageProfileChange) GotenMessage

func (*OsImageProfileChange) GotenMessage()

func (*OsImageProfileChange) GotenValidate

func (obj *OsImageProfileChange) GotenValidate() error

func (*OsImageProfileChange) IsAdd

func (c *OsImageProfileChange) IsAdd() bool

func (*OsImageProfileChange) IsCurrent

func (c *OsImageProfileChange) IsCurrent() bool

func (*OsImageProfileChange) IsDelete

func (c *OsImageProfileChange) IsDelete() bool

func (*OsImageProfileChange) IsModify

func (c *OsImageProfileChange) IsModify() bool

func (*OsImageProfileChange) Marshal

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

func (*OsImageProfileChange) MarshalJSON

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

func (*OsImageProfileChange) ProtoMessage

func (*OsImageProfileChange) ProtoMessage()

func (*OsImageProfileChange) ProtoReflect

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

func (*OsImageProfileChange) Reset

func (m *OsImageProfileChange) Reset()

func (*OsImageProfileChange) SetAdded

func (*OsImageProfileChange) SetAddedRaw

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

func (*OsImageProfileChange) SetChangeType

func (m *OsImageProfileChange) SetChangeType(ofv isOsImageProfileChange_ChangeType)

func (*OsImageProfileChange) SetCurrent

func (*OsImageProfileChange) SetCurrentRaw

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

func (*OsImageProfileChange) SetDeletedRaw

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

func (*OsImageProfileChange) SetModified

func (*OsImageProfileChange) SetModifiedRaw

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

func (*OsImageProfileChange) SetRemoved

func (*OsImageProfileChange) String

func (m *OsImageProfileChange) String() string

func (*OsImageProfileChange) Unmarshal

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

func (*OsImageProfileChange) UnmarshalJSON

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

type OsImageProfileChangeList

type OsImageProfileChangeList []*OsImageProfileChange

func (OsImageProfileChangeList) Append

func (OsImageProfileChangeList) AppendList

func (OsImageProfileChangeList) At

func (OsImageProfileChangeList) Length

func (l OsImageProfileChangeList) Length() int

func (OsImageProfileChangeList) Set

func (OsImageProfileChangeList) Slice

type OsImageProfileChangeMap

type OsImageProfileChangeMap map[Name]*OsImageProfileChange

func (OsImageProfileChangeMap) Delete

func (OsImageProfileChangeMap) ForEach

func (OsImageProfileChangeMap) Get

func (OsImageProfileChangeMap) Length

func (m OsImageProfileChangeMap) Length() int

func (OsImageProfileChangeMap) Set

type OsImageProfileChange_Added

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

OsImageProfile has been added to query view

func (*OsImageProfileChange_Added) Descriptor

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

Deprecated, Use OsImageProfileChange_Added.ProtoReflect.Descriptor instead.

func (*OsImageProfileChange_Added) GetOsImageProfile

func (m *OsImageProfileChange_Added) GetOsImageProfile() *OsImageProfile

func (*OsImageProfileChange_Added) GetViewIndex

func (m *OsImageProfileChange_Added) GetViewIndex() int32

func (*OsImageProfileChange_Added) GotenMessage

func (*OsImageProfileChange_Added) GotenMessage()

func (*OsImageProfileChange_Added) GotenValidate

func (obj *OsImageProfileChange_Added) GotenValidate() error

func (*OsImageProfileChange_Added) Marshal

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

func (*OsImageProfileChange_Added) MarshalJSON

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

func (*OsImageProfileChange_Added) ProtoMessage

func (*OsImageProfileChange_Added) ProtoMessage()

func (*OsImageProfileChange_Added) ProtoReflect

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

func (*OsImageProfileChange_Added) Reset

func (m *OsImageProfileChange_Added) Reset()

func (*OsImageProfileChange_Added) SetOsImageProfile

func (m *OsImageProfileChange_Added) SetOsImageProfile(fv *OsImageProfile)

func (*OsImageProfileChange_Added) SetViewIndex

func (m *OsImageProfileChange_Added) SetViewIndex(fv int32)

func (*OsImageProfileChange_Added) String

func (m *OsImageProfileChange_Added) String() string

func (*OsImageProfileChange_Added) Unmarshal

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

func (*OsImageProfileChange_Added) UnmarshalJSON

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

type OsImageProfileChange_Added_

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

type OsImageProfileChange_Current

type OsImageProfileChange_Current struct {
	OsImageProfile *OsImageProfile `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*OsImageProfileChange_Current) Descriptor

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

Deprecated, Use OsImageProfileChange_Current.ProtoReflect.Descriptor instead.

func (*OsImageProfileChange_Current) GetOsImageProfile

func (m *OsImageProfileChange_Current) GetOsImageProfile() *OsImageProfile

func (*OsImageProfileChange_Current) GotenMessage

func (*OsImageProfileChange_Current) GotenMessage()

func (*OsImageProfileChange_Current) GotenValidate

func (obj *OsImageProfileChange_Current) GotenValidate() error

func (*OsImageProfileChange_Current) Marshal

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

func (*OsImageProfileChange_Current) MarshalJSON

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

func (*OsImageProfileChange_Current) ProtoMessage

func (*OsImageProfileChange_Current) ProtoMessage()

func (*OsImageProfileChange_Current) ProtoReflect

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

func (*OsImageProfileChange_Current) Reset

func (m *OsImageProfileChange_Current) Reset()

func (*OsImageProfileChange_Current) SetOsImageProfile

func (m *OsImageProfileChange_Current) SetOsImageProfile(fv *OsImageProfile)

func (*OsImageProfileChange_Current) String

func (*OsImageProfileChange_Current) Unmarshal

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

func (*OsImageProfileChange_Current) UnmarshalJSON

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

type OsImageProfileChange_Current_

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

type OsImageProfileChange_Modified

type OsImageProfileChange_Modified struct {

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

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

func (*OsImageProfileChange_Modified) Descriptor

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

Deprecated, Use OsImageProfileChange_Modified.ProtoReflect.Descriptor instead.

func (*OsImageProfileChange_Modified) GetFieldMask

func (*OsImageProfileChange_Modified) GetName

func (m *OsImageProfileChange_Modified) GetName() *Name

func (*OsImageProfileChange_Modified) GetOsImageProfile

func (m *OsImageProfileChange_Modified) GetOsImageProfile() *OsImageProfile

func (*OsImageProfileChange_Modified) GetPreviousViewIndex

func (m *OsImageProfileChange_Modified) GetPreviousViewIndex() int32

func (*OsImageProfileChange_Modified) GetViewIndex

func (m *OsImageProfileChange_Modified) GetViewIndex() int32

func (*OsImageProfileChange_Modified) GotenMessage

func (*OsImageProfileChange_Modified) GotenMessage()

func (*OsImageProfileChange_Modified) GotenValidate

func (obj *OsImageProfileChange_Modified) GotenValidate() error

func (*OsImageProfileChange_Modified) Marshal

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

func (*OsImageProfileChange_Modified) MarshalJSON

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

func (*OsImageProfileChange_Modified) ProtoMessage

func (*OsImageProfileChange_Modified) ProtoMessage()

func (*OsImageProfileChange_Modified) ProtoReflect

func (*OsImageProfileChange_Modified) Reset

func (m *OsImageProfileChange_Modified) Reset()

func (*OsImageProfileChange_Modified) SetFieldMask

func (*OsImageProfileChange_Modified) SetName

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

func (*OsImageProfileChange_Modified) SetOsImageProfile

func (m *OsImageProfileChange_Modified) SetOsImageProfile(fv *OsImageProfile)

func (*OsImageProfileChange_Modified) SetPreviousViewIndex

func (m *OsImageProfileChange_Modified) SetPreviousViewIndex(fv int32)

func (*OsImageProfileChange_Modified) SetViewIndex

func (m *OsImageProfileChange_Modified) SetViewIndex(fv int32)

func (*OsImageProfileChange_Modified) String

func (*OsImageProfileChange_Modified) Unmarshal

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

func (*OsImageProfileChange_Modified) UnmarshalJSON

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

type OsImageProfileChange_Modified_

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

type OsImageProfileChange_Removed

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

func (*OsImageProfileChange_Removed) Descriptor

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

Deprecated, Use OsImageProfileChange_Removed.ProtoReflect.Descriptor instead.

func (*OsImageProfileChange_Removed) GetName

func (m *OsImageProfileChange_Removed) GetName() *Name

func (*OsImageProfileChange_Removed) GetViewIndex

func (m *OsImageProfileChange_Removed) GetViewIndex() int32

func (*OsImageProfileChange_Removed) GotenMessage

func (*OsImageProfileChange_Removed) GotenMessage()

func (*OsImageProfileChange_Removed) GotenValidate

func (obj *OsImageProfileChange_Removed) GotenValidate() error

func (*OsImageProfileChange_Removed) Marshal

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

func (*OsImageProfileChange_Removed) MarshalJSON

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

func (*OsImageProfileChange_Removed) ProtoMessage

func (*OsImageProfileChange_Removed) ProtoMessage()

func (*OsImageProfileChange_Removed) ProtoReflect

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

func (*OsImageProfileChange_Removed) Reset

func (m *OsImageProfileChange_Removed) Reset()

func (*OsImageProfileChange_Removed) SetName

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

func (*OsImageProfileChange_Removed) SetViewIndex

func (m *OsImageProfileChange_Removed) SetViewIndex(fv int32)

func (*OsImageProfileChange_Removed) String

func (*OsImageProfileChange_Removed) Unmarshal

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

func (*OsImageProfileChange_Removed) UnmarshalJSON

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

type OsImageProfileChange_Removed_

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

type OsImageProfileFieldPathBuilder

type OsImageProfileFieldPathBuilder struct{}

func NewOsImageProfileFieldPathBuilder

func NewOsImageProfileFieldPathBuilder() OsImageProfileFieldPathBuilder

func (OsImageProfileFieldPathBuilder) DeviceType

func (OsImageProfileFieldPathBuilder) DiskMapping

func (OsImageProfileFieldPathBuilder) DisplayName

func (OsImageProfileFieldPathBuilder) Encryption

func (OsImageProfileFieldPathBuilder) HttpProxy

func (OsImageProfileFieldPathBuilder) HttpsProxy

func (OsImageProfileFieldPathBuilder) InstallAiAccelerator

func (OsImageProfileFieldPathBuilder) Metadata

func (OsImageProfileFieldPathBuilder) Name

func (OsImageProfileFieldPathBuilder) NetworkAgent

func (OsImageProfileFieldPathBuilder) NoProxy

func (OsImageProfileFieldPathBuilder) Ntp

type OsImageProfileList

type OsImageProfileList []*OsImageProfile

func (OsImageProfileList) Append

func (OsImageProfileList) AppendList

func (OsImageProfileList) At

func (OsImageProfileList) Length

func (l OsImageProfileList) Length() int

func (OsImageProfileList) Set

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

func (OsImageProfileList) Slice

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

type OsImageProfileMap

type OsImageProfileMap map[Name]*OsImageProfile

func (OsImageProfileMap) Delete

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

func (OsImageProfileMap) ForEach

func (OsImageProfileMap) Get

func (OsImageProfileMap) Length

func (m OsImageProfileMap) Length() int

func (OsImageProfileMap) Set

type OsImageProfileMapPathSelectorMetadataAnnotations

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

func (OsImageProfileMapPathSelectorMetadataAnnotations) FieldPath

func (OsImageProfileMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (OsImageProfileMapPathSelectorMetadataAnnotations) WithValue

type OsImageProfileMapPathSelectorMetadataLabels

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

func (OsImageProfileMapPathSelectorMetadataLabels) FieldPath

func (OsImageProfileMapPathSelectorMetadataLabels) WithArrayOfValues

func (OsImageProfileMapPathSelectorMetadataLabels) WithValue

type OsImageProfileMapPathSelectorMetadataShards

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

func (OsImageProfileMapPathSelectorMetadataShards) FieldPath

func (OsImageProfileMapPathSelectorMetadataShards) WithArrayOfValues

func (OsImageProfileMapPathSelectorMetadataShards) WithValue

type OsImageProfileNameList

type OsImageProfileNameList []*Name

func (OsImageProfileNameList) Append

func (OsImageProfileNameList) AppendList

func (OsImageProfileNameList) At

func (OsImageProfileNameList) Length

func (l OsImageProfileNameList) Length() int

func (OsImageProfileNameList) Set

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

func (OsImageProfileNameList) Slice

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

type OsImageProfileParentNameList

type OsImageProfileParentNameList []*ParentName

func (OsImageProfileParentNameList) Append

func (OsImageProfileParentNameList) AppendList

func (OsImageProfileParentNameList) At

func (OsImageProfileParentNameList) Length

func (l OsImageProfileParentNameList) Length() int

func (OsImageProfileParentNameList) Set

func (OsImageProfileParentNameList) Slice

type OsImageProfileParentReferenceList

type OsImageProfileParentReferenceList []*ParentReference

func (OsImageProfileParentReferenceList) Append

func (OsImageProfileParentReferenceList) AppendList

func (OsImageProfileParentReferenceList) At

func (OsImageProfileParentReferenceList) Length

func (OsImageProfileParentReferenceList) Set

func (OsImageProfileParentReferenceList) Slice

type OsImageProfilePathSelectorDeviceType

type OsImageProfilePathSelectorDeviceType struct{}

func (OsImageProfilePathSelectorDeviceType) FieldPath

func (OsImageProfilePathSelectorDeviceType) WithArrayOfValues

func (OsImageProfilePathSelectorDeviceType) WithValue

type OsImageProfilePathSelectorDiskMapping

type OsImageProfilePathSelectorDiskMapping struct{}

func (OsImageProfilePathSelectorDiskMapping) FieldPath

func (OsImageProfilePathSelectorDiskMapping) WithArrayOfValues

func (OsImageProfilePathSelectorDiskMapping) WithValue

type OsImageProfilePathSelectorDisplayName

type OsImageProfilePathSelectorDisplayName struct{}

func (OsImageProfilePathSelectorDisplayName) FieldPath

func (OsImageProfilePathSelectorDisplayName) WithArrayOfValues

func (OsImageProfilePathSelectorDisplayName) WithValue

type OsImageProfilePathSelectorEncryption

type OsImageProfilePathSelectorEncryption struct{}

func (OsImageProfilePathSelectorEncryption) FieldPath

func (OsImageProfilePathSelectorEncryption) WithArrayOfValues

func (OsImageProfilePathSelectorEncryption) WithValue

type OsImageProfilePathSelectorHttpProxy

type OsImageProfilePathSelectorHttpProxy struct{}

func (OsImageProfilePathSelectorHttpProxy) FieldPath

func (OsImageProfilePathSelectorHttpProxy) WithArrayOfValues

func (OsImageProfilePathSelectorHttpProxy) WithValue

type OsImageProfilePathSelectorHttpsProxy

type OsImageProfilePathSelectorHttpsProxy struct{}

func (OsImageProfilePathSelectorHttpsProxy) FieldPath

func (OsImageProfilePathSelectorHttpsProxy) WithArrayOfValues

func (OsImageProfilePathSelectorHttpsProxy) WithValue

type OsImageProfilePathSelectorInstallAiAccelerator

type OsImageProfilePathSelectorInstallAiAccelerator struct{}

func (OsImageProfilePathSelectorInstallAiAccelerator) FieldPath

func (OsImageProfilePathSelectorInstallAiAccelerator) WithArrayOfValues

func (OsImageProfilePathSelectorInstallAiAccelerator) WithValue

type OsImageProfilePathSelectorMetadata

type OsImageProfilePathSelectorMetadata struct{}

func (OsImageProfilePathSelectorMetadata) Annotations

func (OsImageProfilePathSelectorMetadata) CreateTime

func (OsImageProfilePathSelectorMetadata) DeleteTime

func (OsImageProfilePathSelectorMetadata) FieldPath

func (OsImageProfilePathSelectorMetadata) Generation

func (OsImageProfilePathSelectorMetadata) Labels

func (OsImageProfilePathSelectorMetadata) Lifecycle

func (OsImageProfilePathSelectorMetadata) OwnerReferences

func (OsImageProfilePathSelectorMetadata) ResourceVersion

func (OsImageProfilePathSelectorMetadata) Services added in v1.0.21

func (OsImageProfilePathSelectorMetadata) Shards

func (OsImageProfilePathSelectorMetadata) Syncing

func (OsImageProfilePathSelectorMetadata) Tags

func (OsImageProfilePathSelectorMetadata) UpdateTime

func (OsImageProfilePathSelectorMetadata) Uuid

func (OsImageProfilePathSelectorMetadata) WithArrayOfValues

func (OsImageProfilePathSelectorMetadata) WithSubArrayItemValue

func (OsImageProfilePathSelectorMetadata) WithSubArrayOfValues

func (OsImageProfilePathSelectorMetadata) WithSubPath

func (OsImageProfilePathSelectorMetadata) WithSubValue

func (OsImageProfilePathSelectorMetadata) WithValue

type OsImageProfilePathSelectorMetadataAnnotations

type OsImageProfilePathSelectorMetadataAnnotations struct{}

func (OsImageProfilePathSelectorMetadataAnnotations) FieldPath

func (OsImageProfilePathSelectorMetadataAnnotations) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataAnnotations) WithKey

func (OsImageProfilePathSelectorMetadataAnnotations) WithValue

type OsImageProfilePathSelectorMetadataCreateTime

type OsImageProfilePathSelectorMetadataCreateTime struct{}

func (OsImageProfilePathSelectorMetadataCreateTime) FieldPath

func (OsImageProfilePathSelectorMetadataCreateTime) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataCreateTime) WithValue

type OsImageProfilePathSelectorMetadataDeleteTime

type OsImageProfilePathSelectorMetadataDeleteTime struct{}

func (OsImageProfilePathSelectorMetadataDeleteTime) FieldPath

func (OsImageProfilePathSelectorMetadataDeleteTime) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataDeleteTime) WithValue

type OsImageProfilePathSelectorMetadataGeneration

type OsImageProfilePathSelectorMetadataGeneration struct{}

func (OsImageProfilePathSelectorMetadataGeneration) FieldPath

func (OsImageProfilePathSelectorMetadataGeneration) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataGeneration) WithValue

type OsImageProfilePathSelectorMetadataLabels

type OsImageProfilePathSelectorMetadataLabels struct{}

func (OsImageProfilePathSelectorMetadataLabels) FieldPath

func (OsImageProfilePathSelectorMetadataLabels) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataLabels) WithKey

func (OsImageProfilePathSelectorMetadataLabels) WithValue

type OsImageProfilePathSelectorMetadataLifecycle

type OsImageProfilePathSelectorMetadataLifecycle struct{}

func (OsImageProfilePathSelectorMetadataLifecycle) BlockDeletion

func (OsImageProfilePathSelectorMetadataLifecycle) FieldPath

func (OsImageProfilePathSelectorMetadataLifecycle) State

func (OsImageProfilePathSelectorMetadataLifecycle) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataLifecycle) WithValue

type OsImageProfilePathSelectorMetadataLifecycleBlockDeletion

type OsImageProfilePathSelectorMetadataLifecycleBlockDeletion struct{}

func (OsImageProfilePathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (OsImageProfilePathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataLifecycleBlockDeletion) WithValue

type OsImageProfilePathSelectorMetadataLifecycleState

type OsImageProfilePathSelectorMetadataLifecycleState struct{}

func (OsImageProfilePathSelectorMetadataLifecycleState) FieldPath

func (OsImageProfilePathSelectorMetadataLifecycleState) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataLifecycleState) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferences

type OsImageProfilePathSelectorMetadataOwnerReferences struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferences) Controller

func (OsImageProfilePathSelectorMetadataOwnerReferences) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferences) Kind

func (OsImageProfilePathSelectorMetadataOwnerReferences) Name

func (OsImageProfilePathSelectorMetadataOwnerReferences) Region

func (OsImageProfilePathSelectorMetadataOwnerReferences) Version

func (OsImageProfilePathSelectorMetadataOwnerReferences) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferences) WithItemValue

func (OsImageProfilePathSelectorMetadataOwnerReferences) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesController

type OsImageProfilePathSelectorMetadataOwnerReferencesController struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesController) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesController) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesKind

type OsImageProfilePathSelectorMetadataOwnerReferencesKind struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesKind) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesKind) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesName

type OsImageProfilePathSelectorMetadataOwnerReferencesName struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesName) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesName) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesRegion

type OsImageProfilePathSelectorMetadataOwnerReferencesRegion struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesRegion) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesRegion) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesRequiresOwnerReference

type OsImageProfilePathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type OsImageProfilePathSelectorMetadataOwnerReferencesVersion

type OsImageProfilePathSelectorMetadataOwnerReferencesVersion struct{}

func (OsImageProfilePathSelectorMetadataOwnerReferencesVersion) FieldPath

func (OsImageProfilePathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataOwnerReferencesVersion) WithValue

type OsImageProfilePathSelectorMetadataResourceVersion

type OsImageProfilePathSelectorMetadataResourceVersion struct{}

func (OsImageProfilePathSelectorMetadataResourceVersion) FieldPath

func (OsImageProfilePathSelectorMetadataResourceVersion) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataResourceVersion) WithValue

type OsImageProfilePathSelectorMetadataServices added in v1.0.21

type OsImageProfilePathSelectorMetadataServices struct{}

func (OsImageProfilePathSelectorMetadataServices) AllowedServices added in v1.0.21

func (OsImageProfilePathSelectorMetadataServices) FieldPath added in v1.0.21

func (OsImageProfilePathSelectorMetadataServices) OwningService added in v1.0.21

func (OsImageProfilePathSelectorMetadataServices) WithArrayOfValues added in v1.0.21

func (OsImageProfilePathSelectorMetadataServices) WithValue added in v1.0.21

type OsImageProfilePathSelectorMetadataServicesAllowedServices added in v1.0.21

type OsImageProfilePathSelectorMetadataServicesAllowedServices struct{}

func (OsImageProfilePathSelectorMetadataServicesAllowedServices) FieldPath added in v1.0.21

func (OsImageProfilePathSelectorMetadataServicesAllowedServices) WithArrayOfValues added in v1.0.21

func (OsImageProfilePathSelectorMetadataServicesAllowedServices) WithItemValue added in v1.0.21

func (OsImageProfilePathSelectorMetadataServicesAllowedServices) WithValue added in v1.0.21

type OsImageProfilePathSelectorMetadataServicesOwningService added in v1.0.21

type OsImageProfilePathSelectorMetadataServicesOwningService struct{}

func (OsImageProfilePathSelectorMetadataServicesOwningService) FieldPath added in v1.0.21

func (OsImageProfilePathSelectorMetadataServicesOwningService) WithArrayOfValues added in v1.0.21

func (OsImageProfilePathSelectorMetadataServicesOwningService) WithValue added in v1.0.21

type OsImageProfilePathSelectorMetadataShards

type OsImageProfilePathSelectorMetadataShards struct{}

func (OsImageProfilePathSelectorMetadataShards) FieldPath

func (OsImageProfilePathSelectorMetadataShards) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataShards) WithKey

func (OsImageProfilePathSelectorMetadataShards) WithValue

type OsImageProfilePathSelectorMetadataSyncing

type OsImageProfilePathSelectorMetadataSyncing struct{}

func (OsImageProfilePathSelectorMetadataSyncing) FieldPath

func (OsImageProfilePathSelectorMetadataSyncing) OwningRegion

func (OsImageProfilePathSelectorMetadataSyncing) Regions

func (OsImageProfilePathSelectorMetadataSyncing) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataSyncing) WithValue

type OsImageProfilePathSelectorMetadataSyncingOwningRegion

type OsImageProfilePathSelectorMetadataSyncingOwningRegion struct{}

func (OsImageProfilePathSelectorMetadataSyncingOwningRegion) FieldPath

func (OsImageProfilePathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataSyncingOwningRegion) WithValue

type OsImageProfilePathSelectorMetadataSyncingRegions

type OsImageProfilePathSelectorMetadataSyncingRegions struct{}

func (OsImageProfilePathSelectorMetadataSyncingRegions) FieldPath

func (OsImageProfilePathSelectorMetadataSyncingRegions) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataSyncingRegions) WithItemValue

func (OsImageProfilePathSelectorMetadataSyncingRegions) WithValue

type OsImageProfilePathSelectorMetadataTags

type OsImageProfilePathSelectorMetadataTags struct{}

func (OsImageProfilePathSelectorMetadataTags) FieldPath

func (OsImageProfilePathSelectorMetadataTags) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataTags) WithItemValue

func (OsImageProfilePathSelectorMetadataTags) WithValue

type OsImageProfilePathSelectorMetadataUpdateTime

type OsImageProfilePathSelectorMetadataUpdateTime struct{}

func (OsImageProfilePathSelectorMetadataUpdateTime) FieldPath

func (OsImageProfilePathSelectorMetadataUpdateTime) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataUpdateTime) WithValue

type OsImageProfilePathSelectorMetadataUuid

type OsImageProfilePathSelectorMetadataUuid struct{}

func (OsImageProfilePathSelectorMetadataUuid) FieldPath

func (OsImageProfilePathSelectorMetadataUuid) WithArrayOfValues

func (OsImageProfilePathSelectorMetadataUuid) WithValue

type OsImageProfilePathSelectorName

type OsImageProfilePathSelectorName struct{}

func (OsImageProfilePathSelectorName) FieldPath

func (OsImageProfilePathSelectorName) WithArrayOfValues

func (OsImageProfilePathSelectorName) WithValue

type OsImageProfilePathSelectorNetworkAgent

type OsImageProfilePathSelectorNetworkAgent struct{}

func (OsImageProfilePathSelectorNetworkAgent) FieldPath

func (OsImageProfilePathSelectorNetworkAgent) WithArrayOfValues

func (OsImageProfilePathSelectorNetworkAgent) WithValue

type OsImageProfilePathSelectorNoProxy

type OsImageProfilePathSelectorNoProxy struct{}

func (OsImageProfilePathSelectorNoProxy) FieldPath

func (OsImageProfilePathSelectorNoProxy) WithArrayOfValues

func (OsImageProfilePathSelectorNoProxy) WithValue

type OsImageProfilePathSelectorNtp

type OsImageProfilePathSelectorNtp struct{}

func (OsImageProfilePathSelectorNtp) FieldPath

func (OsImageProfilePathSelectorNtp) WithArrayOfValues

func (OsImageProfilePathSelectorNtp) WithValue

type OsImageProfileReferenceList

type OsImageProfileReferenceList []*Reference

func (OsImageProfileReferenceList) Append

func (OsImageProfileReferenceList) AppendList

func (OsImageProfileReferenceList) At

func (OsImageProfileReferenceList) Length

func (l OsImageProfileReferenceList) Length() int

func (OsImageProfileReferenceList) Set

func (OsImageProfileReferenceList) Slice

type OsImageProfile_FieldMask

type OsImageProfile_FieldMask struct {
	Paths []OsImageProfile_FieldPath
}

func FullOsImageProfile_FieldMask

func FullOsImageProfile_FieldMask() *OsImageProfile_FieldMask

func ResourceViewFieldMask

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

func (*OsImageProfile_FieldMask) AppendPath

func (fieldMask *OsImageProfile_FieldMask) AppendPath(path OsImageProfile_FieldPath)

func (*OsImageProfile_FieldMask) AppendRawPath

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

func (*OsImageProfile_FieldMask) DecodeFirestore

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

func (*OsImageProfile_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*OsImageProfile_FieldMask) FilterInputFields

func (fieldMask *OsImageProfile_FieldMask) FilterInputFields() *OsImageProfile_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*OsImageProfile_FieldMask) FromProtoFieldMask

func (fieldMask *OsImageProfile_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error

func (*OsImageProfile_FieldMask) GetPaths

func (fieldMask *OsImageProfile_FieldMask) GetPaths() []OsImageProfile_FieldPath

func (*OsImageProfile_FieldMask) GetRawPaths

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

func (*OsImageProfile_FieldMask) IsFull

func (fieldMask *OsImageProfile_FieldMask) IsFull() bool

func (OsImageProfile_FieldMask) Marshal

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

implement methods required by customType

func (OsImageProfile_FieldMask) MarshalJSON

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

func (*OsImageProfile_FieldMask) PathsCount

func (fieldMask *OsImageProfile_FieldMask) PathsCount() int

func (*OsImageProfile_FieldMask) Project

func (fieldMask *OsImageProfile_FieldMask) Project(source *OsImageProfile) *OsImageProfile

func (*OsImageProfile_FieldMask) ProjectRaw

func (*OsImageProfile_FieldMask) ProtoMessage

func (fieldMask *OsImageProfile_FieldMask) ProtoMessage()

func (*OsImageProfile_FieldMask) ProtoReflect

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

func (*OsImageProfile_FieldMask) Reset

func (fieldMask *OsImageProfile_FieldMask) Reset()

func (*OsImageProfile_FieldMask) Set

func (fieldMask *OsImageProfile_FieldMask) Set(target, source *OsImageProfile)

func (*OsImageProfile_FieldMask) SetFromCliFlag

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

func (*OsImageProfile_FieldMask) SetRaw

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

func (*OsImageProfile_FieldMask) Size

func (fieldMask *OsImageProfile_FieldMask) Size() int

func (*OsImageProfile_FieldMask) String

func (fieldMask *OsImageProfile_FieldMask) String() string

func (*OsImageProfile_FieldMask) Subtract

func (*OsImageProfile_FieldMask) SubtractRaw

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

func (*OsImageProfile_FieldMask) ToProtoFieldMask

func (fieldMask *OsImageProfile_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask

ToFieldMask is used for proto conversions

func (*OsImageProfile_FieldMask) Unmarshal

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

func (*OsImageProfile_FieldMask) UnmarshalJSON

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

type OsImageProfile_FieldPath

type OsImageProfile_FieldPath interface {
	gotenobject.FieldPath
	Selector() OsImageProfile_FieldPathSelector
	Get(source *OsImageProfile) []interface{}
	GetSingle(source *OsImageProfile) (interface{}, bool)
	ClearValue(item *OsImageProfile)

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

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

func MustParseOsImageProfile_FieldPath

func MustParseOsImageProfile_FieldPath(rawField string) OsImageProfile_FieldPath

func ParseOsImageProfile_FieldPath

func ParseOsImageProfile_FieldPath(rawField string) (OsImageProfile_FieldPath, error)

type OsImageProfile_FieldPathArrayItemValue

type OsImageProfile_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	OsImageProfile_FieldPath
	ContainsValue(*OsImageProfile) bool
}

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

func MustParseOsImageProfile_FieldPathArrayItemValue

func MustParseOsImageProfile_FieldPathArrayItemValue(pathStr, valueStr string) OsImageProfile_FieldPathArrayItemValue

func ParseOsImageProfile_FieldPathArrayItemValue

func ParseOsImageProfile_FieldPathArrayItemValue(pathStr, valueStr string) (OsImageProfile_FieldPathArrayItemValue, error)

ParseOsImageProfile_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type OsImageProfile_FieldPathArrayOfValues

type OsImageProfile_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	OsImageProfile_FieldPath
}

OsImageProfile_FieldPathArrayOfValues allows storing slice of values for OsImageProfile fields according to their type

func MustParseOsImageProfile_FieldPathArrayOfValues

func MustParseOsImageProfile_FieldPathArrayOfValues(pathStr, valuesStr string) OsImageProfile_FieldPathArrayOfValues

func ParseOsImageProfile_FieldPathArrayOfValues

func ParseOsImageProfile_FieldPathArrayOfValues(pathStr, valuesStr string) (OsImageProfile_FieldPathArrayOfValues, error)

type OsImageProfile_FieldPathSelector

type OsImageProfile_FieldPathSelector int32
const (
	OsImageProfile_FieldPathSelectorName                 OsImageProfile_FieldPathSelector = 0
	OsImageProfile_FieldPathSelectorMetadata             OsImageProfile_FieldPathSelector = 1
	OsImageProfile_FieldPathSelectorDisplayName          OsImageProfile_FieldPathSelector = 2
	OsImageProfile_FieldPathSelectorDeviceType           OsImageProfile_FieldPathSelector = 3
	OsImageProfile_FieldPathSelectorInstallAiAccelerator OsImageProfile_FieldPathSelector = 4
	OsImageProfile_FieldPathSelectorEncryption           OsImageProfile_FieldPathSelector = 5
	OsImageProfile_FieldPathSelectorDiskMapping          OsImageProfile_FieldPathSelector = 6
	OsImageProfile_FieldPathSelectorNetworkAgent         OsImageProfile_FieldPathSelector = 7
	OsImageProfile_FieldPathSelectorNtp                  OsImageProfile_FieldPathSelector = 8
	OsImageProfile_FieldPathSelectorHttpProxy            OsImageProfile_FieldPathSelector = 9
	OsImageProfile_FieldPathSelectorHttpsProxy           OsImageProfile_FieldPathSelector = 10
	OsImageProfile_FieldPathSelectorNoProxy              OsImageProfile_FieldPathSelector = 11
)

func (OsImageProfile_FieldPathSelector) String

type OsImageProfile_FieldPathValue

type OsImageProfile_FieldPathValue interface {
	OsImageProfile_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **OsImageProfile)
	CompareWith(*OsImageProfile) (cmp int, comparable bool)
}

OsImageProfile_FieldPathValue allows storing values for OsImageProfile fields according to their type

func MustParseOsImageProfile_FieldPathValue

func MustParseOsImageProfile_FieldPathValue(pathStr, valueStr string) OsImageProfile_FieldPathValue

func ParseOsImageProfile_FieldPathValue

func ParseOsImageProfile_FieldPathValue(pathStr, valueStr string) (OsImageProfile_FieldPathValue, error)

type OsImageProfile_FieldSubPath

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

func (*OsImageProfile_FieldSubPath) AsMetadataSubPath

func (fps *OsImageProfile_FieldSubPath) AsMetadataSubPath() (meta.Meta_FieldPath, bool)

func (*OsImageProfile_FieldSubPath) ClearValue

func (fps *OsImageProfile_FieldSubPath) ClearValue(item *OsImageProfile)

func (*OsImageProfile_FieldSubPath) ClearValueRaw

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

func (*OsImageProfile_FieldSubPath) Get

func (fps *OsImageProfile_FieldSubPath) Get(source *OsImageProfile) (values []interface{})

Get returns all values pointed by selected field from source OsImageProfile

func (*OsImageProfile_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*OsImageProfile_FieldSubPath) GetRaw

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

func (*OsImageProfile_FieldSubPath) GetSingle

func (fps *OsImageProfile_FieldSubPath) GetSingle(source *OsImageProfile) (interface{}, bool)

GetSingle returns value of selected field from source OsImageProfile

func (*OsImageProfile_FieldSubPath) GetSingleRaw

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

func (*OsImageProfile_FieldSubPath) IsLeaf

func (fps *OsImageProfile_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*OsImageProfile_FieldSubPath) JSONString

func (fps *OsImageProfile_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*OsImageProfile_FieldSubPath) Selector

func (*OsImageProfile_FieldSubPath) SplitIntoTerminalIPaths

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

func (*OsImageProfile_FieldSubPath) String

func (fps *OsImageProfile_FieldSubPath) String() string

String returns path representation in proto convention

func (*OsImageProfile_FieldSubPath) WithIArrayItemValue

func (fps *OsImageProfile_FieldSubPath) WithIArrayItemValue(value interface{}) OsImageProfile_FieldPathArrayItemValue

func (*OsImageProfile_FieldSubPath) WithIArrayOfValues

func (fps *OsImageProfile_FieldSubPath) WithIArrayOfValues(values interface{}) OsImageProfile_FieldPathArrayOfValues

func (*OsImageProfile_FieldSubPath) WithIValue

func (fps *OsImageProfile_FieldSubPath) WithIValue(value interface{}) OsImageProfile_FieldPathValue

func (*OsImageProfile_FieldSubPath) WithRawIArrayItemValue

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

func (*OsImageProfile_FieldSubPath) WithRawIArrayOfValues

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

func (*OsImageProfile_FieldSubPath) WithRawIValue

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

type OsImageProfile_FieldSubPathArrayItemValue

type OsImageProfile_FieldSubPathArrayItemValue struct {
	OsImageProfile_FieldPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*OsImageProfile_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *OsImageProfile_FieldSubPathArrayItemValue) ContainsValue(source *OsImageProfile) bool

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

func (*OsImageProfile_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type OsImageProfile_FieldSubPathArrayOfValues

type OsImageProfile_FieldSubPathArrayOfValues struct {
	OsImageProfile_FieldPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (fpsaov *OsImageProfile_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (meta.Meta_FieldPathArrayOfValues, bool)

func (*OsImageProfile_FieldSubPathArrayOfValues) GetRawValues

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

type OsImageProfile_FieldSubPathValue

type OsImageProfile_FieldSubPathValue struct {
	OsImageProfile_FieldPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldSubPathValue) AsMetadataPathValue

func (fpvs *OsImageProfile_FieldSubPathValue) AsMetadataPathValue() (meta.Meta_FieldPathValue, bool)

func (*OsImageProfile_FieldSubPathValue) CompareWith

func (fpvs *OsImageProfile_FieldSubPathValue) CompareWith(source *OsImageProfile) (int, bool)

func (*OsImageProfile_FieldSubPathValue) CompareWithRaw

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

func (*OsImageProfile_FieldSubPathValue) GetRawValue

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

func (*OsImageProfile_FieldSubPathValue) SetTo

func (fpvs *OsImageProfile_FieldSubPathValue) SetTo(target **OsImageProfile)

func (*OsImageProfile_FieldSubPathValue) SetToRaw

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

type OsImageProfile_FieldTerminalPath

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

func (*OsImageProfile_FieldTerminalPath) ClearValue

func (fp *OsImageProfile_FieldTerminalPath) ClearValue(item *OsImageProfile)

func (*OsImageProfile_FieldTerminalPath) ClearValueRaw

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

func (*OsImageProfile_FieldTerminalPath) Get

func (fp *OsImageProfile_FieldTerminalPath) Get(source *OsImageProfile) (values []interface{})

Get returns all values pointed by specific field from source OsImageProfile

func (*OsImageProfile_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*OsImageProfile_FieldTerminalPath) GetRaw

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

func (*OsImageProfile_FieldTerminalPath) GetSingle

func (fp *OsImageProfile_FieldTerminalPath) GetSingle(source *OsImageProfile) (interface{}, bool)

GetSingle returns value pointed by specific field of from source OsImageProfile

func (*OsImageProfile_FieldTerminalPath) GetSingleRaw

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

func (*OsImageProfile_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*OsImageProfile_FieldTerminalPath) JSONString

func (fp *OsImageProfile_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*OsImageProfile_FieldTerminalPath) Selector

func (*OsImageProfile_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*OsImageProfile_FieldTerminalPath) String

String returns path representation in proto convention

func (*OsImageProfile_FieldTerminalPath) WithIArrayItemValue

func (fp *OsImageProfile_FieldTerminalPath) WithIArrayItemValue(value interface{}) OsImageProfile_FieldPathArrayItemValue

func (*OsImageProfile_FieldTerminalPath) WithIArrayOfValues

func (fp *OsImageProfile_FieldTerminalPath) WithIArrayOfValues(values interface{}) OsImageProfile_FieldPathArrayOfValues

func (*OsImageProfile_FieldTerminalPath) WithIValue

func (fp *OsImageProfile_FieldTerminalPath) WithIValue(value interface{}) OsImageProfile_FieldPathValue

func (*OsImageProfile_FieldTerminalPath) WithRawIArrayItemValue

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

func (*OsImageProfile_FieldTerminalPath) WithRawIArrayOfValues

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

func (*OsImageProfile_FieldTerminalPath) WithRawIValue

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

type OsImageProfile_FieldTerminalPathArrayItemValue

type OsImageProfile_FieldTerminalPathArrayItemValue struct {
	OsImageProfile_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*OsImageProfile_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*OsImageProfile_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *OsImageProfile_FieldTerminalPathArrayItemValue) GetSingle(source *OsImageProfile) (interface{}, bool)

func (*OsImageProfile_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type OsImageProfile_FieldTerminalPathArrayOfValues

type OsImageProfile_FieldTerminalPathArrayOfValues struct {
	OsImageProfile_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsDeviceTypeArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsDeviceTypeArrayOfValues() ([]*device_type.Reference, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsDiskMappingArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsDiskMappingArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

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

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsEncryptionArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsEncryptionArrayOfValues() ([]bool, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsHttpProxyArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsHttpProxyArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsHttpsProxyArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsHttpsProxyArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsInstallAiAcceleratorArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsInstallAiAcceleratorArrayOfValues() ([]bool, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*meta.Meta, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsNetworkAgentArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsNetworkAgentArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsNoProxyArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsNoProxyArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) AsNtpArrayOfValues

func (fpaov *OsImageProfile_FieldTerminalPathArrayOfValues) AsNtpArrayOfValues() ([]string, bool)

func (*OsImageProfile_FieldTerminalPathArrayOfValues) GetRawValues

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

type OsImageProfile_FieldTerminalPathValue

type OsImageProfile_FieldTerminalPathValue struct {
	OsImageProfile_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*OsImageProfile_FieldTerminalPathValue) AsDeviceTypeValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsDeviceTypeValue() (*device_type.Reference, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsDiskMappingValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsDiskMappingValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsDisplayNameValue

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

func (*OsImageProfile_FieldTerminalPathValue) AsEncryptionValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsEncryptionValue() (bool, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsHttpProxyValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsHttpProxyValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsHttpsProxyValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsHttpsProxyValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsInstallAiAcceleratorValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsInstallAiAcceleratorValue() (bool, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsMetadataValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsMetadataValue() (*meta.Meta, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsNameValue

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

func (*OsImageProfile_FieldTerminalPathValue) AsNetworkAgentValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsNetworkAgentValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsNoProxyValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsNoProxyValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) AsNtpValue

func (fpv *OsImageProfile_FieldTerminalPathValue) AsNtpValue() (string, bool)

func (*OsImageProfile_FieldTerminalPathValue) CompareWith

func (fpv *OsImageProfile_FieldTerminalPathValue) CompareWith(source *OsImageProfile) (int, bool)

CompareWith compares value in the 'OsImageProfile_FieldTerminalPathValue' with the value under path in 'OsImageProfile'.

func (*OsImageProfile_FieldTerminalPathValue) CompareWithRaw

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

func (*OsImageProfile_FieldTerminalPathValue) GetRawValue

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

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

func (*OsImageProfile_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object OsImageProfile

func (*OsImageProfile_FieldTerminalPathValue) SetToRaw

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

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 ParentName

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

func MustParseParentName

func MustParseParentName(name string) *ParentName

func ParseParentName

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

func (*ParentName) AsRawReference

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

func (*ParentName) AsReference

func (name *ParentName) AsReference() *ParentReference

func (*ParentName) ConvertToNative added in v1.0.21

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

func (*ParentName) ConvertToType added in v1.0.21

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

func (*ParentName) DescendsFrom

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

func (*ParentName) Equal added in v1.0.21

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

func (*ParentName) FullyQualifiedName

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

func (*ParentName) GetIParentName

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

func (*ParentName) GetIUnderlyingParentName

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) HasTrait added in v1.0.21

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

func (*ParentName) IsFullyQualified

func (name *ParentName) IsFullyQualified() bool

func (*ParentName) IsSpecified

func (name *ParentName) IsSpecified() bool

func (*ParentName) Match added in v1.0.21

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

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) Receive added in v1.0.21

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

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

func (*ParentName) Type added in v1.0.21

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

func (*ParentName) TypeName added in v1.0.21

func (name *ParentName) TypeName() string

func (*ParentName) Value added in v1.0.21

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

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

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

func (*ParentReference) GetIUnderlyingParentName

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

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

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

type QueryResultChange

type QueryResultChange struct {
	Changes        []*OsImageProfileChange
	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 {
	OsImageProfiles   []*OsImageProfile
	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, osImageProfile *OsImageProfile) (*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

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

func (ref *Reference) GetOsImageProfile() *OsImageProfile

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

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