customized_image

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Project_Region = "projects/{project}/regions/{region}/customizedImages/{customized_image}"
)

Variables

View Source
var (
	CustomizedImage_Status_State_name = map[int32]string{
		0: "STATE_UNSPECIFIED",
		1: "IN_PROGRESS",
		2: "ERROR",
		3: "READY",
	}

	CustomizedImage_Status_State_value = map[string]int32{
		"STATE_UNSPECIFIED": 0,
		"IN_PROGRESS":       1,
		"ERROR":             2,
		"READY":             3,
	}
)

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access CustomizedImageAccess) gotenresource.Access

Types

type CustomizedImage

type CustomizedImage struct {

	// Name of CustomizedImage
	// 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 of CustomizedImage
	Metadata *meta.Meta              `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	Spec     *CustomizedImage_Spec   `protobuf:"bytes,3,opt,name=spec,proto3" json:"spec,omitempty" firestore:"spec"`
	Status   *CustomizedImage_Status `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty" firestore:"status"`
	// contains filtered or unexported fields
}

CustomizedImage Resource

func (*CustomizedImage) Clone

func (o *CustomizedImage) Clone() *CustomizedImage

func (*CustomizedImage) CloneRaw

func (*CustomizedImage) Descriptor

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

Deprecated, Use CustomizedImage.ProtoReflect.Descriptor instead.

func (*CustomizedImage) EnsureMetadata added in v1.0.21

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

func (*CustomizedImage) GetMetadata

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

func (*CustomizedImage) GetName

func (m *CustomizedImage) GetName() *Name

func (*CustomizedImage) GetRawName

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

func (*CustomizedImage) GetResourceDescriptor

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

func (*CustomizedImage) GetSpec

func (m *CustomizedImage) GetSpec() *CustomizedImage_Spec

func (*CustomizedImage) GetStatus

func (m *CustomizedImage) GetStatus() *CustomizedImage_Status

func (*CustomizedImage) GotenMessage

func (*CustomizedImage) GotenMessage()

func (*CustomizedImage) GotenObjectExt

func (o *CustomizedImage) GotenObjectExt()

func (*CustomizedImage) GotenValidate

func (obj *CustomizedImage) GotenValidate() error

func (*CustomizedImage) MakeDiffFieldMask

func (o *CustomizedImage) MakeDiffFieldMask(other *CustomizedImage) *CustomizedImage_FieldMask

func (*CustomizedImage) MakeFullFieldMask

func (o *CustomizedImage) MakeFullFieldMask() *CustomizedImage_FieldMask

func (*CustomizedImage) MakeRawDiffFieldMask

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

func (*CustomizedImage) MakeRawFullFieldMask

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

func (*CustomizedImage) Marshal

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

func (*CustomizedImage) MarshalJSON

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

func (*CustomizedImage) MaybePopulateDefaults

func (r *CustomizedImage) MaybePopulateDefaults() error

func (*CustomizedImage) Merge

func (o *CustomizedImage) Merge(source *CustomizedImage)

func (*CustomizedImage) MergeRaw

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

func (*CustomizedImage) ProtoMessage

func (*CustomizedImage) ProtoMessage()

func (*CustomizedImage) ProtoReflect

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

func (*CustomizedImage) Reset

func (m *CustomizedImage) Reset()

func (*CustomizedImage) SetMetadata

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

func (*CustomizedImage) SetName

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

func (*CustomizedImage) SetSpec

func (m *CustomizedImage) SetSpec(fv *CustomizedImage_Spec)

func (*CustomizedImage) SetStatus

func (m *CustomizedImage) SetStatus(fv *CustomizedImage_Status)

func (*CustomizedImage) String

func (m *CustomizedImage) String() string

func (*CustomizedImage) Unmarshal

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

func (*CustomizedImage) UnmarshalJSON

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

type CustomizedImageAccess

type CustomizedImageAccess interface {
	GetCustomizedImage(context.Context, *GetQuery) (*CustomizedImage, error)
	BatchGetCustomizedImages(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryCustomizedImages(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchCustomizedImage(context.Context, *GetQuery, func(*CustomizedImageChange) error) error
	WatchCustomizedImages(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveCustomizedImage(context.Context, *CustomizedImage, ...gotenresource.SaveOption) error
	DeleteCustomizedImage(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type CustomizedImageChange

type CustomizedImageChange struct {

	// CustomizedImage change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*CustomizedImageChange_Added_
	//	*CustomizedImageChange_Modified_
	//	*CustomizedImageChange_Current_
	//	*CustomizedImageChange_Removed_
	ChangeType isCustomizedImageChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*CustomizedImageChange) Descriptor

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

Deprecated, Use CustomizedImageChange.ProtoReflect.Descriptor instead.

func (*CustomizedImageChange) GetAdded

func (*CustomizedImageChange) GetChangeType

func (m *CustomizedImageChange) GetChangeType() isCustomizedImageChange_ChangeType

func (*CustomizedImageChange) GetCurrent

func (*CustomizedImageChange) GetCurrentViewIndex

func (c *CustomizedImageChange) GetCurrentViewIndex() int32

func (*CustomizedImageChange) GetCustomizedImage

func (c *CustomizedImageChange) GetCustomizedImage() *CustomizedImage

func (*CustomizedImageChange) GetCustomizedImageName

func (c *CustomizedImageChange) GetCustomizedImageName() *Name

func (*CustomizedImageChange) GetModified

func (*CustomizedImageChange) GetPreviousViewIndex

func (c *CustomizedImageChange) GetPreviousViewIndex() int32

func (*CustomizedImageChange) GetRawName

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

func (*CustomizedImageChange) GetRawResource

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

func (*CustomizedImageChange) GetRemoved

func (*CustomizedImageChange) GotenMessage

func (*CustomizedImageChange) GotenMessage()

func (*CustomizedImageChange) GotenValidate

func (obj *CustomizedImageChange) GotenValidate() error

func (*CustomizedImageChange) IsAdd

func (c *CustomizedImageChange) IsAdd() bool

func (*CustomizedImageChange) IsCurrent

func (c *CustomizedImageChange) IsCurrent() bool

func (*CustomizedImageChange) IsDelete

func (c *CustomizedImageChange) IsDelete() bool

func (*CustomizedImageChange) IsModify

func (c *CustomizedImageChange) IsModify() bool

func (*CustomizedImageChange) Marshal

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

func (*CustomizedImageChange) MarshalJSON

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

func (*CustomizedImageChange) ProtoMessage

func (*CustomizedImageChange) ProtoMessage()

func (*CustomizedImageChange) ProtoReflect

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

func (*CustomizedImageChange) Reset

func (m *CustomizedImageChange) Reset()

func (*CustomizedImageChange) SetAdded

func (*CustomizedImageChange) SetAddedRaw

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

func (*CustomizedImageChange) SetChangeType

func (m *CustomizedImageChange) SetChangeType(ofv isCustomizedImageChange_ChangeType)

func (*CustomizedImageChange) SetCurrent

func (*CustomizedImageChange) SetCurrentRaw

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

func (*CustomizedImageChange) SetDeletedRaw

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

func (*CustomizedImageChange) SetModified

func (*CustomizedImageChange) SetModifiedRaw

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

func (*CustomizedImageChange) SetRemoved

func (*CustomizedImageChange) String

func (m *CustomizedImageChange) String() string

func (*CustomizedImageChange) Unmarshal

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

func (*CustomizedImageChange) UnmarshalJSON

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

type CustomizedImageChangeList

type CustomizedImageChangeList []*CustomizedImageChange

func (CustomizedImageChangeList) Append

func (CustomizedImageChangeList) AppendList

func (CustomizedImageChangeList) At

func (CustomizedImageChangeList) Length

func (l CustomizedImageChangeList) Length() int

func (CustomizedImageChangeList) Set

func (CustomizedImageChangeList) Slice

type CustomizedImageChangeMap

type CustomizedImageChangeMap map[Name]*CustomizedImageChange

func (CustomizedImageChangeMap) Delete

func (CustomizedImageChangeMap) ForEach

func (CustomizedImageChangeMap) Get

func (CustomizedImageChangeMap) Length

func (m CustomizedImageChangeMap) Length() int

func (CustomizedImageChangeMap) Set

type CustomizedImageChange_Added

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

CustomizedImage has been added to query view

func (*CustomizedImageChange_Added) Descriptor

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

Deprecated, Use CustomizedImageChange_Added.ProtoReflect.Descriptor instead.

func (*CustomizedImageChange_Added) GetCustomizedImage

func (m *CustomizedImageChange_Added) GetCustomizedImage() *CustomizedImage

func (*CustomizedImageChange_Added) GetViewIndex

func (m *CustomizedImageChange_Added) GetViewIndex() int32

func (*CustomizedImageChange_Added) GotenMessage

func (*CustomizedImageChange_Added) GotenMessage()

func (*CustomizedImageChange_Added) GotenValidate

func (obj *CustomizedImageChange_Added) GotenValidate() error

func (*CustomizedImageChange_Added) Marshal

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

func (*CustomizedImageChange_Added) MarshalJSON

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

func (*CustomizedImageChange_Added) ProtoMessage

func (*CustomizedImageChange_Added) ProtoMessage()

func (*CustomizedImageChange_Added) ProtoReflect

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

func (*CustomizedImageChange_Added) Reset

func (m *CustomizedImageChange_Added) Reset()

func (*CustomizedImageChange_Added) SetCustomizedImage

func (m *CustomizedImageChange_Added) SetCustomizedImage(fv *CustomizedImage)

func (*CustomizedImageChange_Added) SetViewIndex

func (m *CustomizedImageChange_Added) SetViewIndex(fv int32)

func (*CustomizedImageChange_Added) String

func (m *CustomizedImageChange_Added) String() string

func (*CustomizedImageChange_Added) Unmarshal

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

func (*CustomizedImageChange_Added) UnmarshalJSON

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

type CustomizedImageChange_Added_

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

type CustomizedImageChange_Current

type CustomizedImageChange_Current struct {
	CustomizedImage *CustomizedImage `` /* 134-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*CustomizedImageChange_Current) Descriptor

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

Deprecated, Use CustomizedImageChange_Current.ProtoReflect.Descriptor instead.

func (*CustomizedImageChange_Current) GetCustomizedImage

func (m *CustomizedImageChange_Current) GetCustomizedImage() *CustomizedImage

func (*CustomizedImageChange_Current) GotenMessage

func (*CustomizedImageChange_Current) GotenMessage()

func (*CustomizedImageChange_Current) GotenValidate

func (obj *CustomizedImageChange_Current) GotenValidate() error

func (*CustomizedImageChange_Current) Marshal

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

func (*CustomizedImageChange_Current) MarshalJSON

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

func (*CustomizedImageChange_Current) ProtoMessage

func (*CustomizedImageChange_Current) ProtoMessage()

func (*CustomizedImageChange_Current) ProtoReflect

func (*CustomizedImageChange_Current) Reset

func (m *CustomizedImageChange_Current) Reset()

func (*CustomizedImageChange_Current) SetCustomizedImage

func (m *CustomizedImageChange_Current) SetCustomizedImage(fv *CustomizedImage)

func (*CustomizedImageChange_Current) String

func (*CustomizedImageChange_Current) Unmarshal

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

func (*CustomizedImageChange_Current) UnmarshalJSON

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

type CustomizedImageChange_Current_

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

type CustomizedImageChange_Modified

type CustomizedImageChange_Modified struct {

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

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

func (*CustomizedImageChange_Modified) Descriptor

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

Deprecated, Use CustomizedImageChange_Modified.ProtoReflect.Descriptor instead.

func (*CustomizedImageChange_Modified) GetCustomizedImage

func (m *CustomizedImageChange_Modified) GetCustomizedImage() *CustomizedImage

func (*CustomizedImageChange_Modified) GetFieldMask

func (*CustomizedImageChange_Modified) GetName

func (m *CustomizedImageChange_Modified) GetName() *Name

func (*CustomizedImageChange_Modified) GetPreviousViewIndex

func (m *CustomizedImageChange_Modified) GetPreviousViewIndex() int32

func (*CustomizedImageChange_Modified) GetViewIndex

func (m *CustomizedImageChange_Modified) GetViewIndex() int32

func (*CustomizedImageChange_Modified) GotenMessage

func (*CustomizedImageChange_Modified) GotenMessage()

func (*CustomizedImageChange_Modified) GotenValidate

func (obj *CustomizedImageChange_Modified) GotenValidate() error

func (*CustomizedImageChange_Modified) Marshal

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

func (*CustomizedImageChange_Modified) MarshalJSON

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

func (*CustomizedImageChange_Modified) ProtoMessage

func (*CustomizedImageChange_Modified) ProtoMessage()

func (*CustomizedImageChange_Modified) ProtoReflect

func (*CustomizedImageChange_Modified) Reset

func (m *CustomizedImageChange_Modified) Reset()

func (*CustomizedImageChange_Modified) SetCustomizedImage

func (m *CustomizedImageChange_Modified) SetCustomizedImage(fv *CustomizedImage)

func (*CustomizedImageChange_Modified) SetFieldMask

func (*CustomizedImageChange_Modified) SetName

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

func (*CustomizedImageChange_Modified) SetPreviousViewIndex

func (m *CustomizedImageChange_Modified) SetPreviousViewIndex(fv int32)

func (*CustomizedImageChange_Modified) SetViewIndex

func (m *CustomizedImageChange_Modified) SetViewIndex(fv int32)

func (*CustomizedImageChange_Modified) String

func (*CustomizedImageChange_Modified) Unmarshal

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

func (*CustomizedImageChange_Modified) UnmarshalJSON

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

type CustomizedImageChange_Modified_

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

type CustomizedImageChange_Removed

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

func (*CustomizedImageChange_Removed) Descriptor

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

Deprecated, Use CustomizedImageChange_Removed.ProtoReflect.Descriptor instead.

func (*CustomizedImageChange_Removed) GetName

func (m *CustomizedImageChange_Removed) GetName() *Name

func (*CustomizedImageChange_Removed) GetViewIndex

func (m *CustomizedImageChange_Removed) GetViewIndex() int32

func (*CustomizedImageChange_Removed) GotenMessage

func (*CustomizedImageChange_Removed) GotenMessage()

func (*CustomizedImageChange_Removed) GotenValidate

func (obj *CustomizedImageChange_Removed) GotenValidate() error

func (*CustomizedImageChange_Removed) Marshal

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

func (*CustomizedImageChange_Removed) MarshalJSON

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

func (*CustomizedImageChange_Removed) ProtoMessage

func (*CustomizedImageChange_Removed) ProtoMessage()

func (*CustomizedImageChange_Removed) ProtoReflect

func (*CustomizedImageChange_Removed) Reset

func (m *CustomizedImageChange_Removed) Reset()

func (*CustomizedImageChange_Removed) SetName

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

func (*CustomizedImageChange_Removed) SetViewIndex

func (m *CustomizedImageChange_Removed) SetViewIndex(fv int32)

func (*CustomizedImageChange_Removed) String

func (*CustomizedImageChange_Removed) Unmarshal

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

func (*CustomizedImageChange_Removed) UnmarshalJSON

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

type CustomizedImageChange_Removed_

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

type CustomizedImageFieldPathBuilder

type CustomizedImageFieldPathBuilder struct{}

func NewCustomizedImageFieldPathBuilder

func NewCustomizedImageFieldPathBuilder() CustomizedImageFieldPathBuilder

func (CustomizedImageFieldPathBuilder) Metadata

func (CustomizedImageFieldPathBuilder) Name

func (CustomizedImageFieldPathBuilder) Spec

func (CustomizedImageFieldPathBuilder) Status

type CustomizedImageList

type CustomizedImageList []*CustomizedImage

func (CustomizedImageList) Append

func (CustomizedImageList) AppendList

func (CustomizedImageList) At

func (CustomizedImageList) Length

func (l CustomizedImageList) Length() int

func (CustomizedImageList) Set

func (CustomizedImageList) Slice

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

type CustomizedImageMap

type CustomizedImageMap map[Name]*CustomizedImage

func (CustomizedImageMap) Delete

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

func (CustomizedImageMap) ForEach

func (CustomizedImageMap) Get

func (CustomizedImageMap) Length

func (m CustomizedImageMap) Length() int

func (CustomizedImageMap) Set

type CustomizedImageMapPathSelectorMetadataAnnotations

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

func (CustomizedImageMapPathSelectorMetadataAnnotations) FieldPath

func (CustomizedImageMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (CustomizedImageMapPathSelectorMetadataAnnotations) WithValue

type CustomizedImageMapPathSelectorMetadataLabels

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

func (CustomizedImageMapPathSelectorMetadataLabels) FieldPath

func (CustomizedImageMapPathSelectorMetadataLabels) WithArrayOfValues

func (CustomizedImageMapPathSelectorMetadataLabels) WithValue

type CustomizedImageMapPathSelectorMetadataShards

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

func (CustomizedImageMapPathSelectorMetadataShards) FieldPath

func (CustomizedImageMapPathSelectorMetadataShards) WithArrayOfValues

func (CustomizedImageMapPathSelectorMetadataShards) WithValue

type CustomizedImageNameList

type CustomizedImageNameList []*Name

func (CustomizedImageNameList) Append

func (CustomizedImageNameList) AppendList

func (CustomizedImageNameList) At

func (CustomizedImageNameList) Length

func (l CustomizedImageNameList) Length() int

func (CustomizedImageNameList) Set

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

func (CustomizedImageNameList) Slice

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

type CustomizedImageParentNameList

type CustomizedImageParentNameList []*ParentName

func (CustomizedImageParentNameList) Append

func (CustomizedImageParentNameList) AppendList

func (CustomizedImageParentNameList) At

func (CustomizedImageParentNameList) Length

func (CustomizedImageParentNameList) Set

func (CustomizedImageParentNameList) Slice

type CustomizedImageParentReferenceList

type CustomizedImageParentReferenceList []*ParentReference

func (CustomizedImageParentReferenceList) Append

func (CustomizedImageParentReferenceList) AppendList

func (CustomizedImageParentReferenceList) At

func (CustomizedImageParentReferenceList) Length

func (CustomizedImageParentReferenceList) Set

func (CustomizedImageParentReferenceList) Slice

type CustomizedImagePathSelectorMetadata

type CustomizedImagePathSelectorMetadata struct{}

func (CustomizedImagePathSelectorMetadata) Annotations

func (CustomizedImagePathSelectorMetadata) CreateTime

func (CustomizedImagePathSelectorMetadata) DeleteTime

func (CustomizedImagePathSelectorMetadata) FieldPath

func (CustomizedImagePathSelectorMetadata) Generation

func (CustomizedImagePathSelectorMetadata) Labels

func (CustomizedImagePathSelectorMetadata) Lifecycle

func (CustomizedImagePathSelectorMetadata) OwnerReferences

func (CustomizedImagePathSelectorMetadata) ResourceVersion

func (CustomizedImagePathSelectorMetadata) Services added in v1.0.21

func (CustomizedImagePathSelectorMetadata) Shards

func (CustomizedImagePathSelectorMetadata) Syncing

func (CustomizedImagePathSelectorMetadata) Tags

func (CustomizedImagePathSelectorMetadata) UpdateTime

func (CustomizedImagePathSelectorMetadata) Uuid

func (CustomizedImagePathSelectorMetadata) WithArrayOfValues

func (CustomizedImagePathSelectorMetadata) WithSubArrayItemValue

func (CustomizedImagePathSelectorMetadata) WithSubArrayOfValues

func (CustomizedImagePathSelectorMetadata) WithSubPath

func (CustomizedImagePathSelectorMetadata) WithSubValue

func (CustomizedImagePathSelectorMetadata) WithValue

type CustomizedImagePathSelectorMetadataAnnotations

type CustomizedImagePathSelectorMetadataAnnotations struct{}

func (CustomizedImagePathSelectorMetadataAnnotations) FieldPath

func (CustomizedImagePathSelectorMetadataAnnotations) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataAnnotations) WithKey

func (CustomizedImagePathSelectorMetadataAnnotations) WithValue

type CustomizedImagePathSelectorMetadataCreateTime

type CustomizedImagePathSelectorMetadataCreateTime struct{}

func (CustomizedImagePathSelectorMetadataCreateTime) FieldPath

func (CustomizedImagePathSelectorMetadataCreateTime) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataCreateTime) WithValue

type CustomizedImagePathSelectorMetadataDeleteTime

type CustomizedImagePathSelectorMetadataDeleteTime struct{}

func (CustomizedImagePathSelectorMetadataDeleteTime) FieldPath

func (CustomizedImagePathSelectorMetadataDeleteTime) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataDeleteTime) WithValue

type CustomizedImagePathSelectorMetadataGeneration

type CustomizedImagePathSelectorMetadataGeneration struct{}

func (CustomizedImagePathSelectorMetadataGeneration) FieldPath

func (CustomizedImagePathSelectorMetadataGeneration) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataGeneration) WithValue

type CustomizedImagePathSelectorMetadataLabels

type CustomizedImagePathSelectorMetadataLabels struct{}

func (CustomizedImagePathSelectorMetadataLabels) FieldPath

func (CustomizedImagePathSelectorMetadataLabels) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataLabels) WithKey

func (CustomizedImagePathSelectorMetadataLabels) WithValue

type CustomizedImagePathSelectorMetadataLifecycle

type CustomizedImagePathSelectorMetadataLifecycle struct{}

func (CustomizedImagePathSelectorMetadataLifecycle) BlockDeletion

func (CustomizedImagePathSelectorMetadataLifecycle) FieldPath

func (CustomizedImagePathSelectorMetadataLifecycle) State

func (CustomizedImagePathSelectorMetadataLifecycle) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataLifecycle) WithValue

type CustomizedImagePathSelectorMetadataLifecycleBlockDeletion

type CustomizedImagePathSelectorMetadataLifecycleBlockDeletion struct{}

func (CustomizedImagePathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (CustomizedImagePathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataLifecycleBlockDeletion) WithValue

type CustomizedImagePathSelectorMetadataLifecycleState

type CustomizedImagePathSelectorMetadataLifecycleState struct{}

func (CustomizedImagePathSelectorMetadataLifecycleState) FieldPath

func (CustomizedImagePathSelectorMetadataLifecycleState) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataLifecycleState) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferences

type CustomizedImagePathSelectorMetadataOwnerReferences struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferences) Controller

func (CustomizedImagePathSelectorMetadataOwnerReferences) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferences) Kind

func (CustomizedImagePathSelectorMetadataOwnerReferences) Name

func (CustomizedImagePathSelectorMetadataOwnerReferences) Region

func (CustomizedImagePathSelectorMetadataOwnerReferences) Version

func (CustomizedImagePathSelectorMetadataOwnerReferences) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferences) WithItemValue

func (CustomizedImagePathSelectorMetadataOwnerReferences) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesController

type CustomizedImagePathSelectorMetadataOwnerReferencesController struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesController) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesController) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesKind

type CustomizedImagePathSelectorMetadataOwnerReferencesKind struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesKind) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesKind) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesName

type CustomizedImagePathSelectorMetadataOwnerReferencesName struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesName) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesName) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesRegion

type CustomizedImagePathSelectorMetadataOwnerReferencesRegion struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesRegion) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesRegion) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesRequiresOwnerReference

type CustomizedImagePathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type CustomizedImagePathSelectorMetadataOwnerReferencesVersion

type CustomizedImagePathSelectorMetadataOwnerReferencesVersion struct{}

func (CustomizedImagePathSelectorMetadataOwnerReferencesVersion) FieldPath

func (CustomizedImagePathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataOwnerReferencesVersion) WithValue

type CustomizedImagePathSelectorMetadataResourceVersion

type CustomizedImagePathSelectorMetadataResourceVersion struct{}

func (CustomizedImagePathSelectorMetadataResourceVersion) FieldPath

func (CustomizedImagePathSelectorMetadataResourceVersion) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataResourceVersion) WithValue

type CustomizedImagePathSelectorMetadataServices added in v1.0.21

type CustomizedImagePathSelectorMetadataServices struct{}

func (CustomizedImagePathSelectorMetadataServices) AllowedServices added in v1.0.21

func (CustomizedImagePathSelectorMetadataServices) FieldPath added in v1.0.21

func (CustomizedImagePathSelectorMetadataServices) OwningService added in v1.0.21

func (CustomizedImagePathSelectorMetadataServices) WithArrayOfValues added in v1.0.21

func (CustomizedImagePathSelectorMetadataServices) WithValue added in v1.0.21

type CustomizedImagePathSelectorMetadataServicesAllowedServices added in v1.0.21

type CustomizedImagePathSelectorMetadataServicesAllowedServices struct{}

func (CustomizedImagePathSelectorMetadataServicesAllowedServices) FieldPath added in v1.0.21

func (CustomizedImagePathSelectorMetadataServicesAllowedServices) WithArrayOfValues added in v1.0.21

func (CustomizedImagePathSelectorMetadataServicesAllowedServices) WithItemValue added in v1.0.21

func (CustomizedImagePathSelectorMetadataServicesAllowedServices) WithValue added in v1.0.21

type CustomizedImagePathSelectorMetadataServicesOwningService added in v1.0.21

type CustomizedImagePathSelectorMetadataServicesOwningService struct{}

func (CustomizedImagePathSelectorMetadataServicesOwningService) FieldPath added in v1.0.21

func (CustomizedImagePathSelectorMetadataServicesOwningService) WithArrayOfValues added in v1.0.21

func (CustomizedImagePathSelectorMetadataServicesOwningService) WithValue added in v1.0.21

type CustomizedImagePathSelectorMetadataShards

type CustomizedImagePathSelectorMetadataShards struct{}

func (CustomizedImagePathSelectorMetadataShards) FieldPath

func (CustomizedImagePathSelectorMetadataShards) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataShards) WithKey

func (CustomizedImagePathSelectorMetadataShards) WithValue

type CustomizedImagePathSelectorMetadataSyncing

type CustomizedImagePathSelectorMetadataSyncing struct{}

func (CustomizedImagePathSelectorMetadataSyncing) FieldPath

func (CustomizedImagePathSelectorMetadataSyncing) OwningRegion

func (CustomizedImagePathSelectorMetadataSyncing) Regions

func (CustomizedImagePathSelectorMetadataSyncing) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataSyncing) WithValue

type CustomizedImagePathSelectorMetadataSyncingOwningRegion

type CustomizedImagePathSelectorMetadataSyncingOwningRegion struct{}

func (CustomizedImagePathSelectorMetadataSyncingOwningRegion) FieldPath

func (CustomizedImagePathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataSyncingOwningRegion) WithValue

type CustomizedImagePathSelectorMetadataSyncingRegions

type CustomizedImagePathSelectorMetadataSyncingRegions struct{}

func (CustomizedImagePathSelectorMetadataSyncingRegions) FieldPath

func (CustomizedImagePathSelectorMetadataSyncingRegions) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataSyncingRegions) WithItemValue

func (CustomizedImagePathSelectorMetadataSyncingRegions) WithValue

type CustomizedImagePathSelectorMetadataTags

type CustomizedImagePathSelectorMetadataTags struct{}

func (CustomizedImagePathSelectorMetadataTags) FieldPath

func (CustomizedImagePathSelectorMetadataTags) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataTags) WithItemValue

func (CustomizedImagePathSelectorMetadataTags) WithValue

type CustomizedImagePathSelectorMetadataUpdateTime

type CustomizedImagePathSelectorMetadataUpdateTime struct{}

func (CustomizedImagePathSelectorMetadataUpdateTime) FieldPath

func (CustomizedImagePathSelectorMetadataUpdateTime) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataUpdateTime) WithValue

type CustomizedImagePathSelectorMetadataUuid

type CustomizedImagePathSelectorMetadataUuid struct{}

func (CustomizedImagePathSelectorMetadataUuid) FieldPath

func (CustomizedImagePathSelectorMetadataUuid) WithArrayOfValues

func (CustomizedImagePathSelectorMetadataUuid) WithValue

type CustomizedImagePathSelectorName

type CustomizedImagePathSelectorName struct{}

func (CustomizedImagePathSelectorName) FieldPath

func (CustomizedImagePathSelectorName) WithArrayOfValues

func (CustomizedImagePathSelectorName) WithValue

type CustomizedImagePathSelectorSpec

type CustomizedImagePathSelectorSpec struct{}

func (CustomizedImagePathSelectorSpec) DeviceType

func (CustomizedImagePathSelectorSpec) DiskMapping

func (CustomizedImagePathSelectorSpec) Encryption

func (CustomizedImagePathSelectorSpec) EncryptionPassword

func (CustomizedImagePathSelectorSpec) FieldPath

func (CustomizedImagePathSelectorSpec) HttpProxy

func (CustomizedImagePathSelectorSpec) HttpsProxy

func (CustomizedImagePathSelectorSpec) InstallAiAccelerator

func (CustomizedImagePathSelectorSpec) NetworkAgent

func (CustomizedImagePathSelectorSpec) NoProxy

func (CustomizedImagePathSelectorSpec) Ntp

func (CustomizedImagePathSelectorSpec) Password

func (CustomizedImagePathSelectorSpec) ProvisioningPolicy

func (CustomizedImagePathSelectorSpec) Version

func (CustomizedImagePathSelectorSpec) WithArrayOfValues

func (CustomizedImagePathSelectorSpec) WithSubArrayItemValue

func (CustomizedImagePathSelectorSpec) WithSubArrayOfValues

func (CustomizedImagePathSelectorSpec) WithSubPath

func (CustomizedImagePathSelectorSpec) WithSubValue

func (CustomizedImagePathSelectorSpec) WithValue

type CustomizedImagePathSelectorSpecDeviceType

type CustomizedImagePathSelectorSpecDeviceType struct{}

func (CustomizedImagePathSelectorSpecDeviceType) FieldPath

func (CustomizedImagePathSelectorSpecDeviceType) WithArrayOfValues

func (CustomizedImagePathSelectorSpecDeviceType) WithValue

type CustomizedImagePathSelectorSpecDiskMapping

type CustomizedImagePathSelectorSpecDiskMapping struct{}

func (CustomizedImagePathSelectorSpecDiskMapping) FieldPath

func (CustomizedImagePathSelectorSpecDiskMapping) WithArrayOfValues

func (CustomizedImagePathSelectorSpecDiskMapping) WithValue

type CustomizedImagePathSelectorSpecEncryption

type CustomizedImagePathSelectorSpecEncryption struct{}

func (CustomizedImagePathSelectorSpecEncryption) FieldPath

func (CustomizedImagePathSelectorSpecEncryption) WithArrayOfValues

func (CustomizedImagePathSelectorSpecEncryption) WithValue

type CustomizedImagePathSelectorSpecEncryptionPassword

type CustomizedImagePathSelectorSpecEncryptionPassword struct{}

func (CustomizedImagePathSelectorSpecEncryptionPassword) FieldPath

func (CustomizedImagePathSelectorSpecEncryptionPassword) WithArrayOfValues

func (CustomizedImagePathSelectorSpecEncryptionPassword) WithValue

type CustomizedImagePathSelectorSpecHttpProxy

type CustomizedImagePathSelectorSpecHttpProxy struct{}

func (CustomizedImagePathSelectorSpecHttpProxy) FieldPath

func (CustomizedImagePathSelectorSpecHttpProxy) WithArrayOfValues

func (CustomizedImagePathSelectorSpecHttpProxy) WithValue

type CustomizedImagePathSelectorSpecHttpsProxy

type CustomizedImagePathSelectorSpecHttpsProxy struct{}

func (CustomizedImagePathSelectorSpecHttpsProxy) FieldPath

func (CustomizedImagePathSelectorSpecHttpsProxy) WithArrayOfValues

func (CustomizedImagePathSelectorSpecHttpsProxy) WithValue

type CustomizedImagePathSelectorSpecInstallAiAccelerator

type CustomizedImagePathSelectorSpecInstallAiAccelerator struct{}

func (CustomizedImagePathSelectorSpecInstallAiAccelerator) FieldPath

func (CustomizedImagePathSelectorSpecInstallAiAccelerator) WithArrayOfValues

func (CustomizedImagePathSelectorSpecInstallAiAccelerator) WithValue

type CustomizedImagePathSelectorSpecNetworkAgent

type CustomizedImagePathSelectorSpecNetworkAgent struct{}

func (CustomizedImagePathSelectorSpecNetworkAgent) FieldPath

func (CustomizedImagePathSelectorSpecNetworkAgent) WithArrayOfValues

func (CustomizedImagePathSelectorSpecNetworkAgent) WithValue

type CustomizedImagePathSelectorSpecNoProxy

type CustomizedImagePathSelectorSpecNoProxy struct{}

func (CustomizedImagePathSelectorSpecNoProxy) FieldPath

func (CustomizedImagePathSelectorSpecNoProxy) WithArrayOfValues

func (CustomizedImagePathSelectorSpecNoProxy) WithValue

type CustomizedImagePathSelectorSpecNtp

type CustomizedImagePathSelectorSpecNtp struct{}

func (CustomizedImagePathSelectorSpecNtp) FieldPath

func (CustomizedImagePathSelectorSpecNtp) WithArrayOfValues

func (CustomizedImagePathSelectorSpecNtp) WithValue

type CustomizedImagePathSelectorSpecPassword

type CustomizedImagePathSelectorSpecPassword struct{}

func (CustomizedImagePathSelectorSpecPassword) FieldPath

func (CustomizedImagePathSelectorSpecPassword) WithArrayOfValues

func (CustomizedImagePathSelectorSpecPassword) WithValue

type CustomizedImagePathSelectorSpecProvisioningPolicy

type CustomizedImagePathSelectorSpecProvisioningPolicy struct{}

func (CustomizedImagePathSelectorSpecProvisioningPolicy) FieldPath

func (CustomizedImagePathSelectorSpecProvisioningPolicy) WithArrayOfValues

func (CustomizedImagePathSelectorSpecProvisioningPolicy) WithValue

type CustomizedImagePathSelectorSpecVersion

type CustomizedImagePathSelectorSpecVersion struct{}

func (CustomizedImagePathSelectorSpecVersion) FieldPath

func (CustomizedImagePathSelectorSpecVersion) WithArrayOfValues

func (CustomizedImagePathSelectorSpecVersion) WithValue

type CustomizedImagePathSelectorStatus

type CustomizedImagePathSelectorStatus struct{}

func (CustomizedImagePathSelectorStatus) FieldPath

func (CustomizedImagePathSelectorStatus) File

func (CustomizedImagePathSelectorStatus) Log

func (CustomizedImagePathSelectorStatus) State

func (CustomizedImagePathSelectorStatus) WithArrayOfValues

func (CustomizedImagePathSelectorStatus) WithSubArrayItemValue

func (CustomizedImagePathSelectorStatus) WithSubArrayOfValues

func (CustomizedImagePathSelectorStatus) WithSubPath

func (CustomizedImagePathSelectorStatus) WithSubValue

func (CustomizedImagePathSelectorStatus) WithValue

type CustomizedImagePathSelectorStatusFile

type CustomizedImagePathSelectorStatusFile struct{}

func (CustomizedImagePathSelectorStatusFile) FieldPath

func (CustomizedImagePathSelectorStatusFile) WithArrayOfValues

func (CustomizedImagePathSelectorStatusFile) WithValue

type CustomizedImagePathSelectorStatusLog

type CustomizedImagePathSelectorStatusLog struct{}

func (CustomizedImagePathSelectorStatusLog) FieldPath

func (CustomizedImagePathSelectorStatusLog) WithArrayOfValues

func (CustomizedImagePathSelectorStatusLog) WithValue

type CustomizedImagePathSelectorStatusState

type CustomizedImagePathSelectorStatusState struct{}

func (CustomizedImagePathSelectorStatusState) FieldPath

func (CustomizedImagePathSelectorStatusState) WithArrayOfValues

func (CustomizedImagePathSelectorStatusState) WithValue

type CustomizedImageReferenceList

type CustomizedImageReferenceList []*Reference

func (CustomizedImageReferenceList) Append

func (CustomizedImageReferenceList) AppendList

func (CustomizedImageReferenceList) At

func (CustomizedImageReferenceList) Length

func (l CustomizedImageReferenceList) Length() int

func (CustomizedImageReferenceList) Set

func (CustomizedImageReferenceList) Slice

type CustomizedImageSpecFieldPathBuilder

type CustomizedImageSpecFieldPathBuilder struct{}

func NewCustomizedImageSpecFieldPathBuilder

func NewCustomizedImageSpecFieldPathBuilder() CustomizedImageSpecFieldPathBuilder

func (CustomizedImageSpecFieldPathBuilder) DeviceType

func (CustomizedImageSpecFieldPathBuilder) DiskMapping

func (CustomizedImageSpecFieldPathBuilder) Encryption

func (CustomizedImageSpecFieldPathBuilder) EncryptionPassword

func (CustomizedImageSpecFieldPathBuilder) HttpProxy

func (CustomizedImageSpecFieldPathBuilder) HttpsProxy

func (CustomizedImageSpecFieldPathBuilder) InstallAiAccelerator

func (CustomizedImageSpecFieldPathBuilder) NetworkAgent

func (CustomizedImageSpecFieldPathBuilder) NoProxy

func (CustomizedImageSpecFieldPathBuilder) Ntp

func (CustomizedImageSpecFieldPathBuilder) Password

func (CustomizedImageSpecFieldPathBuilder) ProvisioningPolicy

func (CustomizedImageSpecFieldPathBuilder) Version

type CustomizedImageSpec_FieldPath

type CustomizedImageSpec_FieldPath interface {
	gotenobject.FieldPath
	Selector() CustomizedImageSpec_FieldPathSelector
	Get(source *CustomizedImage_Spec) []interface{}
	GetSingle(source *CustomizedImage_Spec) (interface{}, bool)
	ClearValue(item *CustomizedImage_Spec)

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

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

func MustParseCustomizedImageSpec_FieldPath

func MustParseCustomizedImageSpec_FieldPath(rawField string) CustomizedImageSpec_FieldPath

func ParseCustomizedImageSpec_FieldPath

func ParseCustomizedImageSpec_FieldPath(rawField string) (CustomizedImageSpec_FieldPath, error)

type CustomizedImageSpec_FieldPathArrayItemValue

type CustomizedImageSpec_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	CustomizedImageSpec_FieldPath
	ContainsValue(*CustomizedImage_Spec) bool
}

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

func MustParseCustomizedImageSpec_FieldPathArrayItemValue

func MustParseCustomizedImageSpec_FieldPathArrayItemValue(pathStr, valueStr string) CustomizedImageSpec_FieldPathArrayItemValue

func ParseCustomizedImageSpec_FieldPathArrayItemValue

func ParseCustomizedImageSpec_FieldPathArrayItemValue(pathStr, valueStr string) (CustomizedImageSpec_FieldPathArrayItemValue, error)

ParseCustomizedImageSpec_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type CustomizedImageSpec_FieldPathArrayOfValues

type CustomizedImageSpec_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	CustomizedImageSpec_FieldPath
}

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

func MustParseCustomizedImageSpec_FieldPathArrayOfValues

func MustParseCustomizedImageSpec_FieldPathArrayOfValues(pathStr, valuesStr string) CustomizedImageSpec_FieldPathArrayOfValues

func ParseCustomizedImageSpec_FieldPathArrayOfValues

func ParseCustomizedImageSpec_FieldPathArrayOfValues(pathStr, valuesStr string) (CustomizedImageSpec_FieldPathArrayOfValues, error)

type CustomizedImageSpec_FieldPathSelector

type CustomizedImageSpec_FieldPathSelector int32
const (
	CustomizedImageSpec_FieldPathSelectorVersion              CustomizedImageSpec_FieldPathSelector = 0
	CustomizedImageSpec_FieldPathSelectorDeviceType           CustomizedImageSpec_FieldPathSelector = 1
	CustomizedImageSpec_FieldPathSelectorProvisioningPolicy   CustomizedImageSpec_FieldPathSelector = 2
	CustomizedImageSpec_FieldPathSelectorInstallAiAccelerator CustomizedImageSpec_FieldPathSelector = 3
	CustomizedImageSpec_FieldPathSelectorPassword             CustomizedImageSpec_FieldPathSelector = 4
	CustomizedImageSpec_FieldPathSelectorEncryption           CustomizedImageSpec_FieldPathSelector = 5
	CustomizedImageSpec_FieldPathSelectorEncryptionPassword   CustomizedImageSpec_FieldPathSelector = 6
	CustomizedImageSpec_FieldPathSelectorDiskMapping          CustomizedImageSpec_FieldPathSelector = 7
	CustomizedImageSpec_FieldPathSelectorNetworkAgent         CustomizedImageSpec_FieldPathSelector = 8
	CustomizedImageSpec_FieldPathSelectorNtp                  CustomizedImageSpec_FieldPathSelector = 9
	CustomizedImageSpec_FieldPathSelectorHttpProxy            CustomizedImageSpec_FieldPathSelector = 10
	CustomizedImageSpec_FieldPathSelectorHttpsProxy           CustomizedImageSpec_FieldPathSelector = 11
	CustomizedImageSpec_FieldPathSelectorNoProxy              CustomizedImageSpec_FieldPathSelector = 12
)

func (CustomizedImageSpec_FieldPathSelector) String

type CustomizedImageSpec_FieldPathValue

type CustomizedImageSpec_FieldPathValue interface {
	CustomizedImageSpec_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **CustomizedImage_Spec)
	CompareWith(*CustomizedImage_Spec) (cmp int, comparable bool)
}

CustomizedImageSpec_FieldPathValue allows storing values for Spec fields according to their type

func MustParseCustomizedImageSpec_FieldPathValue

func MustParseCustomizedImageSpec_FieldPathValue(pathStr, valueStr string) CustomizedImageSpec_FieldPathValue

func ParseCustomizedImageSpec_FieldPathValue

func ParseCustomizedImageSpec_FieldPathValue(pathStr, valueStr string) (CustomizedImageSpec_FieldPathValue, error)

type CustomizedImageSpec_FieldTerminalPath

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

func (*CustomizedImageSpec_FieldTerminalPath) ClearValue

func (*CustomizedImageSpec_FieldTerminalPath) ClearValueRaw

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

func (*CustomizedImageSpec_FieldTerminalPath) Get

func (fp *CustomizedImageSpec_FieldTerminalPath) Get(source *CustomizedImage_Spec) (values []interface{})

Get returns all values pointed by specific field from source CustomizedImage_Spec

func (*CustomizedImageSpec_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*CustomizedImageSpec_FieldTerminalPath) GetRaw

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

func (*CustomizedImageSpec_FieldTerminalPath) GetSingle

func (fp *CustomizedImageSpec_FieldTerminalPath) GetSingle(source *CustomizedImage_Spec) (interface{}, bool)

GetSingle returns value pointed by specific field of from source CustomizedImage_Spec

func (*CustomizedImageSpec_FieldTerminalPath) GetSingleRaw

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

func (*CustomizedImageSpec_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*CustomizedImageSpec_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*CustomizedImageSpec_FieldTerminalPath) Selector

func (*CustomizedImageSpec_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*CustomizedImageSpec_FieldTerminalPath) String

String returns path representation in proto convention

func (*CustomizedImageSpec_FieldTerminalPath) WithIArrayItemValue

func (*CustomizedImageSpec_FieldTerminalPath) WithIArrayOfValues

func (fp *CustomizedImageSpec_FieldTerminalPath) WithIArrayOfValues(values interface{}) CustomizedImageSpec_FieldPathArrayOfValues

func (*CustomizedImageSpec_FieldTerminalPath) WithIValue

func (*CustomizedImageSpec_FieldTerminalPath) WithRawIArrayItemValue

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

func (*CustomizedImageSpec_FieldTerminalPath) WithRawIArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPath) WithRawIValue

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

type CustomizedImageSpec_FieldTerminalPathArrayItemValue

type CustomizedImageSpec_FieldTerminalPathArrayItemValue struct {
	CustomizedImageSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageSpec_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*CustomizedImageSpec_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*CustomizedImageSpec_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *CustomizedImageSpec_FieldTerminalPathArrayItemValue) GetSingle(source *CustomizedImage_Spec) (interface{}, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type CustomizedImageSpec_FieldTerminalPathArrayOfValues

type CustomizedImageSpec_FieldTerminalPathArrayOfValues struct {
	CustomizedImageSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsDeviceTypeArrayOfValues

func (fpaov *CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsDeviceTypeArrayOfValues() ([]string, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsDiskMappingArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsEncryptionArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsEncryptionPasswordArrayOfValues

func (fpaov *CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsEncryptionPasswordArrayOfValues() ([]string, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsHttpProxyArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsHttpsProxyArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsInstallAiAcceleratorArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsNetworkAgentArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsNoProxyArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsNtpArrayOfValues

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

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsPasswordArrayOfValues

func (fpaov *CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsPasswordArrayOfValues() ([]string, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsProvisioningPolicyArrayOfValues

func (fpaov *CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsProvisioningPolicyArrayOfValues() ([]string, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsVersionArrayOfValues

func (fpaov *CustomizedImageSpec_FieldTerminalPathArrayOfValues) AsVersionArrayOfValues() ([]string, bool)

func (*CustomizedImageSpec_FieldTerminalPathArrayOfValues) GetRawValues

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

type CustomizedImageSpec_FieldTerminalPathValue

type CustomizedImageSpec_FieldTerminalPathValue struct {
	CustomizedImageSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageSpec_FieldTerminalPathValue) AsDeviceTypeValue

func (fpv *CustomizedImageSpec_FieldTerminalPathValue) AsDeviceTypeValue() (string, bool)

func (*CustomizedImageSpec_FieldTerminalPathValue) AsDiskMappingValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsEncryptionPasswordValue

func (fpv *CustomizedImageSpec_FieldTerminalPathValue) AsEncryptionPasswordValue() (string, bool)

func (*CustomizedImageSpec_FieldTerminalPathValue) AsEncryptionValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsHttpProxyValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsHttpsProxyValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsInstallAiAcceleratorValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsNetworkAgentValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsNoProxyValue

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

func (*CustomizedImageSpec_FieldTerminalPathValue) AsNtpValue

func (*CustomizedImageSpec_FieldTerminalPathValue) AsPasswordValue

func (fpv *CustomizedImageSpec_FieldTerminalPathValue) AsPasswordValue() (string, bool)

func (*CustomizedImageSpec_FieldTerminalPathValue) AsProvisioningPolicyValue

func (fpv *CustomizedImageSpec_FieldTerminalPathValue) AsProvisioningPolicyValue() (string, bool)

func (*CustomizedImageSpec_FieldTerminalPathValue) AsVersionValue

func (fpv *CustomizedImageSpec_FieldTerminalPathValue) AsVersionValue() (string, bool)

func (*CustomizedImageSpec_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'CustomizedImageSpec_FieldTerminalPathValue' with the value under path in 'CustomizedImage_Spec'.

func (*CustomizedImageSpec_FieldTerminalPathValue) CompareWithRaw

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

func (*CustomizedImageSpec_FieldTerminalPathValue) GetRawValue

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

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

func (*CustomizedImageSpec_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Spec

func (*CustomizedImageSpec_FieldTerminalPathValue) SetToRaw

type CustomizedImageStatusFieldPathBuilder

type CustomizedImageStatusFieldPathBuilder struct{}

func NewCustomizedImageStatusFieldPathBuilder

func NewCustomizedImageStatusFieldPathBuilder() CustomizedImageStatusFieldPathBuilder

func (CustomizedImageStatusFieldPathBuilder) File

func (CustomizedImageStatusFieldPathBuilder) Log

func (CustomizedImageStatusFieldPathBuilder) State

type CustomizedImageStatus_FieldPath

type CustomizedImageStatus_FieldPath interface {
	gotenobject.FieldPath
	Selector() CustomizedImageStatus_FieldPathSelector
	Get(source *CustomizedImage_Status) []interface{}
	GetSingle(source *CustomizedImage_Status) (interface{}, bool)
	ClearValue(item *CustomizedImage_Status)

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

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

func MustParseCustomizedImageStatus_FieldPath

func MustParseCustomizedImageStatus_FieldPath(rawField string) CustomizedImageStatus_FieldPath

func ParseCustomizedImageStatus_FieldPath

func ParseCustomizedImageStatus_FieldPath(rawField string) (CustomizedImageStatus_FieldPath, error)

type CustomizedImageStatus_FieldPathArrayItemValue

type CustomizedImageStatus_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	CustomizedImageStatus_FieldPath
	ContainsValue(*CustomizedImage_Status) bool
}

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

func MustParseCustomizedImageStatus_FieldPathArrayItemValue

func MustParseCustomizedImageStatus_FieldPathArrayItemValue(pathStr, valueStr string) CustomizedImageStatus_FieldPathArrayItemValue

func ParseCustomizedImageStatus_FieldPathArrayItemValue

func ParseCustomizedImageStatus_FieldPathArrayItemValue(pathStr, valueStr string) (CustomizedImageStatus_FieldPathArrayItemValue, error)

ParseCustomizedImageStatus_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type CustomizedImageStatus_FieldPathArrayOfValues

type CustomizedImageStatus_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	CustomizedImageStatus_FieldPath
}

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

func MustParseCustomizedImageStatus_FieldPathArrayOfValues

func MustParseCustomizedImageStatus_FieldPathArrayOfValues(pathStr, valuesStr string) CustomizedImageStatus_FieldPathArrayOfValues

func ParseCustomizedImageStatus_FieldPathArrayOfValues

func ParseCustomizedImageStatus_FieldPathArrayOfValues(pathStr, valuesStr string) (CustomizedImageStatus_FieldPathArrayOfValues, error)

type CustomizedImageStatus_FieldPathSelector

type CustomizedImageStatus_FieldPathSelector int32
const (
	CustomizedImageStatus_FieldPathSelectorState CustomizedImageStatus_FieldPathSelector = 0
	CustomizedImageStatus_FieldPathSelectorLog   CustomizedImageStatus_FieldPathSelector = 1
	CustomizedImageStatus_FieldPathSelectorFile  CustomizedImageStatus_FieldPathSelector = 2
)

func (CustomizedImageStatus_FieldPathSelector) String

type CustomizedImageStatus_FieldPathValue

type CustomizedImageStatus_FieldPathValue interface {
	CustomizedImageStatus_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **CustomizedImage_Status)
	CompareWith(*CustomizedImage_Status) (cmp int, comparable bool)
}

CustomizedImageStatus_FieldPathValue allows storing values for Status fields according to their type

func MustParseCustomizedImageStatus_FieldPathValue

func MustParseCustomizedImageStatus_FieldPathValue(pathStr, valueStr string) CustomizedImageStatus_FieldPathValue

func ParseCustomizedImageStatus_FieldPathValue

func ParseCustomizedImageStatus_FieldPathValue(pathStr, valueStr string) (CustomizedImageStatus_FieldPathValue, error)

type CustomizedImageStatus_FieldTerminalPath

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

func (*CustomizedImageStatus_FieldTerminalPath) ClearValue

func (*CustomizedImageStatus_FieldTerminalPath) ClearValueRaw

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

func (*CustomizedImageStatus_FieldTerminalPath) Get

func (fp *CustomizedImageStatus_FieldTerminalPath) Get(source *CustomizedImage_Status) (values []interface{})

Get returns all values pointed by specific field from source CustomizedImage_Status

func (*CustomizedImageStatus_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*CustomizedImageStatus_FieldTerminalPath) GetRaw

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

func (*CustomizedImageStatus_FieldTerminalPath) GetSingle

func (fp *CustomizedImageStatus_FieldTerminalPath) GetSingle(source *CustomizedImage_Status) (interface{}, bool)

GetSingle returns value pointed by specific field of from source CustomizedImage_Status

func (*CustomizedImageStatus_FieldTerminalPath) GetSingleRaw

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

func (*CustomizedImageStatus_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*CustomizedImageStatus_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*CustomizedImageStatus_FieldTerminalPath) Selector

func (*CustomizedImageStatus_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*CustomizedImageStatus_FieldTerminalPath) String

String returns path representation in proto convention

func (*CustomizedImageStatus_FieldTerminalPath) WithIArrayItemValue

func (*CustomizedImageStatus_FieldTerminalPath) WithIArrayOfValues

func (*CustomizedImageStatus_FieldTerminalPath) WithIValue

func (*CustomizedImageStatus_FieldTerminalPath) WithRawIArrayItemValue

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

func (*CustomizedImageStatus_FieldTerminalPath) WithRawIArrayOfValues

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

func (*CustomizedImageStatus_FieldTerminalPath) WithRawIValue

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

type CustomizedImageStatus_FieldTerminalPathArrayItemValue

type CustomizedImageStatus_FieldTerminalPathArrayItemValue struct {
	CustomizedImageStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageStatus_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*CustomizedImageStatus_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*CustomizedImageStatus_FieldTerminalPathArrayItemValue) GetSingle

func (*CustomizedImageStatus_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type CustomizedImageStatus_FieldTerminalPathArrayOfValues

type CustomizedImageStatus_FieldTerminalPathArrayOfValues struct {
	CustomizedImageStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageStatus_FieldTerminalPathArrayOfValues) AsFileArrayOfValues

func (fpaov *CustomizedImageStatus_FieldTerminalPathArrayOfValues) AsFileArrayOfValues() ([]string, bool)

func (*CustomizedImageStatus_FieldTerminalPathArrayOfValues) AsLogArrayOfValues

func (fpaov *CustomizedImageStatus_FieldTerminalPathArrayOfValues) AsLogArrayOfValues() ([]string, bool)

func (*CustomizedImageStatus_FieldTerminalPathArrayOfValues) AsStateArrayOfValues

func (*CustomizedImageStatus_FieldTerminalPathArrayOfValues) GetRawValues

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

type CustomizedImageStatus_FieldTerminalPathValue

type CustomizedImageStatus_FieldTerminalPathValue struct {
	CustomizedImageStatus_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImageStatus_FieldTerminalPathValue) AsFileValue

func (*CustomizedImageStatus_FieldTerminalPathValue) AsLogValue

func (*CustomizedImageStatus_FieldTerminalPathValue) AsStateValue

func (*CustomizedImageStatus_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'CustomizedImageStatus_FieldTerminalPathValue' with the value under path in 'CustomizedImage_Status'.

func (*CustomizedImageStatus_FieldTerminalPathValue) CompareWithRaw

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

func (*CustomizedImageStatus_FieldTerminalPathValue) GetRawValue

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

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

func (*CustomizedImageStatus_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object Status

func (*CustomizedImageStatus_FieldTerminalPathValue) SetToRaw

type CustomizedImage_FieldMask

type CustomizedImage_FieldMask struct {
	Paths []CustomizedImage_FieldPath
}

func FullCustomizedImage_FieldMask

func FullCustomizedImage_FieldMask() *CustomizedImage_FieldMask

func ResourceViewFieldMask

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

func (*CustomizedImage_FieldMask) AppendPath

func (fieldMask *CustomizedImage_FieldMask) AppendPath(path CustomizedImage_FieldPath)

func (*CustomizedImage_FieldMask) AppendRawPath

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

func (*CustomizedImage_FieldMask) DecodeFirestore

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

func (*CustomizedImage_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*CustomizedImage_FieldMask) FilterInputFields

func (fieldMask *CustomizedImage_FieldMask) FilterInputFields() *CustomizedImage_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*CustomizedImage_FieldMask) FromProtoFieldMask

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

func (*CustomizedImage_FieldMask) GetPaths

func (fieldMask *CustomizedImage_FieldMask) GetPaths() []CustomizedImage_FieldPath

func (*CustomizedImage_FieldMask) GetRawPaths

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

func (*CustomizedImage_FieldMask) IsFull

func (fieldMask *CustomizedImage_FieldMask) IsFull() bool

func (CustomizedImage_FieldMask) Marshal

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

implement methods required by customType

func (CustomizedImage_FieldMask) MarshalJSON

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

func (*CustomizedImage_FieldMask) PathsCount

func (fieldMask *CustomizedImage_FieldMask) PathsCount() int

func (*CustomizedImage_FieldMask) Project

func (fieldMask *CustomizedImage_FieldMask) Project(source *CustomizedImage) *CustomizedImage

func (*CustomizedImage_FieldMask) ProjectRaw

func (*CustomizedImage_FieldMask) ProtoMessage

func (fieldMask *CustomizedImage_FieldMask) ProtoMessage()

func (*CustomizedImage_FieldMask) ProtoReflect

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

func (*CustomizedImage_FieldMask) Reset

func (fieldMask *CustomizedImage_FieldMask) Reset()

func (*CustomizedImage_FieldMask) Set

func (fieldMask *CustomizedImage_FieldMask) Set(target, source *CustomizedImage)

func (*CustomizedImage_FieldMask) SetFromCliFlag

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

func (*CustomizedImage_FieldMask) SetRaw

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

func (*CustomizedImage_FieldMask) Size

func (fieldMask *CustomizedImage_FieldMask) Size() int

func (*CustomizedImage_FieldMask) String

func (fieldMask *CustomizedImage_FieldMask) String() string

func (*CustomizedImage_FieldMask) Subtract

func (*CustomizedImage_FieldMask) SubtractRaw

func (*CustomizedImage_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*CustomizedImage_FieldMask) Unmarshal

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

func (*CustomizedImage_FieldMask) UnmarshalJSON

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

type CustomizedImage_FieldPath

type CustomizedImage_FieldPath interface {
	gotenobject.FieldPath
	Selector() CustomizedImage_FieldPathSelector
	Get(source *CustomizedImage) []interface{}
	GetSingle(source *CustomizedImage) (interface{}, bool)
	ClearValue(item *CustomizedImage)

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

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

func MustParseCustomizedImage_FieldPath

func MustParseCustomizedImage_FieldPath(rawField string) CustomizedImage_FieldPath

func ParseCustomizedImage_FieldPath

func ParseCustomizedImage_FieldPath(rawField string) (CustomizedImage_FieldPath, error)

type CustomizedImage_FieldPathArrayItemValue

type CustomizedImage_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	CustomizedImage_FieldPath
	ContainsValue(*CustomizedImage) bool
}

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

func MustParseCustomizedImage_FieldPathArrayItemValue

func MustParseCustomizedImage_FieldPathArrayItemValue(pathStr, valueStr string) CustomizedImage_FieldPathArrayItemValue

func ParseCustomizedImage_FieldPathArrayItemValue

func ParseCustomizedImage_FieldPathArrayItemValue(pathStr, valueStr string) (CustomizedImage_FieldPathArrayItemValue, error)

ParseCustomizedImage_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type CustomizedImage_FieldPathArrayOfValues

type CustomizedImage_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	CustomizedImage_FieldPath
}

CustomizedImage_FieldPathArrayOfValues allows storing slice of values for CustomizedImage fields according to their type

func MustParseCustomizedImage_FieldPathArrayOfValues

func MustParseCustomizedImage_FieldPathArrayOfValues(pathStr, valuesStr string) CustomizedImage_FieldPathArrayOfValues

func ParseCustomizedImage_FieldPathArrayOfValues

func ParseCustomizedImage_FieldPathArrayOfValues(pathStr, valuesStr string) (CustomizedImage_FieldPathArrayOfValues, error)

type CustomizedImage_FieldPathSelector

type CustomizedImage_FieldPathSelector int32
const (
	CustomizedImage_FieldPathSelectorName     CustomizedImage_FieldPathSelector = 0
	CustomizedImage_FieldPathSelectorMetadata CustomizedImage_FieldPathSelector = 1
	CustomizedImage_FieldPathSelectorSpec     CustomizedImage_FieldPathSelector = 2
	CustomizedImage_FieldPathSelectorStatus   CustomizedImage_FieldPathSelector = 3
)

func (CustomizedImage_FieldPathSelector) String

type CustomizedImage_FieldPathValue

type CustomizedImage_FieldPathValue interface {
	CustomizedImage_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **CustomizedImage)
	CompareWith(*CustomizedImage) (cmp int, comparable bool)
}

CustomizedImage_FieldPathValue allows storing values for CustomizedImage fields according to their type

func MustParseCustomizedImage_FieldPathValue

func MustParseCustomizedImage_FieldPathValue(pathStr, valueStr string) CustomizedImage_FieldPathValue

func ParseCustomizedImage_FieldPathValue

func ParseCustomizedImage_FieldPathValue(pathStr, valueStr string) (CustomizedImage_FieldPathValue, error)

type CustomizedImage_FieldSubPath

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

func (*CustomizedImage_FieldSubPath) AsMetadataSubPath

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

func (*CustomizedImage_FieldSubPath) AsSpecSubPath

func (*CustomizedImage_FieldSubPath) AsStatusSubPath

func (*CustomizedImage_FieldSubPath) ClearValue

func (fps *CustomizedImage_FieldSubPath) ClearValue(item *CustomizedImage)

func (*CustomizedImage_FieldSubPath) ClearValueRaw

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

func (*CustomizedImage_FieldSubPath) Get

func (fps *CustomizedImage_FieldSubPath) Get(source *CustomizedImage) (values []interface{})

Get returns all values pointed by selected field from source CustomizedImage

func (*CustomizedImage_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*CustomizedImage_FieldSubPath) GetRaw

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

func (*CustomizedImage_FieldSubPath) GetSingle

func (fps *CustomizedImage_FieldSubPath) GetSingle(source *CustomizedImage) (interface{}, bool)

GetSingle returns value of selected field from source CustomizedImage

func (*CustomizedImage_FieldSubPath) GetSingleRaw

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

func (*CustomizedImage_FieldSubPath) IsLeaf

func (fps *CustomizedImage_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*CustomizedImage_FieldSubPath) JSONString

func (fps *CustomizedImage_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*CustomizedImage_FieldSubPath) Selector

func (*CustomizedImage_FieldSubPath) SplitIntoTerminalIPaths

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

func (*CustomizedImage_FieldSubPath) String

func (fps *CustomizedImage_FieldSubPath) String() string

String returns path representation in proto convention

func (*CustomizedImage_FieldSubPath) WithIArrayItemValue

func (fps *CustomizedImage_FieldSubPath) WithIArrayItemValue(value interface{}) CustomizedImage_FieldPathArrayItemValue

func (*CustomizedImage_FieldSubPath) WithIArrayOfValues

func (fps *CustomizedImage_FieldSubPath) WithIArrayOfValues(values interface{}) CustomizedImage_FieldPathArrayOfValues

func (*CustomizedImage_FieldSubPath) WithIValue

func (fps *CustomizedImage_FieldSubPath) WithIValue(value interface{}) CustomizedImage_FieldPathValue

func (*CustomizedImage_FieldSubPath) WithRawIArrayItemValue

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

func (*CustomizedImage_FieldSubPath) WithRawIArrayOfValues

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

func (*CustomizedImage_FieldSubPath) WithRawIValue

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

type CustomizedImage_FieldSubPathArrayItemValue

type CustomizedImage_FieldSubPathArrayItemValue struct {
	CustomizedImage_FieldPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*CustomizedImage_FieldSubPathArrayItemValue) AsSpecPathItemValue

func (*CustomizedImage_FieldSubPathArrayItemValue) AsStatusPathItemValue

func (*CustomizedImage_FieldSubPathArrayItemValue) ContainsValue

func (fpaivs *CustomizedImage_FieldSubPathArrayItemValue) ContainsValue(source *CustomizedImage) bool

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

func (*CustomizedImage_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type CustomizedImage_FieldSubPathArrayOfValues

type CustomizedImage_FieldSubPathArrayOfValues struct {
	CustomizedImage_FieldPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

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

func (*CustomizedImage_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues

func (*CustomizedImage_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues

func (*CustomizedImage_FieldSubPathArrayOfValues) GetRawValues

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

type CustomizedImage_FieldSubPathValue

type CustomizedImage_FieldSubPathValue struct {
	CustomizedImage_FieldPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldSubPathValue) AsMetadataPathValue

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

func (*CustomizedImage_FieldSubPathValue) AsSpecPathValue

func (*CustomizedImage_FieldSubPathValue) AsStatusPathValue

func (*CustomizedImage_FieldSubPathValue) CompareWith

func (fpvs *CustomizedImage_FieldSubPathValue) CompareWith(source *CustomizedImage) (int, bool)

func (*CustomizedImage_FieldSubPathValue) CompareWithRaw

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

func (*CustomizedImage_FieldSubPathValue) GetRawValue

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

func (*CustomizedImage_FieldSubPathValue) SetTo

func (fpvs *CustomizedImage_FieldSubPathValue) SetTo(target **CustomizedImage)

func (*CustomizedImage_FieldSubPathValue) SetToRaw

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

type CustomizedImage_FieldTerminalPath

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

func (*CustomizedImage_FieldTerminalPath) ClearValue

func (fp *CustomizedImage_FieldTerminalPath) ClearValue(item *CustomizedImage)

func (*CustomizedImage_FieldTerminalPath) ClearValueRaw

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

func (*CustomizedImage_FieldTerminalPath) Get

func (fp *CustomizedImage_FieldTerminalPath) Get(source *CustomizedImage) (values []interface{})

Get returns all values pointed by specific field from source CustomizedImage

func (*CustomizedImage_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*CustomizedImage_FieldTerminalPath) GetRaw

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

func (*CustomizedImage_FieldTerminalPath) GetSingle

func (fp *CustomizedImage_FieldTerminalPath) GetSingle(source *CustomizedImage) (interface{}, bool)

GetSingle returns value pointed by specific field of from source CustomizedImage

func (*CustomizedImage_FieldTerminalPath) GetSingleRaw

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

func (*CustomizedImage_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*CustomizedImage_FieldTerminalPath) JSONString

func (fp *CustomizedImage_FieldTerminalPath) JSONString() string

JSONString returns path representation is JSON convention

func (*CustomizedImage_FieldTerminalPath) Selector

func (*CustomizedImage_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*CustomizedImage_FieldTerminalPath) String

String returns path representation in proto convention

func (*CustomizedImage_FieldTerminalPath) WithIArrayItemValue

func (fp *CustomizedImage_FieldTerminalPath) WithIArrayItemValue(value interface{}) CustomizedImage_FieldPathArrayItemValue

func (*CustomizedImage_FieldTerminalPath) WithIArrayOfValues

func (fp *CustomizedImage_FieldTerminalPath) WithIArrayOfValues(values interface{}) CustomizedImage_FieldPathArrayOfValues

func (*CustomizedImage_FieldTerminalPath) WithIValue

func (fp *CustomizedImage_FieldTerminalPath) WithIValue(value interface{}) CustomizedImage_FieldPathValue

func (*CustomizedImage_FieldTerminalPath) WithRawIArrayItemValue

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

func (*CustomizedImage_FieldTerminalPath) WithRawIArrayOfValues

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

func (*CustomizedImage_FieldTerminalPath) WithRawIValue

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

type CustomizedImage_FieldTerminalPathArrayItemValue

type CustomizedImage_FieldTerminalPathArrayItemValue struct {
	CustomizedImage_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*CustomizedImage_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*CustomizedImage_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *CustomizedImage_FieldTerminalPathArrayItemValue) GetSingle(source *CustomizedImage) (interface{}, bool)

func (*CustomizedImage_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type CustomizedImage_FieldTerminalPathArrayOfValues

type CustomizedImage_FieldTerminalPathArrayOfValues struct {
	CustomizedImage_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*CustomizedImage_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*CustomizedImage_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues

func (*CustomizedImage_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues

func (fpaov *CustomizedImage_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*CustomizedImage_Status, bool)

func (*CustomizedImage_FieldTerminalPathArrayOfValues) GetRawValues

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

type CustomizedImage_FieldTerminalPathValue

type CustomizedImage_FieldTerminalPathValue struct {
	CustomizedImage_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*CustomizedImage_FieldTerminalPathValue) AsMetadataValue

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

func (*CustomizedImage_FieldTerminalPathValue) AsNameValue

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

func (*CustomizedImage_FieldTerminalPathValue) AsSpecValue

func (*CustomizedImage_FieldTerminalPathValue) AsStatusValue

func (*CustomizedImage_FieldTerminalPathValue) CompareWith

func (fpv *CustomizedImage_FieldTerminalPathValue) CompareWith(source *CustomizedImage) (int, bool)

CompareWith compares value in the 'CustomizedImage_FieldTerminalPathValue' with the value under path in 'CustomizedImage'.

func (*CustomizedImage_FieldTerminalPathValue) CompareWithRaw

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

func (*CustomizedImage_FieldTerminalPathValue) GetRawValue

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

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

func (*CustomizedImage_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object CustomizedImage

func (*CustomizedImage_FieldTerminalPathValue) SetToRaw

type CustomizedImage_Spec

type CustomizedImage_Spec struct {
	Version              string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty" firestore:"version"`
	DeviceType           string `protobuf:"bytes,2,opt,name=device_type,json=deviceType,proto3" json:"device_type,omitempty" firestore:"deviceType"`
	ProvisioningPolicy   string `` /* 146-byte string literal not displayed */
	InstallAiAccelerator bool   `` /* 157-byte string literal not displayed */
	Password             string `protobuf:"bytes,5,opt,name=password,proto3" json:"password,omitempty" firestore:"password"`
	Encryption           bool   `protobuf:"varint,6,opt,name=encryption,proto3" json:"encryption,omitempty" firestore:"encryption"`
	EncryptionPassword   string `` /* 146-byte string literal not displayed */
	DiskMapping          string `protobuf:"bytes,8,opt,name=disk_mapping,json=diskMapping,proto3" json:"disk_mapping,omitempty" firestore:"diskMapping"`
	NetworkAgent         string `protobuf:"bytes,9,opt,name=network_agent,json=networkAgent,proto3" json:"network_agent,omitempty" firestore:"networkAgent"`
	Ntp                  string `protobuf:"bytes,10,opt,name=ntp,proto3" json:"ntp,omitempty" firestore:"ntp"`
	HttpProxy            string `protobuf:"bytes,11,opt,name=http_proxy,json=httpProxy,proto3" json:"http_proxy,omitempty" firestore:"httpProxy"`
	HttpsProxy           string `protobuf:"bytes,12,opt,name=https_proxy,json=httpsProxy,proto3" json:"https_proxy,omitempty" firestore:"httpsProxy"`
	NoProxy              string `protobuf:"bytes,13,opt,name=no_proxy,json=noProxy,proto3" json:"no_proxy,omitempty" firestore:"noProxy"`
	// contains filtered or unexported fields
}

func (*CustomizedImage_Spec) Clone

func (*CustomizedImage_Spec) CloneRaw

func (*CustomizedImage_Spec) Descriptor

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

Deprecated, Use CustomizedImage_Spec.ProtoReflect.Descriptor instead.

func (*CustomizedImage_Spec) GetDeviceType

func (m *CustomizedImage_Spec) GetDeviceType() string

func (*CustomizedImage_Spec) GetDiskMapping

func (m *CustomizedImage_Spec) GetDiskMapping() string

func (*CustomizedImage_Spec) GetEncryption

func (m *CustomizedImage_Spec) GetEncryption() bool

func (*CustomizedImage_Spec) GetEncryptionPassword

func (m *CustomizedImage_Spec) GetEncryptionPassword() string

func (*CustomizedImage_Spec) GetHttpProxy

func (m *CustomizedImage_Spec) GetHttpProxy() string

func (*CustomizedImage_Spec) GetHttpsProxy

func (m *CustomizedImage_Spec) GetHttpsProxy() string

func (*CustomizedImage_Spec) GetInstallAiAccelerator

func (m *CustomizedImage_Spec) GetInstallAiAccelerator() bool

func (*CustomizedImage_Spec) GetNetworkAgent

func (m *CustomizedImage_Spec) GetNetworkAgent() string

func (*CustomizedImage_Spec) GetNoProxy

func (m *CustomizedImage_Spec) GetNoProxy() string

func (*CustomizedImage_Spec) GetNtp

func (m *CustomizedImage_Spec) GetNtp() string

func (*CustomizedImage_Spec) GetPassword

func (m *CustomizedImage_Spec) GetPassword() string

func (*CustomizedImage_Spec) GetProvisioningPolicy

func (m *CustomizedImage_Spec) GetProvisioningPolicy() string

func (*CustomizedImage_Spec) GetVersion

func (m *CustomizedImage_Spec) GetVersion() string

func (*CustomizedImage_Spec) GotenMessage

func (*CustomizedImage_Spec) GotenMessage()

func (*CustomizedImage_Spec) GotenObjectExt

func (o *CustomizedImage_Spec) GotenObjectExt()

func (*CustomizedImage_Spec) GotenValidate

func (obj *CustomizedImage_Spec) GotenValidate() error

func (*CustomizedImage_Spec) MakeDiffFieldMask

func (*CustomizedImage_Spec) MakeFullFieldMask

func (o *CustomizedImage_Spec) MakeFullFieldMask() *CustomizedImage_Spec_FieldMask

func (*CustomizedImage_Spec) MakeRawDiffFieldMask

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

func (*CustomizedImage_Spec) MakeRawFullFieldMask

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

func (*CustomizedImage_Spec) Marshal

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

func (*CustomizedImage_Spec) MarshalJSON

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

func (*CustomizedImage_Spec) Merge

func (o *CustomizedImage_Spec) Merge(source *CustomizedImage_Spec)

func (*CustomizedImage_Spec) MergeRaw

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

func (*CustomizedImage_Spec) ProtoMessage

func (*CustomizedImage_Spec) ProtoMessage()

func (*CustomizedImage_Spec) ProtoReflect

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

func (*CustomizedImage_Spec) Reset

func (m *CustomizedImage_Spec) Reset()

func (*CustomizedImage_Spec) SetDeviceType

func (m *CustomizedImage_Spec) SetDeviceType(fv string)

func (*CustomizedImage_Spec) SetDiskMapping

func (m *CustomizedImage_Spec) SetDiskMapping(fv string)

func (*CustomizedImage_Spec) SetEncryption

func (m *CustomizedImage_Spec) SetEncryption(fv bool)

func (*CustomizedImage_Spec) SetEncryptionPassword

func (m *CustomizedImage_Spec) SetEncryptionPassword(fv string)

func (*CustomizedImage_Spec) SetHttpProxy

func (m *CustomizedImage_Spec) SetHttpProxy(fv string)

func (*CustomizedImage_Spec) SetHttpsProxy

func (m *CustomizedImage_Spec) SetHttpsProxy(fv string)

func (*CustomizedImage_Spec) SetInstallAiAccelerator

func (m *CustomizedImage_Spec) SetInstallAiAccelerator(fv bool)

func (*CustomizedImage_Spec) SetNetworkAgent

func (m *CustomizedImage_Spec) SetNetworkAgent(fv string)

func (*CustomizedImage_Spec) SetNoProxy

func (m *CustomizedImage_Spec) SetNoProxy(fv string)

func (*CustomizedImage_Spec) SetNtp

func (m *CustomizedImage_Spec) SetNtp(fv string)

func (*CustomizedImage_Spec) SetPassword

func (m *CustomizedImage_Spec) SetPassword(fv string)

func (*CustomizedImage_Spec) SetProvisioningPolicy

func (m *CustomizedImage_Spec) SetProvisioningPolicy(fv string)

func (*CustomizedImage_Spec) SetVersion

func (m *CustomizedImage_Spec) SetVersion(fv string)

func (*CustomizedImage_Spec) String

func (m *CustomizedImage_Spec) String() string

func (*CustomizedImage_Spec) Unmarshal

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

func (*CustomizedImage_Spec) UnmarshalJSON

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

type CustomizedImage_SpecPathSelectorDeviceType

type CustomizedImage_SpecPathSelectorDeviceType struct{}

func (CustomizedImage_SpecPathSelectorDeviceType) FieldPath

func (CustomizedImage_SpecPathSelectorDeviceType) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorDeviceType) WithValue

type CustomizedImage_SpecPathSelectorDiskMapping

type CustomizedImage_SpecPathSelectorDiskMapping struct{}

func (CustomizedImage_SpecPathSelectorDiskMapping) FieldPath

func (CustomizedImage_SpecPathSelectorDiskMapping) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorDiskMapping) WithValue

type CustomizedImage_SpecPathSelectorEncryption

type CustomizedImage_SpecPathSelectorEncryption struct{}

func (CustomizedImage_SpecPathSelectorEncryption) FieldPath

func (CustomizedImage_SpecPathSelectorEncryption) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorEncryption) WithValue

type CustomizedImage_SpecPathSelectorEncryptionPassword

type CustomizedImage_SpecPathSelectorEncryptionPassword struct{}

func (CustomizedImage_SpecPathSelectorEncryptionPassword) FieldPath

func (CustomizedImage_SpecPathSelectorEncryptionPassword) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorEncryptionPassword) WithValue

type CustomizedImage_SpecPathSelectorHttpProxy

type CustomizedImage_SpecPathSelectorHttpProxy struct{}

func (CustomizedImage_SpecPathSelectorHttpProxy) FieldPath

func (CustomizedImage_SpecPathSelectorHttpProxy) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorHttpProxy) WithValue

type CustomizedImage_SpecPathSelectorHttpsProxy

type CustomizedImage_SpecPathSelectorHttpsProxy struct{}

func (CustomizedImage_SpecPathSelectorHttpsProxy) FieldPath

func (CustomizedImage_SpecPathSelectorHttpsProxy) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorHttpsProxy) WithValue

type CustomizedImage_SpecPathSelectorInstallAiAccelerator

type CustomizedImage_SpecPathSelectorInstallAiAccelerator struct{}

func (CustomizedImage_SpecPathSelectorInstallAiAccelerator) FieldPath

func (CustomizedImage_SpecPathSelectorInstallAiAccelerator) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorInstallAiAccelerator) WithValue

type CustomizedImage_SpecPathSelectorNetworkAgent

type CustomizedImage_SpecPathSelectorNetworkAgent struct{}

func (CustomizedImage_SpecPathSelectorNetworkAgent) FieldPath

func (CustomizedImage_SpecPathSelectorNetworkAgent) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorNetworkAgent) WithValue

type CustomizedImage_SpecPathSelectorNoProxy

type CustomizedImage_SpecPathSelectorNoProxy struct{}

func (CustomizedImage_SpecPathSelectorNoProxy) FieldPath

func (CustomizedImage_SpecPathSelectorNoProxy) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorNoProxy) WithValue

type CustomizedImage_SpecPathSelectorNtp

type CustomizedImage_SpecPathSelectorNtp struct{}

func (CustomizedImage_SpecPathSelectorNtp) FieldPath

func (CustomizedImage_SpecPathSelectorNtp) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorNtp) WithValue

type CustomizedImage_SpecPathSelectorPassword

type CustomizedImage_SpecPathSelectorPassword struct{}

func (CustomizedImage_SpecPathSelectorPassword) FieldPath

func (CustomizedImage_SpecPathSelectorPassword) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorPassword) WithValue

type CustomizedImage_SpecPathSelectorProvisioningPolicy

type CustomizedImage_SpecPathSelectorProvisioningPolicy struct{}

func (CustomizedImage_SpecPathSelectorProvisioningPolicy) FieldPath

func (CustomizedImage_SpecPathSelectorProvisioningPolicy) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorProvisioningPolicy) WithValue

type CustomizedImage_SpecPathSelectorVersion

type CustomizedImage_SpecPathSelectorVersion struct{}

func (CustomizedImage_SpecPathSelectorVersion) FieldPath

func (CustomizedImage_SpecPathSelectorVersion) WithArrayOfValues

func (CustomizedImage_SpecPathSelectorVersion) WithValue

type CustomizedImage_Spec_FieldMask

type CustomizedImage_Spec_FieldMask struct {
	Paths []CustomizedImageSpec_FieldPath
}

func FullCustomizedImage_Spec_FieldMask

func FullCustomizedImage_Spec_FieldMask() *CustomizedImage_Spec_FieldMask

func (*CustomizedImage_Spec_FieldMask) AppendPath

func (*CustomizedImage_Spec_FieldMask) AppendRawPath

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

func (*CustomizedImage_Spec_FieldMask) DecodeFirestore

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

func (*CustomizedImage_Spec_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*CustomizedImage_Spec_FieldMask) FilterInputFields

func (fieldMask *CustomizedImage_Spec_FieldMask) FilterInputFields() *CustomizedImage_Spec_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*CustomizedImage_Spec_FieldMask) FromProtoFieldMask

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

func (*CustomizedImage_Spec_FieldMask) GetPaths

func (*CustomizedImage_Spec_FieldMask) GetRawPaths

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

func (*CustomizedImage_Spec_FieldMask) IsFull

func (fieldMask *CustomizedImage_Spec_FieldMask) IsFull() bool

func (CustomizedImage_Spec_FieldMask) Marshal

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

implement methods required by customType

func (CustomizedImage_Spec_FieldMask) MarshalJSON

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

func (*CustomizedImage_Spec_FieldMask) PathsCount

func (fieldMask *CustomizedImage_Spec_FieldMask) PathsCount() int

func (*CustomizedImage_Spec_FieldMask) Project

func (*CustomizedImage_Spec_FieldMask) ProjectRaw

func (*CustomizedImage_Spec_FieldMask) ProtoMessage

func (fieldMask *CustomizedImage_Spec_FieldMask) ProtoMessage()

func (*CustomizedImage_Spec_FieldMask) ProtoReflect

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

func (*CustomizedImage_Spec_FieldMask) Reset

func (fieldMask *CustomizedImage_Spec_FieldMask) Reset()

func (*CustomizedImage_Spec_FieldMask) Set

func (fieldMask *CustomizedImage_Spec_FieldMask) Set(target, source *CustomizedImage_Spec)

func (*CustomizedImage_Spec_FieldMask) SetFromCliFlag

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

func (*CustomizedImage_Spec_FieldMask) SetRaw

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

func (*CustomizedImage_Spec_FieldMask) Size

func (fieldMask *CustomizedImage_Spec_FieldMask) Size() int

func (*CustomizedImage_Spec_FieldMask) String

func (fieldMask *CustomizedImage_Spec_FieldMask) String() string

func (*CustomizedImage_Spec_FieldMask) Subtract

func (*CustomizedImage_Spec_FieldMask) SubtractRaw

func (*CustomizedImage_Spec_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*CustomizedImage_Spec_FieldMask) Unmarshal

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

func (*CustomizedImage_Spec_FieldMask) UnmarshalJSON

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

type CustomizedImage_Status

type CustomizedImage_Status struct {

	// State of the image.
	State CustomizedImage_Status_State `` /* 137-byte string literal not displayed */
	// Error log when state is ERROR.
	Log string `protobuf:"bytes,2,opt,name=log,proto3" json:"log,omitempty" firestore:"log"`
	// TODO hide this from client
	File string `protobuf:"bytes,5,opt,name=file,proto3" json:"file,omitempty" firestore:"file"`
	// contains filtered or unexported fields
}

func (*CustomizedImage_Status) Clone

func (*CustomizedImage_Status) CloneRaw

func (*CustomizedImage_Status) Descriptor

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

Deprecated, Use CustomizedImage_Status.ProtoReflect.Descriptor instead.

func (*CustomizedImage_Status) GetFile

func (m *CustomizedImage_Status) GetFile() string

func (*CustomizedImage_Status) GetLog

func (m *CustomizedImage_Status) GetLog() string

func (*CustomizedImage_Status) GetState

func (*CustomizedImage_Status) GotenMessage

func (*CustomizedImage_Status) GotenMessage()

func (*CustomizedImage_Status) GotenObjectExt

func (o *CustomizedImage_Status) GotenObjectExt()

func (*CustomizedImage_Status) GotenValidate

func (obj *CustomizedImage_Status) GotenValidate() error

func (*CustomizedImage_Status) MakeDiffFieldMask

func (*CustomizedImage_Status) MakeFullFieldMask

func (*CustomizedImage_Status) MakeRawDiffFieldMask

func (*CustomizedImage_Status) MakeRawFullFieldMask

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

func (*CustomizedImage_Status) Marshal

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

func (*CustomizedImage_Status) MarshalJSON

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

func (*CustomizedImage_Status) Merge

func (*CustomizedImage_Status) MergeRaw

func (*CustomizedImage_Status) ProtoMessage

func (*CustomizedImage_Status) ProtoMessage()

func (*CustomizedImage_Status) ProtoReflect

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

func (*CustomizedImage_Status) Reset

func (m *CustomizedImage_Status) Reset()

func (*CustomizedImage_Status) SetFile

func (m *CustomizedImage_Status) SetFile(fv string)

func (*CustomizedImage_Status) SetLog

func (m *CustomizedImage_Status) SetLog(fv string)

func (*CustomizedImage_Status) SetState

func (*CustomizedImage_Status) String

func (m *CustomizedImage_Status) String() string

func (*CustomizedImage_Status) Unmarshal

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

func (*CustomizedImage_Status) UnmarshalJSON

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

type CustomizedImage_StatusPathSelectorFile

type CustomizedImage_StatusPathSelectorFile struct{}

func (CustomizedImage_StatusPathSelectorFile) FieldPath

func (CustomizedImage_StatusPathSelectorFile) WithArrayOfValues

func (CustomizedImage_StatusPathSelectorFile) WithValue

type CustomizedImage_StatusPathSelectorLog

type CustomizedImage_StatusPathSelectorLog struct{}

func (CustomizedImage_StatusPathSelectorLog) FieldPath

func (CustomizedImage_StatusPathSelectorLog) WithArrayOfValues

func (CustomizedImage_StatusPathSelectorLog) WithValue

type CustomizedImage_StatusPathSelectorState

type CustomizedImage_StatusPathSelectorState struct{}

func (CustomizedImage_StatusPathSelectorState) FieldPath

type CustomizedImage_Status_FieldMask

type CustomizedImage_Status_FieldMask struct {
	Paths []CustomizedImageStatus_FieldPath
}

func FullCustomizedImage_Status_FieldMask

func FullCustomizedImage_Status_FieldMask() *CustomizedImage_Status_FieldMask

func (*CustomizedImage_Status_FieldMask) AppendPath

func (*CustomizedImage_Status_FieldMask) AppendRawPath

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

func (*CustomizedImage_Status_FieldMask) DecodeFirestore

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

func (*CustomizedImage_Status_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*CustomizedImage_Status_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*CustomizedImage_Status_FieldMask) FromProtoFieldMask

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

func (*CustomizedImage_Status_FieldMask) GetPaths

func (*CustomizedImage_Status_FieldMask) GetRawPaths

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

func (*CustomizedImage_Status_FieldMask) IsFull

func (fieldMask *CustomizedImage_Status_FieldMask) IsFull() bool

func (CustomizedImage_Status_FieldMask) Marshal

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

implement methods required by customType

func (CustomizedImage_Status_FieldMask) MarshalJSON

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

func (*CustomizedImage_Status_FieldMask) PathsCount

func (fieldMask *CustomizedImage_Status_FieldMask) PathsCount() int

func (*CustomizedImage_Status_FieldMask) Project

func (*CustomizedImage_Status_FieldMask) ProjectRaw

func (*CustomizedImage_Status_FieldMask) ProtoMessage

func (fieldMask *CustomizedImage_Status_FieldMask) ProtoMessage()

func (*CustomizedImage_Status_FieldMask) ProtoReflect

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

func (*CustomizedImage_Status_FieldMask) Reset

func (fieldMask *CustomizedImage_Status_FieldMask) Reset()

func (*CustomizedImage_Status_FieldMask) Set

func (fieldMask *CustomizedImage_Status_FieldMask) Set(target, source *CustomizedImage_Status)

func (*CustomizedImage_Status_FieldMask) SetFromCliFlag

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

func (*CustomizedImage_Status_FieldMask) SetRaw

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

func (*CustomizedImage_Status_FieldMask) Size

func (fieldMask *CustomizedImage_Status_FieldMask) Size() int

func (*CustomizedImage_Status_FieldMask) String

func (fieldMask *CustomizedImage_Status_FieldMask) String() string

func (*CustomizedImage_Status_FieldMask) Subtract

func (*CustomizedImage_Status_FieldMask) SubtractRaw

func (*CustomizedImage_Status_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*CustomizedImage_Status_FieldMask) Unmarshal

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

func (*CustomizedImage_Status_FieldMask) UnmarshalJSON

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

type CustomizedImage_Status_State

type CustomizedImage_Status_State int32
const (
	// Initial state
	CustomizedImage_Status_STATE_UNSPECIFIED CustomizedImage_Status_State = 0
	// Backend is processing the customization request.
	CustomizedImage_Status_IN_PROGRESS CustomizedImage_Status_State = 1
	// There was an error processing the customization request. Check the
	// parameters and try again.
	CustomizedImage_Status_ERROR CustomizedImage_Status_State = 2
	// The customized image is ready to download.
	CustomizedImage_Status_READY CustomizedImage_Status_State = 3
)

func (CustomizedImage_Status_State) Descriptor

func (CustomizedImage_Status_State) Enum

func (CustomizedImage_Status_State) EnumDescriptor

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

Deprecated, Use CustomizedImage_Status_State.ProtoReflect.Descriptor instead.

func (CustomizedImage_Status_State) Number

func (CustomizedImage_Status_State) String

func (CustomizedImage_Status_State) Type

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

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 CustomizedImage_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 *CustomizedImage) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	CustomizedImage_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *CustomizedImage) 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 CustomizedImage_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 *CustomizedImage) 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 CustomizedImage_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 *CustomizedImage) 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 CustomizedImage_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 {
	CustomizedImage_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *CustomizedImage) 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 CustomizedImage_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 CustomizedImage_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *CustomizedImage) 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 CustomizedImage_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 CustomizedImage_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *CustomizedImage) 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 CustomizedImage_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 *CustomizedImage) 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 CustomizedImage_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 {
	CustomizedImage_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *CustomizedImage) 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 CustomizedImage_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      *CustomizedImage_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           *CustomizedImage_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
	CustomizedImageId string `firestore:"customizedImageId"`
}

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

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *CustomizedImage_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 CustomizedImageList, elem *CustomizedImage) (CustomizedImageList, 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 CustomizedImageList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

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

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type PagerCursor

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

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

func (*PagerCursor) GetInclusion

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

func (*PagerCursor) GetPageDirection

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

func (*PagerCursor) GetValue

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

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

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

func (*PagerCursor) ProtoString

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

func (*PagerCursor) SetCursorValue

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

func (*PagerCursor) SetFromCliFlag

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

func (*PagerCursor) SetInclusion

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

func (*PagerCursor) SetPageDirection

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

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

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

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

func MakePagerQuery

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

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

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

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

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

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

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

func (*PagerQuery) PageDirection

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

func (*PagerQuery) SetCursor

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

func (*PagerQuery) SetLimit

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy

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

func (*PagerQuery) SetPageDirection

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

func (*PagerQuery) SetPeekForward

func (p *PagerQuery) SetPeekForward(peekForward bool)

type 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        []*CustomizedImageChange
	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 {
	CustomizedImages  []*CustomizedImage
	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, customizedImage *CustomizedImage) (*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) GetCustomizedImage

func (ref *Reference) GetCustomizedImage() *CustomizedImage

func (*Reference) GetIParentName

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

func (*Reference) GetIUnderlyingParentName

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

func (*Reference) GetIdParts

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

func (*Reference) GetPattern

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

func (*Reference) GetRawResource

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

func (*Reference) GetResourceDescriptor

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

func (*Reference) GetSegments

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

func (*Reference) GotenEqual

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

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

func (*Reference) IsFullyQualified

func (ref *Reference) IsFullyQualified() bool

func (*Reference) IsSpecified

func (ref *Reference) IsSpecified() bool

func (*Reference) Matches

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

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

func (*Reference) ParseProtoString

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

func (*Reference) ProtoString

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

func (*Reference) Resolve

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

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