Documentation ¶
Index ¶
- Constants
- Variables
- func AsAnyCastAccess(access PodAccess) gotenresource.Access
- type Descriptor
- func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor
- func (d *Descriptor) GetResourceTypeName() *gotenresource.TypeName
- func (d *Descriptor) NewGetQuery() gotenresource.GetQuery
- func (d *Descriptor) NewListQuery() gotenresource.ListQuery
- func (d *Descriptor) NewNameList(size, reserved int) gotenresource.NameList
- func (d *Descriptor) NewParentNameList(size, reserved int) gotenresource.ParentNameList
- func (d *Descriptor) NewParentReferenceList(size, reserved int) gotenresource.ParentReferenceList
- func (d *Descriptor) NewQueryResultChange() gotenresource.QueryResultChange
- func (d *Descriptor) NewQueryResultSnapshot() gotenresource.QueryResultSnapshot
- func (d *Descriptor) NewReferenceList(size, reserved int) gotenresource.ReferenceList
- func (d *Descriptor) NewResource() gotenresource.Resource
- func (d *Descriptor) NewResourceChange() gotenresource.ResourceChange
- func (d *Descriptor) NewResourceChangeList(size, reserved int) gotenresource.ResourceChangeList
- func (d *Descriptor) NewResourceChangeMap(reserved int) gotenresource.ResourceChangeMap
- func (d *Descriptor) NewResourceCursor() gotenresource.Cursor
- func (d *Descriptor) NewResourceFieldMask() gotenobject.FieldMask
- func (d *Descriptor) NewResourceFilter() gotenresource.Filter
- func (d *Descriptor) NewResourceList(size, reserved int) gotenresource.ResourceList
- func (d *Descriptor) NewResourceMap(reserved int) gotenresource.ResourceMap
- func (d *Descriptor) NewResourceName() gotenresource.Name
- func (d *Descriptor) NewResourceOrderBy() gotenresource.OrderBy
- func (d *Descriptor) NewResourcePager() gotenresource.PagerQuery
- func (d *Descriptor) NewSearchQuery() gotenresource.SearchQuery
- func (d *Descriptor) NewWatchQuery() gotenresource.WatchQuery
- func (d *Descriptor) ParseFieldPath(raw string) (gotenobject.FieldPath, error)
- func (d *Descriptor) ParseResourceName(nameStr string) (gotenresource.Name, error)
- type Filter
- func (filter *Filter) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
- func (filter *Filter) ConvertToType(typeVal ref.Type) ref.Val
- func (filter *Filter) DecodeFirestore(fpbv *firestorepb.Value) error
- func (filter *Filter) EncodeFirestore() (*firestorepb.Value, error)
- func (filter *Filter) Equal(other ref.Val) ref.Val
- func (filter *Filter) Evaluate(res *Pod) bool
- func (filter *Filter) EvaluateRaw(res gotenresource.Resource) bool
- func (filter *Filter) FilterSlice(in []*Pod) (out []*Pod)
- func (filter *Filter) GetCondition() FilterCondition
- func (filter *Filter) GetRawCondition() gotenresource.FilterCondition
- func (filter *Filter) HasTrait(trait int) bool
- func (filter *Filter) Match(pattern ref.Val) ref.Val
- func (filter *Filter) ParseProtoString(data string) error
- func (filter *Filter) ProtoString() (string, error)
- func (filter *Filter) Receive(function string, overload string, args []ref.Val) ref.Val
- func (filter *Filter) SetFromCliFlag(raw string) error
- func (filter *Filter) String() string
- func (filter *Filter) Type() ref.Type
- func (filter *Filter) TypeName() string
- func (filter *Filter) Value() interface{}
- type FilterBuilder
- func (b *FilterBuilder) Filter() *Filter
- func (b *FilterBuilder) Where(opts ...gotenfilter.FilterConditionOption) *filterCndBuilder
- func (b *FilterBuilder) WherePath(fp Pod_FieldPath, opts ...gotenfilter.FilterConditionOption) *filterCndBuilderAnyPath
- func (b *FilterBuilder) With(condOrBuilder FilterBuilderOrCondition, ...) *FilterBuilder
- type FilterBuilderOrCondition
- type FilterCondition
- type FilterConditionCompare
- func (cond *FilterConditionCompare) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionCompare) ConditionCompare()
- func (cond *FilterConditionCompare) Evaluate(res *Pod) bool
- func (cond *FilterConditionCompare) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionCompare) GetOperator() filterParser.CompareOperator
- func (cond *FilterConditionCompare) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionCompare) GetRawFieldPathValue() gotenobject.FieldPathValue
- func (cond *FilterConditionCompare) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionCompare) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionCompare) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionCompare) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionCompare) String() string
- type FilterConditionComposite
- func (cond *FilterConditionComposite) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionComposite) ConditionComposite()
- func (cond *FilterConditionComposite) Evaluate(res *Pod) bool
- func (cond *FilterConditionComposite) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionComposite) GetOperator() filterParser.CompositeOperator
- func (cond *FilterConditionComposite) GetSubConditions() []gotenresource.FilterCondition
- func (cond *FilterConditionComposite) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionComposite) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionComposite) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionComposite) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionComposite) String() string
- type FilterConditionContains
- func (cond *FilterConditionContains) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionContains) ConditionContains()
- func (cond *FilterConditionContains) ConditionContainsType() gotenresource.ConditionContainsType
- func (cond *FilterConditionContains) Evaluate(res *Pod) bool
- func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionContains) GetFieldPath() Pod_FieldPath
- func (cond *FilterConditionContains) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionContains) GetRawFieldPathItemValue() gotenobject.FieldPathArrayItemValue
- func (cond *FilterConditionContains) GetRawFieldPathItemValues() (res []gotenobject.FieldPathArrayItemValue)
- func (cond *FilterConditionContains) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionContains) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionContains) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionContains) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionContains) String() string
- type FilterConditionIn
- func (cond *FilterConditionIn) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionIn) ConditionIn()
- func (cond *FilterConditionIn) Evaluate(res *Pod) bool
- func (cond *FilterConditionIn) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionIn) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionIn) GetRawFieldPathArrayOfValues() gotenobject.FieldPathArrayOfValues
- func (cond *FilterConditionIn) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionIn) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionIn) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionIn) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionIn) String() string
- type FilterConditionIsNaN
- func (cond *FilterConditionIsNaN) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionIsNaN) ConditionIsNaN()
- func (cond *FilterConditionIsNaN) Evaluate(res *Pod) bool
- func (cond *FilterConditionIsNaN) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionIsNaN) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionIsNaN) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionIsNaN) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionIsNaN) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionIsNaN) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionIsNaN) String() string
- type FilterConditionIsNull
- func (cond *FilterConditionIsNull) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionIsNull) ConditionIsNull()
- func (cond *FilterConditionIsNull) Evaluate(res *Pod) bool
- func (cond *FilterConditionIsNull) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionIsNull) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionIsNull) NotNull() bool
- func (cond *FilterConditionIsNull) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionIsNull) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionIsNull) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionIsNull) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionIsNull) String() string
- type FilterConditionNot
- func (cond *FilterConditionNot) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionNot) ConditionNot()
- func (cond *FilterConditionNot) Evaluate(res *Pod) bool
- func (cond *FilterConditionNot) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionNot) GetSubCondition() gotenresource.FilterCondition
- func (cond *FilterConditionNot) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionNot) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionNot) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionNot) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionNot) String() string
- type FilterConditionNotIn
- func (cond *FilterConditionNotIn) And(conds ...FilterCondition) FilterCondition
- func (cond *FilterConditionNotIn) ConditionNotIn()
- func (cond *FilterConditionNotIn) Evaluate(res *Pod) bool
- func (cond *FilterConditionNotIn) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionNotIn) GetRawFieldPath() gotenobject.FieldPath
- func (cond *FilterConditionNotIn) GetRawFieldPathArrayOfValues() gotenobject.FieldPathArrayOfValues
- func (cond *FilterConditionNotIn) Satisfies(other FilterCondition) bool
- func (cond *FilterConditionNotIn) SatisfiesRaw(other gotenresource.FilterCondition) bool
- func (cond *FilterConditionNotIn) SpecifiesFieldPath(fp Pod_FieldPath) bool
- func (cond *FilterConditionNotIn) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
- func (cond *FilterConditionNotIn) String() string
- type GetQuery
- func (q *GetQuery) GetFieldMask() gotenobject.FieldMask
- func (q *GetQuery) GetReference() gotenresource.Reference
- func (q *GetQuery) GetResourceDescriptor() gotenresource.Descriptor
- func (q *GetQuery) GotenQuery()
- func (q *GetQuery) SetFieldMask(mask gotenobject.FieldMask)
- func (q *GetQuery) SetReference(ref gotenresource.Reference)
- func (q *GetQuery) String() string
- type ListQuery
- func (q *ListQuery) GetFieldMask() gotenobject.FieldMask
- func (q *ListQuery) GetFilter() gotenresource.Filter
- func (q *ListQuery) GetPager() gotenresource.PagerQuery
- func (q *ListQuery) GetResourceDescriptor() gotenresource.Descriptor
- func (q *ListQuery) GetWithPagingInfo() bool
- func (q *ListQuery) GotenQuery()
- func (q *ListQuery) SetFieldMask(mask gotenobject.FieldMask)
- func (q *ListQuery) SetFilter(filter gotenresource.Filter)
- func (q *ListQuery) SetPager(pager gotenresource.PagerQuery)
- func (q *ListQuery) SetWithPagingInfo(with bool)
- func (q *ListQuery) String() string
- type Name
- func (name *Name) AsRawReference() gotenresource.Reference
- func (name *Name) AsReference() *Reference
- func (name *Name) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
- func (name *Name) ConvertToType(typeVal ref.Type) ref.Val
- func (name *Name) Equal(other ref.Val) ref.Val
- func (name *Name) FullyQualifiedName() (string, error)
- func (name *Name) GetIParentName() gotenresource.Name
- func (name *Name) GetIUnderlyingParentName() gotenresource.Name
- func (name *Name) GetIdParts() map[string]string
- func (name *Name) GetPattern() gotenresource.NamePattern
- func (name *Name) GetProjectName() *project.Name
- func (name *Name) GetResourceDescriptor() gotenresource.Descriptor
- func (name *Name) GetSegments() gotenresource.NameSegments
- func (name *Name) GotenEqual(other interface{}) bool
- func (name *Name) HasTrait(trait int) bool
- func (name *Name) IsFullyQualified() bool
- func (name *Name) IsSpecified() bool
- func (name *Name) Match(pattern ref.Val) ref.Val
- func (name *Name) Matches(other interface{}) bool
- func (name *Name) ParseProtoString(data string) error
- func (name *Name) ProtoString() (string, error)
- func (name *Name) Receive(function string, overload string, args []ref.Val) ref.Val
- func (name *Name) SetFromCliFlag(raw string) error
- func (name *Name) SetFromSegments(segments gotenresource.NameSegments) error
- func (name *Name) String() string
- func (name *Name) Type() ref.Type
- func (name *Name) TypeName() string
- func (name *Name) Value() interface{}
- type NameBuilder
- func (b *NameBuilder) Name() *Name
- func (b *NameBuilder) Parent() *ParentName
- func (b *NameBuilder) ParentReference() *ParentReference
- func (b *NameBuilder) Reference() *Reference
- func (b *NameBuilder) SetId(id string) *NameBuilder
- func (b *NameBuilder) SetProject(parent *project.Name) *NameBuilder
- func (b *NameBuilder) SetProjectId(id string) *NameBuilder
- func (b *NameBuilder) SetRegionId(id string) *NameBuilder
- type NamePattern
- type OrderBy
- func (orderBy *OrderBy) Compare(left, right *Pod) int
- func (orderBy *OrderBy) CompareRaw(left, right gotenresource.Resource) int
- func (orderBy *OrderBy) GetFieldMask() *Pod_FieldMask
- func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField
- func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask
- func (orderBy *OrderBy) InsertSorted(sorted PodList, elem *Pod) (PodList, int)
- func (orderBy *OrderBy) InsertSortedRaw(sorted gotenresource.ResourceList, elem gotenresource.Resource) (gotenresource.ResourceList, int)
- func (orderBy *OrderBy) ParseProtoString(data string) error
- func (orderBy *OrderBy) ProtoString() (string, error)
- func (orderBy *OrderBy) SetFromCliFlag(raw string) error
- func (orderBy *OrderBy) Sort(results PodList)
- func (orderBy *OrderBy) SortRaw(results gotenresource.ResourceList)
- func (orderBy *OrderBy) String() string
- type OrderByField
- type PagerCursor
- func (cursor *PagerCursor) GetInclusion() gotenresource.CursorInclusion
- func (cursor *PagerCursor) GetPageDirection() gotenresource.PageDirection
- func (cursor *PagerCursor) GetValue() gotenresource.CursorValue
- func (cursor *PagerCursor) IsEmpty() bool
- func (cursor *PagerCursor) ParseProtoString(data string) (err error)
- func (cursor *PagerCursor) ProtoString() (string, error)
- func (cursor *PagerCursor) SetCursorValue(value gotenresource.CursorValue)
- func (cursor *PagerCursor) SetFromCliFlag(raw string) error
- func (cursor *PagerCursor) SetInclusion(inclusion gotenresource.CursorInclusion)
- func (cursor *PagerCursor) SetPageDirection(direction gotenresource.PageDirection)
- func (cursor *PagerCursor) String() string
- type PagerQuery
- func (p *PagerQuery) GetCursor() gotenresource.Cursor
- func (p *PagerQuery) GetLimit() int
- func (p *PagerQuery) GetOrderBy() gotenresource.OrderBy
- func (p *PagerQuery) GetPeekForward() bool
- func (p *PagerQuery) GetResourceDescriptor() gotenresource.Descriptor
- func (p *PagerQuery) PageDirection() gotenresource.PageDirection
- func (p *PagerQuery) SetCursor(cursor gotenresource.Cursor)
- func (p *PagerQuery) SetLimit(limit int)
- func (p *PagerQuery) SetOrderBy(orderBy gotenresource.OrderBy)
- func (p *PagerQuery) SetPageDirection(direction gotenresource.PageDirection)
- func (p *PagerQuery) SetPeekForward(peekForward bool)
- type ParentName
- func (name *ParentName) AsRawReference() gotenresource.Reference
- func (name *ParentName) AsReference() *ParentReference
- func (name *ParentName) DescendsFrom(ancestor string) bool
- func (name *ParentName) FullyQualifiedName() (string, error)
- func (name *ParentName) GetIParentName() gotenresource.Name
- func (name *ParentName) GetIUnderlyingParentName() gotenresource.Name
- func (name *ParentName) GetIdParts() map[string]string
- func (name *ParentName) GetPattern() gotenresource.NamePattern
- func (name *ParentName) GetProjectName() *project.Name
- func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor
- func (name *ParentName) GetSegments() gotenresource.NameSegments
- func (name *ParentName) GotenEqual(other interface{}) bool
- func (name *ParentName) IsFullyQualified() bool
- func (name *ParentName) IsSpecified() bool
- func (name *ParentName) Matches(other interface{}) bool
- func (name *ParentName) ParseProtoString(data string) error
- func (name *ParentName) ProtoString() (string, error)
- func (name *ParentName) SetFromCliFlag(raw string) error
- func (name *ParentName) SetFromSegments(segments gotenresource.NameSegments) error
- func (name *ParentName) String() string
- type ParentReference
- func (ref *ParentReference) ClearCached()
- func (name *ParentReference) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
- func (name *ParentReference) ConvertToType(typeVal ref.Type) ref.Val
- func (name *ParentReference) Equal(other ref.Val) ref.Val
- func (ref *ParentReference) GetIParentName() gotenresource.Name
- func (ref *ParentReference) GetIUnderlyingParentName() gotenresource.Name
- func (ref *ParentReference) GetIdParts() map[string]string
- func (ref *ParentReference) GetPattern() gotenresource.NamePattern
- func (ref *ParentReference) GetProject() *project.Project
- func (ref *ParentReference) GetProjectReference() *project.Reference
- func (ref *ParentReference) GetRawResource() gotenresource.Resource
- func (ref *ParentReference) GetResourceDescriptor() gotenresource.Descriptor
- func (ref *ParentReference) GetSegments() gotenresource.NameSegments
- func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference
- func (ref *ParentReference) GotenEqual(other interface{}) bool
- func (name *ParentReference) HasTrait(trait int) bool
- func (ref *ParentReference) IsFullyQualified() bool
- func (ref *ParentReference) IsSpecified() bool
- func (name *ParentReference) Match(pattern ref.Val) ref.Val
- func (name *ParentReference) Matches(other interface{}) bool
- func (ref *ParentReference) ParseProtoString(data string) error
- func (ref *ParentReference) ProtoString() (string, error)
- func (name *ParentReference) Receive(function string, overload string, args []ref.Val) ref.Val
- func (ref *ParentReference) ResolveRaw(res gotenresource.Resource) error
- func (ref *ParentReference) Resolved() bool
- func (ref *ParentReference) SetFromCliFlag(raw string) error
- func (ref *ParentReference) String() string
- func (name *ParentReference) Type() ref.Type
- func (name *ParentReference) TypeName() string
- func (name *ParentReference) Value() interface{}
- type Pod
- func (o *Pod) Clone() *Pod
- func (o *Pod) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod) Descriptor() ([]byte, []int)
- func (m *Pod) GetDisplayName() string
- func (m *Pod) GetDistribution() *distribution.Reference
- func (m *Pod) GetMetadata() *ntt_meta.Meta
- func (m *Pod) GetName() *Name
- func (r *Pod) GetRawName() gotenresource.Name
- func (r *Pod) GetResourceDescriptor() gotenresource.Descriptor
- func (m *Pod) GetSpec() *common.PodSpec
- func (m *Pod) GetStatus() *Pod_Status
- func (*Pod) GotenMessage()
- func (o *Pod) GotenObjectExt()
- func (obj *Pod) GotenValidate() error
- func (o *Pod) MakeDiffFieldMask(other *Pod) *Pod_FieldMask
- func (o *Pod) MakeFullFieldMask() *Pod_FieldMask
- func (o *Pod) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod) Marshal() ([]byte, error)
- func (m *Pod) MarshalJSON() ([]byte, error)
- func (r *Pod) MaybePopulateDefaults() error
- func (o *Pod) Merge(source *Pod)
- func (o *Pod) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod) ProtoMessage()
- func (m *Pod) ProtoReflect() preflect.Message
- func (m *Pod) Reset()
- func (m *Pod) SetDisplayName(fv string)
- func (m *Pod) SetDistribution(fv *distribution.Reference)
- func (m *Pod) SetMetadata(fv *ntt_meta.Meta)
- func (m *Pod) SetName(fv *Name)
- func (m *Pod) SetSpec(fv *common.PodSpec)
- func (m *Pod) SetStatus(fv *Pod_Status)
- func (m *Pod) String() string
- func (m *Pod) Unmarshal(b []byte) error
- func (m *Pod) UnmarshalJSON(data []byte) error
- type PodAccess
- type PodChange
- func (*PodChange) Descriptor() ([]byte, []int)
- func (m *PodChange) GetAdded() *PodChange_Added
- func (m *PodChange) GetChangeType() isPodChange_ChangeType
- func (m *PodChange) GetCurrent() *PodChange_Current
- func (c *PodChange) GetCurrentViewIndex() int32
- func (m *PodChange) GetModified() *PodChange_Modified
- func (c *PodChange) GetPod() *Pod
- func (c *PodChange) GetPodName() *Name
- func (c *PodChange) GetPreviousViewIndex() int32
- func (c *PodChange) GetRawName() gotenresource.Name
- func (c *PodChange) GetRawResource() gotenresource.Resource
- func (m *PodChange) GetRemoved() *PodChange_Removed
- func (*PodChange) GotenMessage()
- func (obj *PodChange) GotenValidate() error
- func (c *PodChange) IsAdd() bool
- func (c *PodChange) IsCurrent() bool
- func (c *PodChange) IsDelete() bool
- func (c *PodChange) IsModify() bool
- func (m *PodChange) Marshal() ([]byte, error)
- func (m *PodChange) MarshalJSON() ([]byte, error)
- func (*PodChange) ProtoMessage()
- func (m *PodChange) ProtoReflect() preflect.Message
- func (m *PodChange) Reset()
- func (m *PodChange) SetAdded(fv *PodChange_Added)
- func (c *PodChange) SetAddedRaw(snapshot gotenresource.Resource, idx int)
- func (m *PodChange) SetChangeType(ofv isPodChange_ChangeType)
- func (m *PodChange) SetCurrent(fv *PodChange_Current)
- func (c *PodChange) SetCurrentRaw(snapshot gotenresource.Resource)
- func (c *PodChange) SetDeletedRaw(name gotenresource.Name, idx int)
- func (m *PodChange) SetModified(fv *PodChange_Modified)
- func (c *PodChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, ...)
- func (m *PodChange) SetRemoved(fv *PodChange_Removed)
- func (m *PodChange) String() string
- func (m *PodChange) Unmarshal(b []byte) error
- func (m *PodChange) UnmarshalJSON(data []byte) error
- type PodChangeList
- func (l PodChangeList) Append(item gotenresource.ResourceChange) gotenresource.ResourceChangeList
- func (l PodChangeList) AppendList(list gotenresource.ResourceChangeList) gotenresource.ResourceChangeList
- func (l PodChangeList) At(idx int) gotenresource.ResourceChange
- func (l PodChangeList) Length() int
- func (l PodChangeList) Set(idx int, change gotenresource.ResourceChange)
- func (l PodChangeList) Slice(first, second int) gotenresource.ResourceChangeList
- type PodChangeMap
- func (m PodChangeMap) Delete(name gotenresource.Name)
- func (m PodChangeMap) ForEach(cb func(gotenresource.Name, gotenresource.ResourceChange) bool)
- func (m PodChangeMap) Get(name gotenresource.Name) gotenresource.ResourceChange
- func (m PodChangeMap) Length() int
- func (m PodChangeMap) Set(change gotenresource.ResourceChange)
- type PodChange_Added
- func (*PodChange_Added) Descriptor() ([]byte, []int)
- func (m *PodChange_Added) GetPod() *Pod
- func (m *PodChange_Added) GetViewIndex() int32
- func (*PodChange_Added) GotenMessage()
- func (obj *PodChange_Added) GotenValidate() error
- func (m *PodChange_Added) Marshal() ([]byte, error)
- func (m *PodChange_Added) MarshalJSON() ([]byte, error)
- func (*PodChange_Added) ProtoMessage()
- func (m *PodChange_Added) ProtoReflect() preflect.Message
- func (m *PodChange_Added) Reset()
- func (m *PodChange_Added) SetPod(fv *Pod)
- func (m *PodChange_Added) SetViewIndex(fv int32)
- func (m *PodChange_Added) String() string
- func (m *PodChange_Added) Unmarshal(b []byte) error
- func (m *PodChange_Added) UnmarshalJSON(data []byte) error
- type PodChange_Added_
- type PodChange_Current
- func (*PodChange_Current) Descriptor() ([]byte, []int)
- func (m *PodChange_Current) GetPod() *Pod
- func (*PodChange_Current) GotenMessage()
- func (obj *PodChange_Current) GotenValidate() error
- func (m *PodChange_Current) Marshal() ([]byte, error)
- func (m *PodChange_Current) MarshalJSON() ([]byte, error)
- func (*PodChange_Current) ProtoMessage()
- func (m *PodChange_Current) ProtoReflect() preflect.Message
- func (m *PodChange_Current) Reset()
- func (m *PodChange_Current) SetPod(fv *Pod)
- func (m *PodChange_Current) String() string
- func (m *PodChange_Current) Unmarshal(b []byte) error
- func (m *PodChange_Current) UnmarshalJSON(data []byte) error
- type PodChange_Current_
- type PodChange_Modified
- func (*PodChange_Modified) Descriptor() ([]byte, []int)
- func (m *PodChange_Modified) GetFieldMask() *Pod_FieldMask
- func (m *PodChange_Modified) GetName() *Name
- func (m *PodChange_Modified) GetPod() *Pod
- func (m *PodChange_Modified) GetPreviousViewIndex() int32
- func (m *PodChange_Modified) GetViewIndex() int32
- func (*PodChange_Modified) GotenMessage()
- func (obj *PodChange_Modified) GotenValidate() error
- func (m *PodChange_Modified) Marshal() ([]byte, error)
- func (m *PodChange_Modified) MarshalJSON() ([]byte, error)
- func (*PodChange_Modified) ProtoMessage()
- func (m *PodChange_Modified) ProtoReflect() preflect.Message
- func (m *PodChange_Modified) Reset()
- func (m *PodChange_Modified) SetFieldMask(fv *Pod_FieldMask)
- func (m *PodChange_Modified) SetName(fv *Name)
- func (m *PodChange_Modified) SetPod(fv *Pod)
- func (m *PodChange_Modified) SetPreviousViewIndex(fv int32)
- func (m *PodChange_Modified) SetViewIndex(fv int32)
- func (m *PodChange_Modified) String() string
- func (m *PodChange_Modified) Unmarshal(b []byte) error
- func (m *PodChange_Modified) UnmarshalJSON(data []byte) error
- type PodChange_Modified_
- type PodChange_Removed
- func (*PodChange_Removed) Descriptor() ([]byte, []int)
- func (m *PodChange_Removed) GetName() *Name
- func (m *PodChange_Removed) GetViewIndex() int32
- func (*PodChange_Removed) GotenMessage()
- func (obj *PodChange_Removed) GotenValidate() error
- func (m *PodChange_Removed) Marshal() ([]byte, error)
- func (m *PodChange_Removed) MarshalJSON() ([]byte, error)
- func (*PodChange_Removed) ProtoMessage()
- func (m *PodChange_Removed) ProtoReflect() preflect.Message
- func (m *PodChange_Removed) Reset()
- func (m *PodChange_Removed) SetName(fv *Name)
- func (m *PodChange_Removed) SetViewIndex(fv int32)
- func (m *PodChange_Removed) String() string
- func (m *PodChange_Removed) Unmarshal(b []byte) error
- func (m *PodChange_Removed) UnmarshalJSON(data []byte) error
- type PodChange_Removed_
- type PodFieldPathBuilder
- func (PodFieldPathBuilder) DisplayName() PodPathSelectorDisplayName
- func (PodFieldPathBuilder) Distribution() PodPathSelectorDistribution
- func (PodFieldPathBuilder) Metadata() PodPathSelectorMetadata
- func (PodFieldPathBuilder) Name() PodPathSelectorName
- func (PodFieldPathBuilder) Spec() PodPathSelectorSpec
- func (PodFieldPathBuilder) Status() PodPathSelectorStatus
- type PodList
- func (l PodList) Append(item gotenresource.Resource) gotenresource.ResourceList
- func (l PodList) AppendList(list gotenresource.ResourceList) gotenresource.ResourceList
- func (l PodList) At(idx int) gotenresource.Resource
- func (l PodList) Length() int
- func (l PodList) Set(idx int, res gotenresource.Resource)
- func (l PodList) Slice(first, second int) gotenresource.ResourceList
- type PodMap
- type PodMapPathSelectorMetadataAnnotations
- type PodMapPathSelectorMetadataLabels
- type PodMapPathSelectorMetadataShards
- type PodMapPathSelectorSpecContainersResourcesLimits
- func (s PodMapPathSelectorSpecContainersResourcesLimits) FieldPath() *Pod_FieldSubPath
- func (s PodMapPathSelectorSpecContainersResourcesLimits) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
- func (s PodMapPathSelectorSpecContainersResourcesLimits) WithValue(value int64) *Pod_FieldSubPathValue
- type PodMapPathSelectorSpecContainersResourcesRequests
- func (s PodMapPathSelectorSpecContainersResourcesRequests) FieldPath() *Pod_FieldSubPath
- func (s PodMapPathSelectorSpecContainersResourcesRequests) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
- func (s PodMapPathSelectorSpecContainersResourcesRequests) WithValue(value int64) *Pod_FieldSubPathValue
- type PodNameList
- func (l PodNameList) Append(name gotenresource.Name) gotenresource.NameList
- func (l PodNameList) AppendList(list gotenresource.NameList) gotenresource.NameList
- func (l PodNameList) At(idx int) gotenresource.Name
- func (l PodNameList) Length() int
- func (l PodNameList) Set(idx int, name gotenresource.Name)
- func (l PodNameList) Slice(first, second int) gotenresource.NameList
- type PodParentNameList
- func (l PodParentNameList) Append(name gotenresource.Name) gotenresource.ParentNameList
- func (l PodParentNameList) AppendList(list gotenresource.ParentNameList) gotenresource.ParentNameList
- func (l PodParentNameList) At(idx int) gotenresource.Name
- func (l PodParentNameList) Length() int
- func (l PodParentNameList) Set(idx int, name gotenresource.Name)
- func (l PodParentNameList) Slice(first, second int) gotenresource.ParentNameList
- type PodParentReferenceList
- func (l PodParentReferenceList) Append(ref gotenresource.Reference) gotenresource.ParentReferenceList
- func (l PodParentReferenceList) AppendList(list gotenresource.ParentReferenceList) gotenresource.ParentReferenceList
- func (l PodParentReferenceList) At(idx int) gotenresource.Reference
- func (l PodParentReferenceList) Length() int
- func (l PodParentReferenceList) Set(idx int, ref gotenresource.Reference)
- func (l PodParentReferenceList) Slice(first, second int) gotenresource.ParentReferenceList
- type PodPathSelectorDisplayName
- type PodPathSelectorDistribution
- func (PodPathSelectorDistribution) FieldPath() *Pod_FieldTerminalPath
- func (s PodPathSelectorDistribution) WithArrayOfValues(values []*distribution.Reference) *Pod_FieldTerminalPathArrayOfValues
- func (s PodPathSelectorDistribution) WithValue(value *distribution.Reference) *Pod_FieldTerminalPathValue
- type PodPathSelectorMetadata
- func (PodPathSelectorMetadata) Annotations() PodPathSelectorMetadataAnnotations
- func (PodPathSelectorMetadata) CreateTime() PodPathSelectorMetadataCreateTime
- func (PodPathSelectorMetadata) DeleteTime() PodPathSelectorMetadataDeleteTime
- func (PodPathSelectorMetadata) FieldPath() *Pod_FieldTerminalPath
- func (PodPathSelectorMetadata) Generation() PodPathSelectorMetadataGeneration
- func (PodPathSelectorMetadata) Labels() PodPathSelectorMetadataLabels
- func (PodPathSelectorMetadata) Lifecycle() PodPathSelectorMetadataLifecycle
- func (PodPathSelectorMetadata) OwnerReferences() PodPathSelectorMetadataOwnerReferences
- func (PodPathSelectorMetadata) ResourceVersion() PodPathSelectorMetadataResourceVersion
- func (PodPathSelectorMetadata) Shards() PodPathSelectorMetadataShards
- func (PodPathSelectorMetadata) Syncing() PodPathSelectorMetadataSyncing
- func (PodPathSelectorMetadata) Tags() PodPathSelectorMetadataTags
- func (PodPathSelectorMetadata) UpdateTime() PodPathSelectorMetadataUpdateTime
- func (PodPathSelectorMetadata) Uuid() PodPathSelectorMetadataUuid
- func (s PodPathSelectorMetadata) WithArrayOfValues(values []*ntt_meta.Meta) *Pod_FieldTerminalPathArrayOfValues
- func (s PodPathSelectorMetadata) WithSubArrayItemValue(subPathArrayItemValue ntt_meta.Meta_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorMetadata) WithSubArrayOfValues(subPathArrayOfValues ntt_meta.Meta_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorMetadata) WithSubPath(subPath ntt_meta.Meta_FieldPath) *Pod_FieldSubPath
- func (s PodPathSelectorMetadata) WithSubValue(subPathValue ntt_meta.Meta_FieldPathValue) *Pod_FieldSubPathValue
- func (s PodPathSelectorMetadata) WithValue(value *ntt_meta.Meta) *Pod_FieldTerminalPathValue
- type PodPathSelectorMetadataAnnotations
- func (PodPathSelectorMetadataAnnotations) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataAnnotations) WithArrayOfValues(values []map[string]string) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorMetadataAnnotations) WithKey(key string) PodMapPathSelectorMetadataAnnotations
- func (s PodPathSelectorMetadataAnnotations) WithValue(value map[string]string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataCreateTime
- type PodPathSelectorMetadataDeleteTime
- type PodPathSelectorMetadataGeneration
- type PodPathSelectorMetadataLabels
- func (PodPathSelectorMetadataLabels) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataLabels) WithArrayOfValues(values []map[string]string) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorMetadataLabels) WithKey(key string) PodMapPathSelectorMetadataLabels
- func (s PodPathSelectorMetadataLabels) WithValue(value map[string]string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataLifecycle
- func (PodPathSelectorMetadataLifecycle) BlockDeletion() PodPathSelectorMetadataLifecycleBlockDeletion
- func (PodPathSelectorMetadataLifecycle) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorMetadataLifecycle) State() PodPathSelectorMetadataLifecycleState
- func (s PodPathSelectorMetadataLifecycle) WithArrayOfValues(values []*ntt_meta.Lifecycle) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataLifecycle) WithValue(value *ntt_meta.Lifecycle) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataLifecycleBlockDeletion
- func (PodPathSelectorMetadataLifecycleBlockDeletion) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataLifecycleBlockDeletion) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataLifecycleState
- func (PodPathSelectorMetadataLifecycleState) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataLifecycleState) WithArrayOfValues(values []ntt_meta.Lifecycle_State) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataLifecycleState) WithValue(value ntt_meta.Lifecycle_State) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferences
- func (PodPathSelectorMetadataOwnerReferences) BlockOwnerDeletion() PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion
- func (PodPathSelectorMetadataOwnerReferences) Controller() PodPathSelectorMetadataOwnerReferencesController
- func (PodPathSelectorMetadataOwnerReferences) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorMetadataOwnerReferences) Kind() PodPathSelectorMetadataOwnerReferencesKind
- func (PodPathSelectorMetadataOwnerReferences) Name() PodPathSelectorMetadataOwnerReferencesName
- func (PodPathSelectorMetadataOwnerReferences) Region() PodPathSelectorMetadataOwnerReferencesRegion
- func (PodPathSelectorMetadataOwnerReferences) RequiresOwnerReference() PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference
- func (PodPathSelectorMetadataOwnerReferences) Version() PodPathSelectorMetadataOwnerReferencesVersion
- func (s PodPathSelectorMetadataOwnerReferences) WithArrayOfValues(values [][]*ntt_meta.OwnerReference) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferences) WithItemValue(value *ntt_meta.OwnerReference) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorMetadataOwnerReferences) WithValue(value []*ntt_meta.OwnerReference) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion
- func (PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferencesController
- func (PodPathSelectorMetadataOwnerReferencesController) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataOwnerReferencesController) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferencesController) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferencesKind
- type PodPathSelectorMetadataOwnerReferencesName
- type PodPathSelectorMetadataOwnerReferencesRegion
- func (PodPathSelectorMetadataOwnerReferencesRegion) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferencesRegion) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference
- func (PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataOwnerReferencesVersion
- func (PodPathSelectorMetadataOwnerReferencesVersion) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataOwnerReferencesVersion) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataResourceVersion
- type PodPathSelectorMetadataShards
- func (PodPathSelectorMetadataShards) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataShards) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorMetadataShards) WithKey(key string) PodMapPathSelectorMetadataShards
- func (s PodPathSelectorMetadataShards) WithValue(value map[string]int64) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataSyncing
- func (PodPathSelectorMetadataSyncing) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorMetadataSyncing) OwningRegion() PodPathSelectorMetadataSyncingOwningRegion
- func (PodPathSelectorMetadataSyncing) Regions() PodPathSelectorMetadataSyncingRegions
- func (s PodPathSelectorMetadataSyncing) WithArrayOfValues(values []*ntt_meta.SyncingMeta) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataSyncing) WithValue(value *ntt_meta.SyncingMeta) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataSyncingOwningRegion
- type PodPathSelectorMetadataSyncingRegions
- func (PodPathSelectorMetadataSyncingRegions) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataSyncingRegions) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataSyncingRegions) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorMetadataSyncingRegions) WithValue(value []string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataTags
- func (PodPathSelectorMetadataTags) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorMetadataTags) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorMetadataTags) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorMetadataTags) WithValue(value []string) *Pod_FieldSubPathValue
- type PodPathSelectorMetadataUpdateTime
- type PodPathSelectorMetadataUuid
- type PodPathSelectorName
- type PodPathSelectorSpec
- func (PodPathSelectorSpec) Compose() PodPathSelectorSpecCompose
- func (PodPathSelectorSpec) Containers() PodPathSelectorSpecContainers
- func (PodPathSelectorSpec) FieldPath() *Pod_FieldTerminalPath
- func (PodPathSelectorSpec) HostNetwork() PodPathSelectorSpecHostNetwork
- func (PodPathSelectorSpec) HostVolumeMounts() PodPathSelectorSpecHostVolumeMounts
- func (PodPathSelectorSpec) ImagePullSecrets() PodPathSelectorSpecImagePullSecrets
- func (PodPathSelectorSpec) Node() PodPathSelectorSpecNode
- func (PodPathSelectorSpec) RestartPolicy() PodPathSelectorSpecRestartPolicy
- func (PodPathSelectorSpec) Volumes() PodPathSelectorSpecVolumes
- func (s PodPathSelectorSpec) WithArrayOfValues(values []*common.PodSpec) *Pod_FieldTerminalPathArrayOfValues
- func (s PodPathSelectorSpec) WithSubArrayItemValue(subPathArrayItemValue common.PodSpec_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpec) WithSubArrayOfValues(subPathArrayOfValues common.PodSpec_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorSpec) WithSubPath(subPath common.PodSpec_FieldPath) *Pod_FieldSubPath
- func (s PodPathSelectorSpec) WithSubValue(subPathValue common.PodSpec_FieldPathValue) *Pod_FieldSubPathValue
- func (s PodPathSelectorSpec) WithValue(value *common.PodSpec) *Pod_FieldTerminalPathValue
- type PodPathSelectorSpecCompose
- type PodPathSelectorSpecContainers
- func (PodPathSelectorSpecContainers) Args() PodPathSelectorSpecContainersArgs
- func (PodPathSelectorSpecContainers) Command() PodPathSelectorSpecContainersCommand
- func (PodPathSelectorSpecContainers) Env() PodPathSelectorSpecContainersEnv
- func (PodPathSelectorSpecContainers) EnvFrom() PodPathSelectorSpecContainersEnvFrom
- func (PodPathSelectorSpecContainers) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainers) Image() PodPathSelectorSpecContainersImage
- func (PodPathSelectorSpecContainers) ImagePullPolicy() PodPathSelectorSpecContainersImagePullPolicy
- func (PodPathSelectorSpecContainers) Name() PodPathSelectorSpecContainersName
- func (PodPathSelectorSpecContainers) Resources() PodPathSelectorSpecContainersResources
- func (PodPathSelectorSpecContainers) SecurityContext() PodPathSelectorSpecContainersSecurityContext
- func (PodPathSelectorSpecContainers) VolumeMounts() PodPathSelectorSpecContainersVolumeMounts
- func (s PodPathSelectorSpecContainers) WithArrayOfValues(values [][]*common.PodSpec_Container) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainers) WithItemValue(value *common.PodSpec_Container) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecContainers) WithValue(value []*common.PodSpec_Container) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersArgs
- func (PodPathSelectorSpecContainersArgs) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersArgs) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersArgs) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecContainersArgs) WithValue(value []string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersCommand
- func (PodPathSelectorSpecContainersCommand) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersCommand) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersCommand) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecContainersCommand) WithValue(value []string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnv
- func (PodPathSelectorSpecContainersEnv) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnv) Name() PodPathSelectorSpecContainersEnvName
- func (PodPathSelectorSpecContainersEnv) Value() PodPathSelectorSpecContainersEnvValue
- func (PodPathSelectorSpecContainersEnv) ValueFrom() PodPathSelectorSpecContainersEnvValueFrom
- func (s PodPathSelectorSpecContainersEnv) WithArrayOfValues(values [][]*common.EnvVar) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnv) WithItemValue(value *common.EnvVar) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecContainersEnv) WithValue(value []*common.EnvVar) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFrom
- func (PodPathSelectorSpecContainersEnvFrom) ConfigMapRef() PodPathSelectorSpecContainersEnvFromConfigMapRef
- func (PodPathSelectorSpecContainersEnvFrom) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvFrom) Prefix() PodPathSelectorSpecContainersEnvFromPrefix
- func (PodPathSelectorSpecContainersEnvFrom) SecretRef() PodPathSelectorSpecContainersEnvFromSecretRef
- func (s PodPathSelectorSpecContainersEnvFrom) WithArrayOfValues(values []*common.EnvFromSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFrom) WithValue(value *common.EnvFromSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromConfigMapRef
- func (PodPathSelectorSpecContainersEnvFromConfigMapRef) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvFromConfigMapRef) Name() PodPathSelectorSpecContainersEnvFromConfigMapRefName
- func (PodPathSelectorSpecContainersEnvFromConfigMapRef) Optional() PodPathSelectorSpecContainersEnvFromConfigMapRefOptional
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRef) WithArrayOfValues(values []*common.ConfigMapEnvSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRef) WithValue(value *common.ConfigMapEnvSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromConfigMapRefName
- func (PodPathSelectorSpecContainersEnvFromConfigMapRefName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromConfigMapRefOptional
- func (PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromPrefix
- type PodPathSelectorSpecContainersEnvFromSecretRef
- func (PodPathSelectorSpecContainersEnvFromSecretRef) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvFromSecretRef) Name() PodPathSelectorSpecContainersEnvFromSecretRefName
- func (PodPathSelectorSpecContainersEnvFromSecretRef) Optional() PodPathSelectorSpecContainersEnvFromSecretRefOptional
- func (s PodPathSelectorSpecContainersEnvFromSecretRef) WithArrayOfValues(values []*common.SecretEnvSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromSecretRef) WithValue(value *common.SecretEnvSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromSecretRefName
- func (PodPathSelectorSpecContainersEnvFromSecretRefName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvFromSecretRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromSecretRefName) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvFromSecretRefOptional
- func (PodPathSelectorSpecContainersEnvFromSecretRefOptional) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvName
- type PodPathSelectorSpecContainersEnvValue
- type PodPathSelectorSpecContainersEnvValueFrom
- func (PodPathSelectorSpecContainersEnvValueFrom) ConfigMapKeyRef() PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef
- func (PodPathSelectorSpecContainersEnvValueFrom) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvValueFrom) SecretKeyRef() PodPathSelectorSpecContainersEnvValueFromSecretKeyRef
- func (s PodPathSelectorSpecContainersEnvValueFrom) WithArrayOfValues(values []*common.EnvVarSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFrom) WithValue(value *common.EnvVarSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) Key() PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) Name() PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) Optional() PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithArrayOfValues(values []*common.ConfigMapKeySelector) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithValue(value *common.ConfigMapKeySelector) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional
- func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromSecretKeyRef
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) Key() PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) Name() PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) Optional() PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithArrayOfValues(values []*common.SecretKeySelector) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithValue(value *common.SecretKeySelector) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional
- func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersImage
- type PodPathSelectorSpecContainersImagePullPolicy
- func (PodPathSelectorSpecContainersImagePullPolicy) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersImagePullPolicy) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersImagePullPolicy) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersName
- type PodPathSelectorSpecContainersResources
- func (PodPathSelectorSpecContainersResources) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersResources) Limits() PodPathSelectorSpecContainersResourcesLimits
- func (PodPathSelectorSpecContainersResources) Requests() PodPathSelectorSpecContainersResourcesRequests
- func (s PodPathSelectorSpecContainersResources) WithArrayOfValues(values []*common.PodSpec_Container_ResourceRequirements) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersResources) WithValue(value *common.PodSpec_Container_ResourceRequirements) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersResourcesLimits
- func (PodPathSelectorSpecContainersResourcesLimits) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersResourcesLimits) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorSpecContainersResourcesLimits) WithKey(key string) PodMapPathSelectorSpecContainersResourcesLimits
- func (s PodPathSelectorSpecContainersResourcesLimits) WithValue(value map[string]int64) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersResourcesRequests
- func (PodPathSelectorSpecContainersResourcesRequests) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersResourcesRequests) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorSpecContainersResourcesRequests) WithKey(key string) PodMapPathSelectorSpecContainersResourcesRequests
- func (s PodPathSelectorSpecContainersResourcesRequests) WithValue(value map[string]int64) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersSecurityContext
- func (PodPathSelectorSpecContainersSecurityContext) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersSecurityContext) Privileged() PodPathSelectorSpecContainersSecurityContextPrivileged
- func (s PodPathSelectorSpecContainersSecurityContext) WithArrayOfValues(values []*common.SecurityContext) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersSecurityContext) WithValue(value *common.SecurityContext) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersSecurityContextPrivileged
- func (PodPathSelectorSpecContainersSecurityContextPrivileged) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersSecurityContextPrivileged) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersSecurityContextPrivileged) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersVolumeMounts
- func (PodPathSelectorSpecContainersVolumeMounts) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecContainersVolumeMounts) MountPath() PodPathSelectorSpecContainersVolumeMountsMountPath
- func (PodPathSelectorSpecContainersVolumeMounts) Name() PodPathSelectorSpecContainersVolumeMountsName
- func (PodPathSelectorSpecContainersVolumeMounts) ReadOnly() PodPathSelectorSpecContainersVolumeMountsReadOnly
- func (PodPathSelectorSpecContainersVolumeMounts) SubPath() PodPathSelectorSpecContainersVolumeMountsSubPath
- func (s PodPathSelectorSpecContainersVolumeMounts) WithArrayOfValues(values [][]*common.VolumeMount) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersVolumeMounts) WithItemValue(value *common.VolumeMount) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecContainersVolumeMounts) WithValue(value []*common.VolumeMount) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersVolumeMountsMountPath
- func (PodPathSelectorSpecContainersVolumeMountsMountPath) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersVolumeMountsMountPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersVolumeMountsMountPath) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersVolumeMountsName
- func (PodPathSelectorSpecContainersVolumeMountsName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersVolumeMountsName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersVolumeMountsName) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersVolumeMountsReadOnly
- func (PodPathSelectorSpecContainersVolumeMountsReadOnly) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersVolumeMountsReadOnly) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersVolumeMountsReadOnly) WithValue(value bool) *Pod_FieldSubPathValue
- type PodPathSelectorSpecContainersVolumeMountsSubPath
- func (PodPathSelectorSpecContainersVolumeMountsSubPath) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecContainersVolumeMountsSubPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecContainersVolumeMountsSubPath) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecHostNetwork
- type PodPathSelectorSpecHostVolumeMounts
- func (PodPathSelectorSpecHostVolumeMounts) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecHostVolumeMounts) MountPath() PodPathSelectorSpecHostVolumeMountsMountPath
- func (PodPathSelectorSpecHostVolumeMounts) Name() PodPathSelectorSpecHostVolumeMountsName
- func (PodPathSelectorSpecHostVolumeMounts) ReadOnly() PodPathSelectorSpecHostVolumeMountsReadOnly
- func (PodPathSelectorSpecHostVolumeMounts) SubPath() PodPathSelectorSpecHostVolumeMountsSubPath
- func (s PodPathSelectorSpecHostVolumeMounts) WithArrayOfValues(values [][]*common.VolumeMount) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecHostVolumeMounts) WithItemValue(value *common.VolumeMount) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecHostVolumeMounts) WithValue(value []*common.VolumeMount) *Pod_FieldSubPathValue
- type PodPathSelectorSpecHostVolumeMountsMountPath
- func (PodPathSelectorSpecHostVolumeMountsMountPath) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecHostVolumeMountsMountPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecHostVolumeMountsMountPath) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecHostVolumeMountsName
- type PodPathSelectorSpecHostVolumeMountsReadOnly
- type PodPathSelectorSpecHostVolumeMountsSubPath
- type PodPathSelectorSpecImagePullSecrets
- func (PodPathSelectorSpecImagePullSecrets) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecImagePullSecrets) Name() PodPathSelectorSpecImagePullSecretsName
- func (s PodPathSelectorSpecImagePullSecrets) WithArrayOfValues(values [][]*common.LocalObjectReferenceSecret) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecImagePullSecrets) WithItemValue(value *common.LocalObjectReferenceSecret) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecImagePullSecrets) WithValue(value []*common.LocalObjectReferenceSecret) *Pod_FieldSubPathValue
- type PodPathSelectorSpecImagePullSecretsName
- func (PodPathSelectorSpecImagePullSecretsName) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecImagePullSecretsName) WithArrayOfValues(values []*secrets_secret.Reference) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecImagePullSecretsName) WithValue(value *secrets_secret.Reference) *Pod_FieldSubPathValue
- type PodPathSelectorSpecNode
- type PodPathSelectorSpecRestartPolicy
- func (PodPathSelectorSpecRestartPolicy) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecRestartPolicy) WithArrayOfValues(values []common.PodSpec_RestartPolicy) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecRestartPolicy) WithValue(value common.PodSpec_RestartPolicy) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumes
- func (PodPathSelectorSpecVolumes) ConfigMap() PodPathSelectorSpecVolumesConfigMap
- func (PodPathSelectorSpecVolumes) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumes) HostPath() PodPathSelectorSpecVolumesHostPath
- func (PodPathSelectorSpecVolumes) Name() PodPathSelectorSpecVolumesName
- func (PodPathSelectorSpecVolumes) Secret() PodPathSelectorSpecVolumesSecret
- func (s PodPathSelectorSpecVolumes) WithArrayOfValues(values [][]*common.Volume) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumes) WithItemValue(value *common.Volume) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecVolumes) WithValue(value []*common.Volume) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMap
- func (PodPathSelectorSpecVolumesConfigMap) DefaultMode() PodPathSelectorSpecVolumesConfigMapDefaultMode
- func (PodPathSelectorSpecVolumesConfigMap) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumesConfigMap) Items() PodPathSelectorSpecVolumesConfigMapItems
- func (PodPathSelectorSpecVolumesConfigMap) Name() PodPathSelectorSpecVolumesConfigMapName
- func (PodPathSelectorSpecVolumesConfigMap) Optional() PodPathSelectorSpecVolumesConfigMapOptional
- func (s PodPathSelectorSpecVolumesConfigMap) WithArrayOfValues(values []*common.ConfigMapVolumeSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesConfigMap) WithValue(value *common.ConfigMapVolumeSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMapDefaultMode
- func (PodPathSelectorSpecVolumesConfigMapDefaultMode) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecVolumesConfigMapDefaultMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesConfigMapDefaultMode) WithValue(value int32) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMapItems
- func (PodPathSelectorSpecVolumesConfigMapItems) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumesConfigMapItems) Key() PodPathSelectorSpecVolumesConfigMapItemsKey
- func (PodPathSelectorSpecVolumesConfigMapItems) Mode() PodPathSelectorSpecVolumesConfigMapItemsMode
- func (PodPathSelectorSpecVolumesConfigMapItems) Path() PodPathSelectorSpecVolumesConfigMapItemsPath
- func (s PodPathSelectorSpecVolumesConfigMapItems) WithArrayOfValues(values [][]*common.KeyToPath) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesConfigMapItems) WithItemValue(value *common.KeyToPath) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecVolumesConfigMapItems) WithValue(value []*common.KeyToPath) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMapItemsKey
- type PodPathSelectorSpecVolumesConfigMapItemsMode
- func (PodPathSelectorSpecVolumesConfigMapItemsMode) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecVolumesConfigMapItemsMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesConfigMapItemsMode) WithValue(value int32) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMapItemsPath
- func (PodPathSelectorSpecVolumesConfigMapItemsPath) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecVolumesConfigMapItemsPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesConfigMapItemsPath) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesConfigMapName
- type PodPathSelectorSpecVolumesConfigMapOptional
- type PodPathSelectorSpecVolumesHostPath
- func (PodPathSelectorSpecVolumesHostPath) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumesHostPath) Path() PodPathSelectorSpecVolumesHostPathPath
- func (PodPathSelectorSpecVolumesHostPath) Type() PodPathSelectorSpecVolumesHostPathType
- func (s PodPathSelectorSpecVolumesHostPath) WithArrayOfValues(values []*common.HostPathVolumeSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesHostPath) WithValue(value *common.HostPathVolumeSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesHostPathPath
- type PodPathSelectorSpecVolumesHostPathType
- func (PodPathSelectorSpecVolumesHostPathType) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorSpecVolumesHostPathType) WithArrayOfValues(values []common.HostPathVolumeSource_Type) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesHostPathType) WithValue(value common.HostPathVolumeSource_Type) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesName
- type PodPathSelectorSpecVolumesSecret
- func (PodPathSelectorSpecVolumesSecret) DefaultMode() PodPathSelectorSpecVolumesSecretDefaultMode
- func (PodPathSelectorSpecVolumesSecret) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumesSecret) Items() PodPathSelectorSpecVolumesSecretItems
- func (PodPathSelectorSpecVolumesSecret) Optional() PodPathSelectorSpecVolumesSecretOptional
- func (PodPathSelectorSpecVolumesSecret) SecretName() PodPathSelectorSpecVolumesSecretSecretName
- func (s PodPathSelectorSpecVolumesSecret) WithArrayOfValues(values []*common.SecretVolumeSource) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesSecret) WithValue(value *common.SecretVolumeSource) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesSecretDefaultMode
- type PodPathSelectorSpecVolumesSecretItems
- func (PodPathSelectorSpecVolumesSecretItems) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorSpecVolumesSecretItems) Key() PodPathSelectorSpecVolumesSecretItemsKey
- func (PodPathSelectorSpecVolumesSecretItems) Mode() PodPathSelectorSpecVolumesSecretItemsMode
- func (PodPathSelectorSpecVolumesSecretItems) Path() PodPathSelectorSpecVolumesSecretItemsPath
- func (s PodPathSelectorSpecVolumesSecretItems) WithArrayOfValues(values [][]*common.KeyToPath) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorSpecVolumesSecretItems) WithItemValue(value *common.KeyToPath) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorSpecVolumesSecretItems) WithValue(value []*common.KeyToPath) *Pod_FieldSubPathValue
- type PodPathSelectorSpecVolumesSecretItemsKey
- type PodPathSelectorSpecVolumesSecretItemsMode
- type PodPathSelectorSpecVolumesSecretItemsPath
- type PodPathSelectorSpecVolumesSecretOptional
- type PodPathSelectorSpecVolumesSecretSecretName
- type PodPathSelectorStatus
- func (PodPathSelectorStatus) ContainerStatuses() PodPathSelectorStatusContainerStatuses
- func (PodPathSelectorStatus) Error() PodPathSelectorStatusError
- func (PodPathSelectorStatus) FieldPath() *Pod_FieldTerminalPath
- func (PodPathSelectorStatus) Phase() PodPathSelectorStatusPhase
- func (s PodPathSelectorStatus) WithArrayOfValues(values []*Pod_Status) *Pod_FieldTerminalPathArrayOfValues
- func (s PodPathSelectorStatus) WithSubArrayItemValue(subPathArrayItemValue PodStatus_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorStatus) WithSubArrayOfValues(subPathArrayOfValues PodStatus_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
- func (PodPathSelectorStatus) WithSubPath(subPath PodStatus_FieldPath) *Pod_FieldSubPath
- func (s PodPathSelectorStatus) WithSubValue(subPathValue PodStatus_FieldPathValue) *Pod_FieldSubPathValue
- func (s PodPathSelectorStatus) WithValue(value *Pod_Status) *Pod_FieldTerminalPathValue
- type PodPathSelectorStatusContainerStatuses
- func (PodPathSelectorStatusContainerStatuses) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorStatusContainerStatuses) Name() PodPathSelectorStatusContainerStatusesName
- func (PodPathSelectorStatusContainerStatuses) Running() PodPathSelectorStatusContainerStatusesRunning
- func (PodPathSelectorStatusContainerStatuses) State() PodPathSelectorStatusContainerStatusesState
- func (PodPathSelectorStatusContainerStatuses) Terminated() PodPathSelectorStatusContainerStatusesTerminated
- func (PodPathSelectorStatusContainerStatuses) Waiting() PodPathSelectorStatusContainerStatusesWaiting
- func (s PodPathSelectorStatusContainerStatuses) WithArrayOfValues(values [][]*Pod_Status_Container) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatuses) WithItemValue(value *Pod_Status_Container) *Pod_FieldSubPathArrayItemValue
- func (s PodPathSelectorStatusContainerStatuses) WithValue(value []*Pod_Status_Container) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesName
- type PodPathSelectorStatusContainerStatusesRunning
- func (PodPathSelectorStatusContainerStatusesRunning) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorStatusContainerStatusesRunning) StartedAt() PodPathSelectorStatusContainerStatusesRunningStartedAt
- func (s PodPathSelectorStatusContainerStatusesRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesRunning) WithValue(value *Pod_Status_Container_StateRunning) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesRunningStartedAt
- func (PodPathSelectorStatusContainerStatusesRunningStartedAt) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesRunningStartedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesState
- func (PodPathSelectorStatusContainerStatusesState) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesState) WithArrayOfValues(values []Pod_Status_Container_State) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesState) WithValue(value Pod_Status_Container_State) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminated
- func (PodPathSelectorStatusContainerStatusesTerminated) ContainerId() PodPathSelectorStatusContainerStatusesTerminatedContainerId
- func (PodPathSelectorStatusContainerStatusesTerminated) ExitCode() PodPathSelectorStatusContainerStatusesTerminatedExitCode
- func (PodPathSelectorStatusContainerStatusesTerminated) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorStatusContainerStatusesTerminated) FinishedAt() PodPathSelectorStatusContainerStatusesTerminatedFinishedAt
- func (PodPathSelectorStatusContainerStatusesTerminated) Message() PodPathSelectorStatusContainerStatusesTerminatedMessage
- func (PodPathSelectorStatusContainerStatusesTerminated) Reason() PodPathSelectorStatusContainerStatusesTerminatedReason
- func (PodPathSelectorStatusContainerStatusesTerminated) Signal() PodPathSelectorStatusContainerStatusesTerminatedSignal
- func (PodPathSelectorStatusContainerStatusesTerminated) StartedAt() PodPathSelectorStatusContainerStatusesTerminatedStartedAt
- func (s PodPathSelectorStatusContainerStatusesTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedContainerId
- func (PodPathSelectorStatusContainerStatusesTerminatedContainerId) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedExitCode
- func (PodPathSelectorStatusContainerStatusesTerminatedExitCode) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithValue(value int32) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedFinishedAt
- func (PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedMessage
- func (PodPathSelectorStatusContainerStatusesTerminatedMessage) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedMessage) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedMessage) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedReason
- func (PodPathSelectorStatusContainerStatusesTerminatedReason) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedReason) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedReason) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedSignal
- func (PodPathSelectorStatusContainerStatusesTerminatedSignal) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedSignal) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedSignal) WithValue(value int32) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesTerminatedStartedAt
- func (PodPathSelectorStatusContainerStatusesTerminatedStartedAt) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesWaiting
- func (PodPathSelectorStatusContainerStatusesWaiting) FieldPath() *Pod_FieldSubPath
- func (PodPathSelectorStatusContainerStatusesWaiting) Message() PodPathSelectorStatusContainerStatusesWaitingMessage
- func (PodPathSelectorStatusContainerStatusesWaiting) Reason() PodPathSelectorStatusContainerStatusesWaitingReason
- func (s PodPathSelectorStatusContainerStatusesWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesWaitingMessage
- func (PodPathSelectorStatusContainerStatusesWaitingMessage) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesWaitingMessage) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesWaitingMessage) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorStatusContainerStatusesWaitingReason
- func (PodPathSelectorStatusContainerStatusesWaitingReason) FieldPath() *Pod_FieldSubPath
- func (s PodPathSelectorStatusContainerStatusesWaitingReason) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
- func (s PodPathSelectorStatusContainerStatusesWaitingReason) WithValue(value string) *Pod_FieldSubPathValue
- type PodPathSelectorStatusError
- type PodPathSelectorStatusPhase
- type PodReferenceList
- func (l PodReferenceList) Append(ref gotenresource.Reference) gotenresource.ReferenceList
- func (l PodReferenceList) AppendList(list gotenresource.ReferenceList) gotenresource.ReferenceList
- func (l PodReferenceList) At(idx int) gotenresource.Reference
- func (l PodReferenceList) Length() int
- func (l PodReferenceList) Set(idx int, ref gotenresource.Reference)
- func (l PodReferenceList) Slice(first, second int) gotenresource.ReferenceList
- type PodStatusContainerFieldPathBuilder
- func (PodStatusContainerFieldPathBuilder) Name() Pod_Status_ContainerPathSelectorName
- func (PodStatusContainerFieldPathBuilder) Running() Pod_Status_ContainerPathSelectorRunning
- func (PodStatusContainerFieldPathBuilder) State() Pod_Status_ContainerPathSelectorState
- func (PodStatusContainerFieldPathBuilder) Terminated() Pod_Status_ContainerPathSelectorTerminated
- func (PodStatusContainerFieldPathBuilder) Waiting() Pod_Status_ContainerPathSelectorWaiting
- type PodStatusContainerStateRunningFieldPathBuilder
- type PodStatusContainerStateRunning_FieldPath
- func BuildPodStatusContainerStateRunning_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateRunning_FieldPath, error)
- func MustParsePodStatusContainerStateRunning_FieldPath(rawField string) PodStatusContainerStateRunning_FieldPath
- func ParsePodStatusContainerStateRunning_FieldPath(rawField string) (PodStatusContainerStateRunning_FieldPath, error)
- type PodStatusContainerStateRunning_FieldPathArrayItemValue
- func MustParsePodStatusContainerStateRunning_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateRunning_FieldPathArrayItemValue
- func ParsePodStatusContainerStateRunning_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateRunning_FieldPathArrayItemValue, error)
- type PodStatusContainerStateRunning_FieldPathArrayOfValues
- func MustParsePodStatusContainerStateRunning_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateRunning_FieldPathArrayOfValues
- func ParsePodStatusContainerStateRunning_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateRunning_FieldPathArrayOfValues, error)
- type PodStatusContainerStateRunning_FieldPathSelector
- type PodStatusContainerStateRunning_FieldPathValue
- type PodStatusContainerStateRunning_FieldTerminalPath
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateRunning)
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) Get(source *Pod_Status_Container_StateRunning) (values []interface{})
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetDefault() interface{}
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateRunning) (interface{}, bool)
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) IsLeaf() bool
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) JSONString() string
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) Selector() PodStatusContainerStateRunning_FieldPathSelector
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) String() string
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateRunning_FieldPathArrayItemValue
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateRunning_FieldPathArrayOfValues
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateRunning_FieldPathValue
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue
- func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateRunning) bool
- func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateRunning) (interface{}, bool)
- func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues
- type PodStatusContainerStateRunning_FieldTerminalPathValue
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) AsStartedAtValue() (*timestamp.Timestamp, bool)
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateRunning) (int, bool)
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateRunning)
- func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PodStatusContainerStateTerminatedFieldPathBuilder
- func (PodStatusContainerStateTerminatedFieldPathBuilder) ContainerId() Pod_Status_Container_StateTerminatedPathSelectorContainerId
- func (PodStatusContainerStateTerminatedFieldPathBuilder) ExitCode() Pod_Status_Container_StateTerminatedPathSelectorExitCode
- func (PodStatusContainerStateTerminatedFieldPathBuilder) FinishedAt() Pod_Status_Container_StateTerminatedPathSelectorFinishedAt
- func (PodStatusContainerStateTerminatedFieldPathBuilder) Message() Pod_Status_Container_StateTerminatedPathSelectorMessage
- func (PodStatusContainerStateTerminatedFieldPathBuilder) Reason() Pod_Status_Container_StateTerminatedPathSelectorReason
- func (PodStatusContainerStateTerminatedFieldPathBuilder) Signal() Pod_Status_Container_StateTerminatedPathSelectorSignal
- func (PodStatusContainerStateTerminatedFieldPathBuilder) StartedAt() Pod_Status_Container_StateTerminatedPathSelectorStartedAt
- type PodStatusContainerStateTerminated_FieldPath
- func BuildPodStatusContainerStateTerminated_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateTerminated_FieldPath, error)
- func MustParsePodStatusContainerStateTerminated_FieldPath(rawField string) PodStatusContainerStateTerminated_FieldPath
- func ParsePodStatusContainerStateTerminated_FieldPath(rawField string) (PodStatusContainerStateTerminated_FieldPath, error)
- type PodStatusContainerStateTerminated_FieldPathArrayItemValue
- func MustParsePodStatusContainerStateTerminated_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateTerminated_FieldPathArrayItemValue
- func ParsePodStatusContainerStateTerminated_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateTerminated_FieldPathArrayItemValue, error)
- type PodStatusContainerStateTerminated_FieldPathArrayOfValues
- func MustParsePodStatusContainerStateTerminated_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateTerminated_FieldPathArrayOfValues
- func ParsePodStatusContainerStateTerminated_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateTerminated_FieldPathArrayOfValues, error)
- type PodStatusContainerStateTerminated_FieldPathSelector
- type PodStatusContainerStateTerminated_FieldPathValue
- type PodStatusContainerStateTerminated_FieldTerminalPath
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateTerminated)
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) Get(source *Pod_Status_Container_StateTerminated) (values []interface{})
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetDefault() interface{}
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateTerminated) (interface{}, bool)
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) IsLeaf() bool
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) JSONString() string
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) Selector() PodStatusContainerStateTerminated_FieldPathSelector
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) String() string
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateTerminated_FieldPathArrayItemValue
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateTerminated_FieldPathArrayOfValues
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateTerminated_FieldPathValue
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue
- func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateTerminated) bool
- func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateTerminated) (interface{}, bool)
- func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsContainerIdArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsExitCodeArrayOfValues() ([]int32, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsFinishedAtArrayOfValues() ([]*timestamp.Timestamp, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsSignalArrayOfValues() ([]int32, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsStartedAtArrayOfValues() ([]*timestamp.Timestamp, bool)
- func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PodStatusContainerStateTerminated_FieldTerminalPathValue
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsContainerIdValue() (string, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsExitCodeValue() (int32, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsFinishedAtValue() (*timestamp.Timestamp, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsMessageValue() (string, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsReasonValue() (string, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsSignalValue() (int32, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsStartedAtValue() (*timestamp.Timestamp, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateTerminated) (int, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateTerminated)
- func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PodStatusContainerStateWaitingFieldPathBuilder
- type PodStatusContainerStateWaiting_FieldPath
- func BuildPodStatusContainerStateWaiting_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateWaiting_FieldPath, error)
- func MustParsePodStatusContainerStateWaiting_FieldPath(rawField string) PodStatusContainerStateWaiting_FieldPath
- func ParsePodStatusContainerStateWaiting_FieldPath(rawField string) (PodStatusContainerStateWaiting_FieldPath, error)
- type PodStatusContainerStateWaiting_FieldPathArrayItemValue
- func MustParsePodStatusContainerStateWaiting_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateWaiting_FieldPathArrayItemValue
- func ParsePodStatusContainerStateWaiting_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateWaiting_FieldPathArrayItemValue, error)
- type PodStatusContainerStateWaiting_FieldPathArrayOfValues
- func MustParsePodStatusContainerStateWaiting_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateWaiting_FieldPathArrayOfValues
- func ParsePodStatusContainerStateWaiting_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateWaiting_FieldPathArrayOfValues, error)
- type PodStatusContainerStateWaiting_FieldPathSelector
- type PodStatusContainerStateWaiting_FieldPathValue
- type PodStatusContainerStateWaiting_FieldTerminalPath
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateWaiting)
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) Get(source *Pod_Status_Container_StateWaiting) (values []interface{})
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetDefault() interface{}
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateWaiting) (interface{}, bool)
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) IsLeaf() bool
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) JSONString() string
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) Selector() PodStatusContainerStateWaiting_FieldPathSelector
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) String() string
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateWaiting_FieldPathArrayItemValue
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateWaiting_FieldPathArrayOfValues
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateWaiting_FieldPathValue
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue
- func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateWaiting) bool
- func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateWaiting) (interface{}, bool)
- func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues
- func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PodStatusContainerStateWaiting_FieldTerminalPathValue
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) AsMessageValue() (string, bool)
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) AsReasonValue() (string, bool)
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateWaiting) (int, bool)
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateWaiting)
- func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PodStatusContainer_FieldPath
- type PodStatusContainer_FieldPathArrayItemValue
- type PodStatusContainer_FieldPathArrayOfValues
- type PodStatusContainer_FieldPathSelector
- type PodStatusContainer_FieldPathValue
- type PodStatusContainer_FieldSubPath
- func (fps *PodStatusContainer_FieldSubPath) AsRunningSubPath() (PodStatusContainerStateRunning_FieldPath, bool)
- func (fps *PodStatusContainer_FieldSubPath) AsTerminatedSubPath() (PodStatusContainerStateTerminated_FieldPath, bool)
- func (fps *PodStatusContainer_FieldSubPath) AsWaitingSubPath() (PodStatusContainerStateWaiting_FieldPath, bool)
- func (fps *PodStatusContainer_FieldSubPath) ClearValue(item *Pod_Status_Container)
- func (fps *PodStatusContainer_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PodStatusContainer_FieldSubPath) Get(source *Pod_Status_Container) (values []interface{})
- func (fps *PodStatusContainer_FieldSubPath) GetDefault() interface{}
- func (fps *PodStatusContainer_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PodStatusContainer_FieldSubPath) GetSingle(source *Pod_Status_Container) (interface{}, bool)
- func (fps *PodStatusContainer_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PodStatusContainer_FieldSubPath) IsLeaf() bool
- func (fps *PodStatusContainer_FieldSubPath) JSONString() string
- func (fps *PodStatusContainer_FieldSubPath) Selector() PodStatusContainer_FieldPathSelector
- func (fps *PodStatusContainer_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PodStatusContainer_FieldSubPath) String() string
- func (fps *PodStatusContainer_FieldSubPath) WithIArrayItemValue(value interface{}) PodStatusContainer_FieldPathArrayItemValue
- func (fps *PodStatusContainer_FieldSubPath) WithIArrayOfValues(values interface{}) PodStatusContainer_FieldPathArrayOfValues
- func (fps *PodStatusContainer_FieldSubPath) WithIValue(value interface{}) PodStatusContainer_FieldPathValue
- func (fps *PodStatusContainer_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PodStatusContainer_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PodStatusContainer_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatusContainer_FieldSubPathArrayItemValue
- func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsRunningPathItemValue() (PodStatusContainerStateRunning_FieldPathArrayItemValue, bool)
- func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsTerminatedPathItemValue() (PodStatusContainerStateTerminated_FieldPathArrayItemValue, bool)
- func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsWaitingPathItemValue() (PodStatusContainerStateWaiting_FieldPathArrayItemValue, bool)
- func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) ContainsValue(source *Pod_Status_Container) bool
- func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PodStatusContainer_FieldSubPathArrayOfValues
- func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsRunningPathArrayOfValues() (PodStatusContainerStateRunning_FieldPathArrayOfValues, bool)
- func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsTerminatedPathArrayOfValues() (PodStatusContainerStateTerminated_FieldPathArrayOfValues, bool)
- func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsWaitingPathArrayOfValues() (PodStatusContainerStateWaiting_FieldPathArrayOfValues, bool)
- func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PodStatusContainer_FieldSubPathValue
- func (fpvs *PodStatusContainer_FieldSubPathValue) AsRunningPathValue() (PodStatusContainerStateRunning_FieldPathValue, bool)
- func (fpvs *PodStatusContainer_FieldSubPathValue) AsTerminatedPathValue() (PodStatusContainerStateTerminated_FieldPathValue, bool)
- func (fpvs *PodStatusContainer_FieldSubPathValue) AsWaitingPathValue() (PodStatusContainerStateWaiting_FieldPathValue, bool)
- func (fpvs *PodStatusContainer_FieldSubPathValue) CompareWith(source *Pod_Status_Container) (int, bool)
- func (fpvs *PodStatusContainer_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PodStatusContainer_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PodStatusContainer_FieldSubPathValue) SetTo(target **Pod_Status_Container)
- func (fpvs *PodStatusContainer_FieldSubPathValue) SetToRaw(target proto.Message)
- type PodStatusContainer_FieldTerminalPath
- func (fp *PodStatusContainer_FieldTerminalPath) ClearValue(item *Pod_Status_Container)
- func (fp *PodStatusContainer_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PodStatusContainer_FieldTerminalPath) Get(source *Pod_Status_Container) (values []interface{})
- func (fp *PodStatusContainer_FieldTerminalPath) GetDefault() interface{}
- func (fp *PodStatusContainer_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PodStatusContainer_FieldTerminalPath) GetSingle(source *Pod_Status_Container) (interface{}, bool)
- func (fp *PodStatusContainer_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PodStatusContainer_FieldTerminalPath) IsLeaf() bool
- func (fp *PodStatusContainer_FieldTerminalPath) JSONString() string
- func (fp *PodStatusContainer_FieldTerminalPath) Selector() PodStatusContainer_FieldPathSelector
- func (fp *PodStatusContainer_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PodStatusContainer_FieldTerminalPath) String() string
- func (fp *PodStatusContainer_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainer_FieldPathArrayItemValue
- func (fp *PodStatusContainer_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainer_FieldPathArrayOfValues
- func (fp *PodStatusContainer_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainer_FieldPathValue
- func (fp *PodStatusContainer_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PodStatusContainer_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PodStatusContainer_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatusContainer_FieldTerminalPathArrayItemValue
- func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container) bool
- func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container) (interface{}, bool)
- func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PodStatusContainer_FieldTerminalPathArrayOfValues
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]string, bool)
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsRunningArrayOfValues() ([]*Pod_Status_Container_StateRunning, bool)
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsStateArrayOfValues() ([]Pod_Status_Container_State, bool)
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsTerminatedArrayOfValues() ([]*Pod_Status_Container_StateTerminated, bool)
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsWaitingArrayOfValues() ([]*Pod_Status_Container_StateWaiting, bool)
- func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PodStatusContainer_FieldTerminalPathValue
- func (fpv *PodStatusContainer_FieldTerminalPathValue) AsNameValue() (string, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) AsRunningValue() (*Pod_Status_Container_StateRunning, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) AsStateValue() (Pod_Status_Container_State, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) AsTerminatedValue() (*Pod_Status_Container_StateTerminated, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) AsWaitingValue() (*Pod_Status_Container_StateWaiting, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container) (int, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PodStatusContainer_FieldTerminalPathValue) SetTo(target **Pod_Status_Container)
- func (fpv *PodStatusContainer_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PodStatusFieldPathBuilder
- type PodStatus_FieldPath
- type PodStatus_FieldPathArrayItemValue
- type PodStatus_FieldPathArrayOfValues
- type PodStatus_FieldPathSelector
- type PodStatus_FieldPathValue
- type PodStatus_FieldSubPath
- func (fps *PodStatus_FieldSubPath) AsContainerStatusesSubPath() (PodStatusContainer_FieldPath, bool)
- func (fps *PodStatus_FieldSubPath) ClearValue(item *Pod_Status)
- func (fps *PodStatus_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PodStatus_FieldSubPath) Get(source *Pod_Status) (values []interface{})
- func (fps *PodStatus_FieldSubPath) GetDefault() interface{}
- func (fps *PodStatus_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PodStatus_FieldSubPath) GetSingle(source *Pod_Status) (interface{}, bool)
- func (fps *PodStatus_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PodStatus_FieldSubPath) IsLeaf() bool
- func (fps *PodStatus_FieldSubPath) JSONString() string
- func (fps *PodStatus_FieldSubPath) Selector() PodStatus_FieldPathSelector
- func (fps *PodStatus_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PodStatus_FieldSubPath) String() string
- func (fps *PodStatus_FieldSubPath) WithIArrayItemValue(value interface{}) PodStatus_FieldPathArrayItemValue
- func (fps *PodStatus_FieldSubPath) WithIArrayOfValues(values interface{}) PodStatus_FieldPathArrayOfValues
- func (fps *PodStatus_FieldSubPath) WithIValue(value interface{}) PodStatus_FieldPathValue
- func (fps *PodStatus_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PodStatus_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PodStatus_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatus_FieldSubPathArrayItemValue
- func (fpaivs *PodStatus_FieldSubPathArrayItemValue) AsContainerStatusesPathItemValue() (PodStatusContainer_FieldPathArrayItemValue, bool)
- func (fpaivs *PodStatus_FieldSubPathArrayItemValue) ContainsValue(source *Pod_Status) bool
- func (fpaivs *PodStatus_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PodStatus_FieldSubPathArrayOfValues
- type PodStatus_FieldSubPathValue
- func (fpvs *PodStatus_FieldSubPathValue) AsContainerStatusesPathValue() (PodStatusContainer_FieldPathValue, bool)
- func (fpvs *PodStatus_FieldSubPathValue) CompareWith(source *Pod_Status) (int, bool)
- func (fpvs *PodStatus_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PodStatus_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PodStatus_FieldSubPathValue) SetTo(target **Pod_Status)
- func (fpvs *PodStatus_FieldSubPathValue) SetToRaw(target proto.Message)
- type PodStatus_FieldTerminalPath
- func (fp *PodStatus_FieldTerminalPath) ClearValue(item *Pod_Status)
- func (fp *PodStatus_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PodStatus_FieldTerminalPath) Get(source *Pod_Status) (values []interface{})
- func (fp *PodStatus_FieldTerminalPath) GetDefault() interface{}
- func (fp *PodStatus_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PodStatus_FieldTerminalPath) GetSingle(source *Pod_Status) (interface{}, bool)
- func (fp *PodStatus_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PodStatus_FieldTerminalPath) IsLeaf() bool
- func (fp *PodStatus_FieldTerminalPath) JSONString() string
- func (fp *PodStatus_FieldTerminalPath) Selector() PodStatus_FieldPathSelector
- func (fp *PodStatus_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PodStatus_FieldTerminalPath) String() string
- func (fp *PodStatus_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatus_FieldPathArrayItemValue
- func (fp *PodStatus_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatus_FieldPathArrayOfValues
- func (fp *PodStatus_FieldTerminalPath) WithIValue(value interface{}) PodStatus_FieldPathValue
- func (fp *PodStatus_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PodStatus_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PodStatus_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PodStatus_FieldTerminalPathArrayItemValue
- func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) AsContainerStatusesItemValue() (*Pod_Status_Container, bool)
- func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status) bool
- func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status) (interface{}, bool)
- func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PodStatus_FieldTerminalPathArrayOfValues
- func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsContainerStatusesArrayOfValues() ([][]*Pod_Status_Container, bool)
- func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsErrorArrayOfValues() ([]string, bool)
- func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsPhaseArrayOfValues() ([]Pod_Status_Phase, bool)
- func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PodStatus_FieldTerminalPathValue
- func (fpv *PodStatus_FieldTerminalPathValue) AsContainerStatusesValue() ([]*Pod_Status_Container, bool)
- func (fpv *PodStatus_FieldTerminalPathValue) AsErrorValue() (string, bool)
- func (fpv *PodStatus_FieldTerminalPathValue) AsPhaseValue() (Pod_Status_Phase, bool)
- func (fpv *PodStatus_FieldTerminalPathValue) CompareWith(source *Pod_Status) (int, bool)
- func (fpv *PodStatus_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PodStatus_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PodStatus_FieldTerminalPathValue) SetTo(target **Pod_Status)
- func (fpv *PodStatus_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type Pod_FieldMask
- func (fieldMask *Pod_FieldMask) AppendPath(path Pod_FieldPath)
- func (fieldMask *Pod_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_FieldMask) FilterInputFields() *Pod_FieldMask
- func (fieldMask *Pod_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_FieldMask) GetPaths() []Pod_FieldPath
- func (fieldMask *Pod_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_FieldMask) IsFull() bool
- func (fieldMask Pod_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_FieldMask) PathsCount() int
- func (fieldMask *Pod_FieldMask) Project(source *Pod) *Pod
- func (fieldMask *Pod_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_FieldMask) ProtoMessage()
- func (fieldMask *Pod_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_FieldMask) Reset()
- func (fieldMask *Pod_FieldMask) Set(target, source *Pod)
- func (fieldMask *Pod_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_FieldMask) Size() int
- func (fieldMask *Pod_FieldMask) String() string
- func (fieldMask *Pod_FieldMask) Subtract(other *Pod_FieldMask) *Pod_FieldMask
- func (fieldMask *Pod_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_FieldPath
- type Pod_FieldPathArrayItemValue
- type Pod_FieldPathArrayOfValues
- type Pod_FieldPathSelector
- type Pod_FieldPathValue
- type Pod_FieldSubPath
- func (fps *Pod_FieldSubPath) AsMetadataSubPath() (ntt_meta.Meta_FieldPath, bool)
- func (fps *Pod_FieldSubPath) AsSpecSubPath() (common.PodSpec_FieldPath, bool)
- func (fps *Pod_FieldSubPath) AsStatusSubPath() (PodStatus_FieldPath, bool)
- func (fps *Pod_FieldSubPath) ClearValue(item *Pod)
- func (fps *Pod_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *Pod_FieldSubPath) Get(source *Pod) (values []interface{})
- func (fps *Pod_FieldSubPath) GetDefault() interface{}
- func (fps *Pod_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *Pod_FieldSubPath) GetSingle(source *Pod) (interface{}, bool)
- func (fps *Pod_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *Pod_FieldSubPath) IsLeaf() bool
- func (fps *Pod_FieldSubPath) JSONString() string
- func (fps *Pod_FieldSubPath) Selector() Pod_FieldPathSelector
- func (fps *Pod_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *Pod_FieldSubPath) String() string
- func (fps *Pod_FieldSubPath) WithIArrayItemValue(value interface{}) Pod_FieldPathArrayItemValue
- func (fps *Pod_FieldSubPath) WithIArrayOfValues(values interface{}) Pod_FieldPathArrayOfValues
- func (fps *Pod_FieldSubPath) WithIValue(value interface{}) Pod_FieldPathValue
- func (fps *Pod_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *Pod_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *Pod_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type Pod_FieldSubPathArrayItemValue
- func (fpaivs *Pod_FieldSubPathArrayItemValue) AsMetadataPathItemValue() (ntt_meta.Meta_FieldPathArrayItemValue, bool)
- func (fpaivs *Pod_FieldSubPathArrayItemValue) AsSpecPathItemValue() (common.PodSpec_FieldPathArrayItemValue, bool)
- func (fpaivs *Pod_FieldSubPathArrayItemValue) AsStatusPathItemValue() (PodStatus_FieldPathArrayItemValue, bool)
- func (fpaivs *Pod_FieldSubPathArrayItemValue) ContainsValue(source *Pod) bool
- func (fpaivs *Pod_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type Pod_FieldSubPathArrayOfValues
- func (fpsaov *Pod_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (ntt_meta.Meta_FieldPathArrayOfValues, bool)
- func (fpsaov *Pod_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues() (common.PodSpec_FieldPathArrayOfValues, bool)
- func (fpsaov *Pod_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues() (PodStatus_FieldPathArrayOfValues, bool)
- func (fpsaov *Pod_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type Pod_FieldSubPathValue
- func (fpvs *Pod_FieldSubPathValue) AsMetadataPathValue() (ntt_meta.Meta_FieldPathValue, bool)
- func (fpvs *Pod_FieldSubPathValue) AsSpecPathValue() (common.PodSpec_FieldPathValue, bool)
- func (fpvs *Pod_FieldSubPathValue) AsStatusPathValue() (PodStatus_FieldPathValue, bool)
- func (fpvs *Pod_FieldSubPathValue) CompareWith(source *Pod) (int, bool)
- func (fpvs *Pod_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *Pod_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *Pod_FieldSubPathValue) SetTo(target **Pod)
- func (fpvs *Pod_FieldSubPathValue) SetToRaw(target proto.Message)
- type Pod_FieldTerminalPath
- func (fp *Pod_FieldTerminalPath) ClearValue(item *Pod)
- func (fp *Pod_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *Pod_FieldTerminalPath) Get(source *Pod) (values []interface{})
- func (fp *Pod_FieldTerminalPath) GetDefault() interface{}
- func (fp *Pod_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *Pod_FieldTerminalPath) GetSingle(source *Pod) (interface{}, bool)
- func (fp *Pod_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *Pod_FieldTerminalPath) IsLeaf() bool
- func (fp *Pod_FieldTerminalPath) JSONString() string
- func (fp *Pod_FieldTerminalPath) Selector() Pod_FieldPathSelector
- func (fp *Pod_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *Pod_FieldTerminalPath) String() string
- func (fp *Pod_FieldTerminalPath) WithIArrayItemValue(value interface{}) Pod_FieldPathArrayItemValue
- func (fp *Pod_FieldTerminalPath) WithIArrayOfValues(values interface{}) Pod_FieldPathArrayOfValues
- func (fp *Pod_FieldTerminalPath) WithIValue(value interface{}) Pod_FieldPathValue
- func (fp *Pod_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *Pod_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *Pod_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type Pod_FieldTerminalPathArrayItemValue
- func (fpaiv *Pod_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod) bool
- func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetSingle(source *Pod) (interface{}, bool)
- func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type Pod_FieldTerminalPathArrayOfValues
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues() ([]string, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsDistributionArrayOfValues() ([]*distribution.Reference, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*ntt_meta.Meta, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]*Name, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues() ([]*common.PodSpec, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*Pod_Status, bool)
- func (fpaov *Pod_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type Pod_FieldTerminalPathValue
- func (fpv *Pod_FieldTerminalPathValue) AsDisplayNameValue() (string, bool)
- func (fpv *Pod_FieldTerminalPathValue) AsDistributionValue() (*distribution.Reference, bool)
- func (fpv *Pod_FieldTerminalPathValue) AsMetadataValue() (*ntt_meta.Meta, bool)
- func (fpv *Pod_FieldTerminalPathValue) AsNameValue() (*Name, bool)
- func (fpv *Pod_FieldTerminalPathValue) AsSpecValue() (*common.PodSpec, bool)
- func (fpv *Pod_FieldTerminalPathValue) AsStatusValue() (*Pod_Status, bool)
- func (fpv *Pod_FieldTerminalPathValue) CompareWith(source *Pod) (int, bool)
- func (fpv *Pod_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *Pod_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *Pod_FieldTerminalPathValue) SetTo(target **Pod)
- func (fpv *Pod_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type Pod_Status
- func (o *Pod_Status) Clone() *Pod_Status
- func (o *Pod_Status) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod_Status) Descriptor() ([]byte, []int)
- func (m *Pod_Status) GetContainerStatuses() []*Pod_Status_Container
- func (m *Pod_Status) GetError() string
- func (m *Pod_Status) GetPhase() Pod_Status_Phase
- func (*Pod_Status) GotenMessage()
- func (o *Pod_Status) GotenObjectExt()
- func (obj *Pod_Status) GotenValidate() error
- func (o *Pod_Status) MakeDiffFieldMask(other *Pod_Status) *Pod_Status_FieldMask
- func (o *Pod_Status) MakeFullFieldMask() *Pod_Status_FieldMask
- func (o *Pod_Status) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod_Status) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod_Status) Marshal() ([]byte, error)
- func (m *Pod_Status) MarshalJSON() ([]byte, error)
- func (o *Pod_Status) Merge(source *Pod_Status)
- func (o *Pod_Status) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod_Status) ProtoMessage()
- func (m *Pod_Status) ProtoReflect() preflect.Message
- func (m *Pod_Status) Reset()
- func (m *Pod_Status) SetContainerStatuses(fv []*Pod_Status_Container)
- func (m *Pod_Status) SetError(fv string)
- func (m *Pod_Status) SetPhase(fv Pod_Status_Phase)
- func (m *Pod_Status) String() string
- func (m *Pod_Status) Unmarshal(b []byte) error
- func (m *Pod_Status) UnmarshalJSON(data []byte) error
- type Pod_StatusPathSelectorContainerStatuses
- func (Pod_StatusPathSelectorContainerStatuses) FieldPath() *PodStatus_FieldTerminalPath
- func (Pod_StatusPathSelectorContainerStatuses) Name() Pod_StatusPathSelectorContainerStatusesName
- func (Pod_StatusPathSelectorContainerStatuses) Running() Pod_StatusPathSelectorContainerStatusesRunning
- func (Pod_StatusPathSelectorContainerStatuses) State() Pod_StatusPathSelectorContainerStatusesState
- func (Pod_StatusPathSelectorContainerStatuses) Terminated() Pod_StatusPathSelectorContainerStatusesTerminated
- func (Pod_StatusPathSelectorContainerStatuses) Waiting() Pod_StatusPathSelectorContainerStatusesWaiting
- func (s Pod_StatusPathSelectorContainerStatuses) WithArrayOfValues(values [][]*Pod_Status_Container) *PodStatus_FieldTerminalPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatuses) WithItemValue(value *Pod_Status_Container) *PodStatus_FieldTerminalPathArrayItemValue
- func (s Pod_StatusPathSelectorContainerStatuses) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainer_FieldPathArrayItemValue) *PodStatus_FieldSubPathArrayItemValue
- func (s Pod_StatusPathSelectorContainerStatuses) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainer_FieldPathArrayOfValues) *PodStatus_FieldSubPathArrayOfValues
- func (Pod_StatusPathSelectorContainerStatuses) WithSubPath(subPath PodStatusContainer_FieldPath) *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatuses) WithSubValue(subPathValue PodStatusContainer_FieldPathValue) *PodStatus_FieldSubPathValue
- func (s Pod_StatusPathSelectorContainerStatuses) WithValue(value []*Pod_Status_Container) *PodStatus_FieldTerminalPathValue
- type Pod_StatusPathSelectorContainerStatusesName
- func (Pod_StatusPathSelectorContainerStatusesName) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesName) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesName) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesRunning
- func (Pod_StatusPathSelectorContainerStatusesRunning) FieldPath() *PodStatus_FieldSubPath
- func (Pod_StatusPathSelectorContainerStatusesRunning) StartedAt() Pod_StatusPathSelectorContainerStatusesRunningStartedAt
- func (s Pod_StatusPathSelectorContainerStatusesRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesRunning) WithValue(value *Pod_Status_Container_StateRunning) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesRunningStartedAt
- func (Pod_StatusPathSelectorContainerStatusesRunningStartedAt) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesState
- func (Pod_StatusPathSelectorContainerStatusesState) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesState) WithArrayOfValues(values []Pod_Status_Container_State) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesState) WithValue(value Pod_Status_Container_State) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminated
- func (Pod_StatusPathSelectorContainerStatusesTerminated) ContainerId() Pod_StatusPathSelectorContainerStatusesTerminatedContainerId
- func (Pod_StatusPathSelectorContainerStatusesTerminated) ExitCode() Pod_StatusPathSelectorContainerStatusesTerminatedExitCode
- func (Pod_StatusPathSelectorContainerStatusesTerminated) FieldPath() *PodStatus_FieldSubPath
- func (Pod_StatusPathSelectorContainerStatusesTerminated) FinishedAt() Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt
- func (Pod_StatusPathSelectorContainerStatusesTerminated) Message() Pod_StatusPathSelectorContainerStatusesTerminatedMessage
- func (Pod_StatusPathSelectorContainerStatusesTerminated) Reason() Pod_StatusPathSelectorContainerStatusesTerminatedReason
- func (Pod_StatusPathSelectorContainerStatusesTerminated) Signal() Pod_StatusPathSelectorContainerStatusesTerminatedSignal
- func (Pod_StatusPathSelectorContainerStatusesTerminated) StartedAt() Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt
- func (s Pod_StatusPathSelectorContainerStatusesTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedContainerId
- func (Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedExitCode
- func (Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithArrayOfValues(values []int32) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithValue(value int32) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt
- func (Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedMessage
- func (Pod_StatusPathSelectorContainerStatusesTerminatedMessage) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedReason
- func (Pod_StatusPathSelectorContainerStatusesTerminatedReason) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedSignal
- func (Pod_StatusPathSelectorContainerStatusesTerminatedSignal) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithArrayOfValues(values []int32) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithValue(value int32) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt
- func (Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesWaiting
- func (Pod_StatusPathSelectorContainerStatusesWaiting) FieldPath() *PodStatus_FieldSubPath
- func (Pod_StatusPathSelectorContainerStatusesWaiting) Message() Pod_StatusPathSelectorContainerStatusesWaitingMessage
- func (Pod_StatusPathSelectorContainerStatusesWaiting) Reason() Pod_StatusPathSelectorContainerStatusesWaitingReason
- func (s Pod_StatusPathSelectorContainerStatusesWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesWaitingMessage
- func (Pod_StatusPathSelectorContainerStatusesWaitingMessage) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorContainerStatusesWaitingReason
- func (Pod_StatusPathSelectorContainerStatusesWaitingReason) FieldPath() *PodStatus_FieldSubPath
- func (s Pod_StatusPathSelectorContainerStatusesWaitingReason) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
- func (s Pod_StatusPathSelectorContainerStatusesWaitingReason) WithValue(value string) *PodStatus_FieldSubPathValue
- type Pod_StatusPathSelectorError
- type Pod_StatusPathSelectorPhase
- func (Pod_StatusPathSelectorPhase) FieldPath() *PodStatus_FieldTerminalPath
- func (s Pod_StatusPathSelectorPhase) WithArrayOfValues(values []Pod_Status_Phase) *PodStatus_FieldTerminalPathArrayOfValues
- func (s Pod_StatusPathSelectorPhase) WithValue(value Pod_Status_Phase) *PodStatus_FieldTerminalPathValue
- type Pod_Status_Container
- func (o *Pod_Status_Container) Clone() *Pod_Status_Container
- func (o *Pod_Status_Container) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod_Status_Container) Descriptor() ([]byte, []int)
- func (m *Pod_Status_Container) GetName() string
- func (m *Pod_Status_Container) GetRunning() *Pod_Status_Container_StateRunning
- func (m *Pod_Status_Container) GetState() Pod_Status_Container_State
- func (m *Pod_Status_Container) GetTerminated() *Pod_Status_Container_StateTerminated
- func (m *Pod_Status_Container) GetWaiting() *Pod_Status_Container_StateWaiting
- func (*Pod_Status_Container) GotenMessage()
- func (o *Pod_Status_Container) GotenObjectExt()
- func (obj *Pod_Status_Container) GotenValidate() error
- func (o *Pod_Status_Container) MakeDiffFieldMask(other *Pod_Status_Container) *Pod_Status_Container_FieldMask
- func (o *Pod_Status_Container) MakeFullFieldMask() *Pod_Status_Container_FieldMask
- func (o *Pod_Status_Container) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod_Status_Container) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod_Status_Container) Marshal() ([]byte, error)
- func (m *Pod_Status_Container) MarshalJSON() ([]byte, error)
- func (o *Pod_Status_Container) Merge(source *Pod_Status_Container)
- func (o *Pod_Status_Container) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod_Status_Container) ProtoMessage()
- func (m *Pod_Status_Container) ProtoReflect() preflect.Message
- func (m *Pod_Status_Container) Reset()
- func (m *Pod_Status_Container) SetName(fv string)
- func (m *Pod_Status_Container) SetRunning(fv *Pod_Status_Container_StateRunning)
- func (m *Pod_Status_Container) SetState(fv Pod_Status_Container_State)
- func (m *Pod_Status_Container) SetTerminated(fv *Pod_Status_Container_StateTerminated)
- func (m *Pod_Status_Container) SetWaiting(fv *Pod_Status_Container_StateWaiting)
- func (m *Pod_Status_Container) String() string
- func (m *Pod_Status_Container) Unmarshal(b []byte) error
- func (m *Pod_Status_Container) UnmarshalJSON(data []byte) error
- type Pod_Status_ContainerPathSelectorName
- func (Pod_Status_ContainerPathSelectorName) FieldPath() *PodStatusContainer_FieldTerminalPath
- func (s Pod_Status_ContainerPathSelectorName) WithArrayOfValues(values []string) *PodStatusContainer_FieldTerminalPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorName) WithValue(value string) *PodStatusContainer_FieldTerminalPathValue
- type Pod_Status_ContainerPathSelectorRunning
- func (Pod_Status_ContainerPathSelectorRunning) FieldPath() *PodStatusContainer_FieldTerminalPath
- func (Pod_Status_ContainerPathSelectorRunning) StartedAt() Pod_Status_ContainerPathSelectorRunningStartedAt
- func (s Pod_Status_ContainerPathSelectorRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *PodStatusContainer_FieldTerminalPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorRunning) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainerStateRunning_FieldPathArrayItemValue) *PodStatusContainer_FieldSubPathArrayItemValue
- func (s Pod_Status_ContainerPathSelectorRunning) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateRunning_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
- func (Pod_Status_ContainerPathSelectorRunning) WithSubPath(subPath PodStatusContainerStateRunning_FieldPath) *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorRunning) WithSubValue(subPathValue PodStatusContainerStateRunning_FieldPathValue) *PodStatusContainer_FieldSubPathValue
- func (s Pod_Status_ContainerPathSelectorRunning) WithValue(value *Pod_Status_Container_StateRunning) *PodStatusContainer_FieldTerminalPathValue
- type Pod_Status_ContainerPathSelectorRunningStartedAt
- func (Pod_Status_ContainerPathSelectorRunningStartedAt) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorRunningStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorState
- func (Pod_Status_ContainerPathSelectorState) FieldPath() *PodStatusContainer_FieldTerminalPath
- func (s Pod_Status_ContainerPathSelectorState) WithArrayOfValues(values []Pod_Status_Container_State) *PodStatusContainer_FieldTerminalPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorState) WithValue(value Pod_Status_Container_State) *PodStatusContainer_FieldTerminalPathValue
- type Pod_Status_ContainerPathSelectorTerminated
- func (Pod_Status_ContainerPathSelectorTerminated) ContainerId() Pod_Status_ContainerPathSelectorTerminatedContainerId
- func (Pod_Status_ContainerPathSelectorTerminated) ExitCode() Pod_Status_ContainerPathSelectorTerminatedExitCode
- func (Pod_Status_ContainerPathSelectorTerminated) FieldPath() *PodStatusContainer_FieldTerminalPath
- func (Pod_Status_ContainerPathSelectorTerminated) FinishedAt() Pod_Status_ContainerPathSelectorTerminatedFinishedAt
- func (Pod_Status_ContainerPathSelectorTerminated) Message() Pod_Status_ContainerPathSelectorTerminatedMessage
- func (Pod_Status_ContainerPathSelectorTerminated) Reason() Pod_Status_ContainerPathSelectorTerminatedReason
- func (Pod_Status_ContainerPathSelectorTerminated) Signal() Pod_Status_ContainerPathSelectorTerminatedSignal
- func (Pod_Status_ContainerPathSelectorTerminated) StartedAt() Pod_Status_ContainerPathSelectorTerminatedStartedAt
- func (s Pod_Status_ContainerPathSelectorTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *PodStatusContainer_FieldTerminalPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminated) WithSubArrayItemValue(...) *PodStatusContainer_FieldSubPathArrayItemValue
- func (s Pod_Status_ContainerPathSelectorTerminated) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateTerminated_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
- func (Pod_Status_ContainerPathSelectorTerminated) WithSubPath(subPath PodStatusContainerStateTerminated_FieldPath) *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminated) WithSubValue(subPathValue PodStatusContainerStateTerminated_FieldPathValue) *PodStatusContainer_FieldSubPathValue
- func (s Pod_Status_ContainerPathSelectorTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *PodStatusContainer_FieldTerminalPathValue
- type Pod_Status_ContainerPathSelectorTerminatedContainerId
- func (Pod_Status_ContainerPathSelectorTerminatedContainerId) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedContainerId) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedContainerId) WithValue(value string) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedExitCode
- func (Pod_Status_ContainerPathSelectorTerminatedExitCode) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedExitCode) WithArrayOfValues(values []int32) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedExitCode) WithValue(value int32) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedFinishedAt
- func (Pod_Status_ContainerPathSelectorTerminatedFinishedAt) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedMessage
- func (Pod_Status_ContainerPathSelectorTerminatedMessage) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedMessage) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedMessage) WithValue(value string) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedReason
- func (Pod_Status_ContainerPathSelectorTerminatedReason) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedReason) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedReason) WithValue(value string) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedSignal
- func (Pod_Status_ContainerPathSelectorTerminatedSignal) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedSignal) WithArrayOfValues(values []int32) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedSignal) WithValue(value int32) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorTerminatedStartedAt
- func (Pod_Status_ContainerPathSelectorTerminatedStartedAt) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorWaiting
- func (Pod_Status_ContainerPathSelectorWaiting) FieldPath() *PodStatusContainer_FieldTerminalPath
- func (Pod_Status_ContainerPathSelectorWaiting) Message() Pod_Status_ContainerPathSelectorWaitingMessage
- func (Pod_Status_ContainerPathSelectorWaiting) Reason() Pod_Status_ContainerPathSelectorWaitingReason
- func (s Pod_Status_ContainerPathSelectorWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *PodStatusContainer_FieldTerminalPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorWaiting) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainerStateWaiting_FieldPathArrayItemValue) *PodStatusContainer_FieldSubPathArrayItemValue
- func (s Pod_Status_ContainerPathSelectorWaiting) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateWaiting_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
- func (Pod_Status_ContainerPathSelectorWaiting) WithSubPath(subPath PodStatusContainerStateWaiting_FieldPath) *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorWaiting) WithSubValue(subPathValue PodStatusContainerStateWaiting_FieldPathValue) *PodStatusContainer_FieldSubPathValue
- func (s Pod_Status_ContainerPathSelectorWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *PodStatusContainer_FieldTerminalPathValue
- type Pod_Status_ContainerPathSelectorWaitingMessage
- func (Pod_Status_ContainerPathSelectorWaitingMessage) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorWaitingMessage) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorWaitingMessage) WithValue(value string) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_ContainerPathSelectorWaitingReason
- func (Pod_Status_ContainerPathSelectorWaitingReason) FieldPath() *PodStatusContainer_FieldSubPath
- func (s Pod_Status_ContainerPathSelectorWaitingReason) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
- func (s Pod_Status_ContainerPathSelectorWaitingReason) WithValue(value string) *PodStatusContainer_FieldSubPathValue
- type Pod_Status_Container_FieldMask
- func (fieldMask *Pod_Status_Container_FieldMask) AppendPath(path PodStatusContainer_FieldPath)
- func (fieldMask *Pod_Status_Container_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_Status_Container_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_Status_Container_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_Status_Container_FieldMask) FilterInputFields() *Pod_Status_Container_FieldMask
- func (fieldMask *Pod_Status_Container_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_Status_Container_FieldMask) GetPaths() []PodStatusContainer_FieldPath
- func (fieldMask *Pod_Status_Container_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_Status_Container_FieldMask) IsFull() bool
- func (fieldMask Pod_Status_Container_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_Status_Container_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_Status_Container_FieldMask) PathsCount() int
- func (fieldMask *Pod_Status_Container_FieldMask) Project(source *Pod_Status_Container) *Pod_Status_Container
- func (fieldMask *Pod_Status_Container_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_Status_Container_FieldMask) ProtoMessage()
- func (fieldMask *Pod_Status_Container_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_Status_Container_FieldMask) Reset()
- func (fieldMask *Pod_Status_Container_FieldMask) Set(target, source *Pod_Status_Container)
- func (fieldMask *Pod_Status_Container_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_Status_Container_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_Status_Container_FieldMask) Size() int
- func (fieldMask *Pod_Status_Container_FieldMask) String() string
- func (fieldMask *Pod_Status_Container_FieldMask) Subtract(other *Pod_Status_Container_FieldMask) *Pod_Status_Container_FieldMask
- func (fieldMask *Pod_Status_Container_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_Status_Container_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_Status_Container_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_Status_Container_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_State
- func (Pod_Status_Container_State) Descriptor() preflect.EnumDescriptor
- func (x Pod_Status_Container_State) Enum() *Pod_Status_Container_State
- func (Pod_Status_Container_State) EnumDescriptor() ([]byte, []int)
- func (x Pod_Status_Container_State) Number() preflect.EnumNumber
- func (x Pod_Status_Container_State) String() string
- func (Pod_Status_Container_State) Type() preflect.EnumType
- type Pod_Status_Container_StateRunning
- func (o *Pod_Status_Container_StateRunning) Clone() *Pod_Status_Container_StateRunning
- func (o *Pod_Status_Container_StateRunning) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod_Status_Container_StateRunning) Descriptor() ([]byte, []int)
- func (m *Pod_Status_Container_StateRunning) GetStartedAt() *timestamp.Timestamp
- func (*Pod_Status_Container_StateRunning) GotenMessage()
- func (o *Pod_Status_Container_StateRunning) GotenObjectExt()
- func (obj *Pod_Status_Container_StateRunning) GotenValidate() error
- func (o *Pod_Status_Container_StateRunning) MakeDiffFieldMask(other *Pod_Status_Container_StateRunning) *Pod_Status_Container_StateRunning_FieldMask
- func (o *Pod_Status_Container_StateRunning) MakeFullFieldMask() *Pod_Status_Container_StateRunning_FieldMask
- func (o *Pod_Status_Container_StateRunning) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod_Status_Container_StateRunning) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod_Status_Container_StateRunning) Marshal() ([]byte, error)
- func (m *Pod_Status_Container_StateRunning) MarshalJSON() ([]byte, error)
- func (o *Pod_Status_Container_StateRunning) Merge(source *Pod_Status_Container_StateRunning)
- func (o *Pod_Status_Container_StateRunning) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod_Status_Container_StateRunning) ProtoMessage()
- func (m *Pod_Status_Container_StateRunning) ProtoReflect() preflect.Message
- func (m *Pod_Status_Container_StateRunning) Reset()
- func (m *Pod_Status_Container_StateRunning) SetStartedAt(fv *timestamp.Timestamp)
- func (m *Pod_Status_Container_StateRunning) String() string
- func (m *Pod_Status_Container_StateRunning) Unmarshal(b []byte) error
- func (m *Pod_Status_Container_StateRunning) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_StateRunningPathSelectorStartedAt
- func (Pod_Status_Container_StateRunningPathSelectorStartedAt) FieldPath() *PodStatusContainerStateRunning_FieldTerminalPath
- func (s Pod_Status_Container_StateRunningPathSelectorStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateRunningPathSelectorStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainerStateRunning_FieldTerminalPathValue
- type Pod_Status_Container_StateRunning_FieldMask
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) AppendPath(path PodStatusContainerStateRunning_FieldPath)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) FilterInputFields() *Pod_Status_Container_StateRunning_FieldMask
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) GetPaths() []PodStatusContainerStateRunning_FieldPath
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) IsFull() bool
- func (fieldMask Pod_Status_Container_StateRunning_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_Status_Container_StateRunning_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) PathsCount() int
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Project(source *Pod_Status_Container_StateRunning) *Pod_Status_Container_StateRunning
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProtoMessage()
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Reset()
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Set(target, source *Pod_Status_Container_StateRunning)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Size() int
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) String() string
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Subtract(other *Pod_Status_Container_StateRunning_FieldMask) *Pod_Status_Container_StateRunning_FieldMask
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_StateTerminated
- func (o *Pod_Status_Container_StateTerminated) Clone() *Pod_Status_Container_StateTerminated
- func (o *Pod_Status_Container_StateTerminated) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod_Status_Container_StateTerminated) Descriptor() ([]byte, []int)
- func (m *Pod_Status_Container_StateTerminated) GetContainerId() string
- func (m *Pod_Status_Container_StateTerminated) GetExitCode() int32
- func (m *Pod_Status_Container_StateTerminated) GetFinishedAt() *timestamp.Timestamp
- func (m *Pod_Status_Container_StateTerminated) GetMessage() string
- func (m *Pod_Status_Container_StateTerminated) GetReason() string
- func (m *Pod_Status_Container_StateTerminated) GetSignal() int32
- func (m *Pod_Status_Container_StateTerminated) GetStartedAt() *timestamp.Timestamp
- func (*Pod_Status_Container_StateTerminated) GotenMessage()
- func (o *Pod_Status_Container_StateTerminated) GotenObjectExt()
- func (obj *Pod_Status_Container_StateTerminated) GotenValidate() error
- func (o *Pod_Status_Container_StateTerminated) MakeDiffFieldMask(other *Pod_Status_Container_StateTerminated) *Pod_Status_Container_StateTerminated_FieldMask
- func (o *Pod_Status_Container_StateTerminated) MakeFullFieldMask() *Pod_Status_Container_StateTerminated_FieldMask
- func (o *Pod_Status_Container_StateTerminated) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod_Status_Container_StateTerminated) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod_Status_Container_StateTerminated) Marshal() ([]byte, error)
- func (m *Pod_Status_Container_StateTerminated) MarshalJSON() ([]byte, error)
- func (o *Pod_Status_Container_StateTerminated) Merge(source *Pod_Status_Container_StateTerminated)
- func (o *Pod_Status_Container_StateTerminated) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod_Status_Container_StateTerminated) ProtoMessage()
- func (m *Pod_Status_Container_StateTerminated) ProtoReflect() preflect.Message
- func (m *Pod_Status_Container_StateTerminated) Reset()
- func (m *Pod_Status_Container_StateTerminated) SetContainerId(fv string)
- func (m *Pod_Status_Container_StateTerminated) SetExitCode(fv int32)
- func (m *Pod_Status_Container_StateTerminated) SetFinishedAt(fv *timestamp.Timestamp)
- func (m *Pod_Status_Container_StateTerminated) SetMessage(fv string)
- func (m *Pod_Status_Container_StateTerminated) SetReason(fv string)
- func (m *Pod_Status_Container_StateTerminated) SetSignal(fv int32)
- func (m *Pod_Status_Container_StateTerminated) SetStartedAt(fv *timestamp.Timestamp)
- func (m *Pod_Status_Container_StateTerminated) String() string
- func (m *Pod_Status_Container_StateTerminated) Unmarshal(b []byte) error
- func (m *Pod_Status_Container_StateTerminated) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_StateTerminatedPathSelectorContainerId
- func (Pod_Status_Container_StateTerminatedPathSelectorContainerId) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorContainerId) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorContainerId) WithValue(value string) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorExitCode
- func (Pod_Status_Container_StateTerminatedPathSelectorExitCode) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorExitCode) WithArrayOfValues(values []int32) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorExitCode) WithValue(value int32) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorFinishedAt
- func (Pod_Status_Container_StateTerminatedPathSelectorFinishedAt) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorFinishedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorMessage
- func (Pod_Status_Container_StateTerminatedPathSelectorMessage) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorMessage) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorMessage) WithValue(value string) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorReason
- func (Pod_Status_Container_StateTerminatedPathSelectorReason) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorReason) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorReason) WithValue(value string) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorSignal
- func (Pod_Status_Container_StateTerminatedPathSelectorSignal) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorSignal) WithArrayOfValues(values []int32) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorSignal) WithValue(value int32) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminatedPathSelectorStartedAt
- func (Pod_Status_Container_StateTerminatedPathSelectorStartedAt) FieldPath() *PodStatusContainerStateTerminated_FieldTerminalPath
- func (s Pod_Status_Container_StateTerminatedPathSelectorStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateTerminatedPathSelectorStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathValue
- type Pod_Status_Container_StateTerminated_FieldMask
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) AppendPath(path PodStatusContainerStateTerminated_FieldPath)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) FilterInputFields() *Pod_Status_Container_StateTerminated_FieldMask
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) GetPaths() []PodStatusContainerStateTerminated_FieldPath
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) IsFull() bool
- func (fieldMask Pod_Status_Container_StateTerminated_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_Status_Container_StateTerminated_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) PathsCount() int
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Project(source *Pod_Status_Container_StateTerminated) *Pod_Status_Container_StateTerminated
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProtoMessage()
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Reset()
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Set(target, source *Pod_Status_Container_StateTerminated)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Size() int
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) String() string
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Subtract(other *Pod_Status_Container_StateTerminated_FieldMask) *Pod_Status_Container_StateTerminated_FieldMask
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_StateWaiting
- func (o *Pod_Status_Container_StateWaiting) Clone() *Pod_Status_Container_StateWaiting
- func (o *Pod_Status_Container_StateWaiting) CloneRaw() gotenobject.GotenObjectExt
- func (*Pod_Status_Container_StateWaiting) Descriptor() ([]byte, []int)
- func (m *Pod_Status_Container_StateWaiting) GetMessage() string
- func (m *Pod_Status_Container_StateWaiting) GetReason() string
- func (*Pod_Status_Container_StateWaiting) GotenMessage()
- func (o *Pod_Status_Container_StateWaiting) GotenObjectExt()
- func (obj *Pod_Status_Container_StateWaiting) GotenValidate() error
- func (o *Pod_Status_Container_StateWaiting) MakeDiffFieldMask(other *Pod_Status_Container_StateWaiting) *Pod_Status_Container_StateWaiting_FieldMask
- func (o *Pod_Status_Container_StateWaiting) MakeFullFieldMask() *Pod_Status_Container_StateWaiting_FieldMask
- func (o *Pod_Status_Container_StateWaiting) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *Pod_Status_Container_StateWaiting) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *Pod_Status_Container_StateWaiting) Marshal() ([]byte, error)
- func (m *Pod_Status_Container_StateWaiting) MarshalJSON() ([]byte, error)
- func (o *Pod_Status_Container_StateWaiting) Merge(source *Pod_Status_Container_StateWaiting)
- func (o *Pod_Status_Container_StateWaiting) MergeRaw(source gotenobject.GotenObjectExt)
- func (*Pod_Status_Container_StateWaiting) ProtoMessage()
- func (m *Pod_Status_Container_StateWaiting) ProtoReflect() preflect.Message
- func (m *Pod_Status_Container_StateWaiting) Reset()
- func (m *Pod_Status_Container_StateWaiting) SetMessage(fv string)
- func (m *Pod_Status_Container_StateWaiting) SetReason(fv string)
- func (m *Pod_Status_Container_StateWaiting) String() string
- func (m *Pod_Status_Container_StateWaiting) Unmarshal(b []byte) error
- func (m *Pod_Status_Container_StateWaiting) UnmarshalJSON(data []byte) error
- type Pod_Status_Container_StateWaitingPathSelectorMessage
- func (Pod_Status_Container_StateWaitingPathSelectorMessage) FieldPath() *PodStatusContainerStateWaiting_FieldTerminalPath
- func (s Pod_Status_Container_StateWaitingPathSelectorMessage) WithArrayOfValues(values []string) *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateWaitingPathSelectorMessage) WithValue(value string) *PodStatusContainerStateWaiting_FieldTerminalPathValue
- type Pod_Status_Container_StateWaitingPathSelectorReason
- func (Pod_Status_Container_StateWaitingPathSelectorReason) FieldPath() *PodStatusContainerStateWaiting_FieldTerminalPath
- func (s Pod_Status_Container_StateWaitingPathSelectorReason) WithArrayOfValues(values []string) *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues
- func (s Pod_Status_Container_StateWaitingPathSelectorReason) WithValue(value string) *PodStatusContainerStateWaiting_FieldTerminalPathValue
- type Pod_Status_Container_StateWaiting_FieldMask
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) AppendPath(path PodStatusContainerStateWaiting_FieldPath)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) FilterInputFields() *Pod_Status_Container_StateWaiting_FieldMask
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) GetPaths() []PodStatusContainerStateWaiting_FieldPath
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) IsFull() bool
- func (fieldMask Pod_Status_Container_StateWaiting_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_Status_Container_StateWaiting_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) PathsCount() int
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Project(source *Pod_Status_Container_StateWaiting) *Pod_Status_Container_StateWaiting
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProtoMessage()
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Reset()
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Set(target, source *Pod_Status_Container_StateWaiting)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Size() int
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) String() string
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Subtract(other *Pod_Status_Container_StateWaiting_FieldMask) *Pod_Status_Container_StateWaiting_FieldMask
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_Status_FieldMask
- func (fieldMask *Pod_Status_FieldMask) AppendPath(path PodStatus_FieldPath)
- func (fieldMask *Pod_Status_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *Pod_Status_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *Pod_Status_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *Pod_Status_FieldMask) FilterInputFields() *Pod_Status_FieldMask
- func (fieldMask *Pod_Status_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
- func (fieldMask *Pod_Status_FieldMask) GetPaths() []PodStatus_FieldPath
- func (fieldMask *Pod_Status_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *Pod_Status_FieldMask) IsFull() bool
- func (fieldMask Pod_Status_FieldMask) Marshal() ([]byte, error)
- func (fieldMask Pod_Status_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *Pod_Status_FieldMask) PathsCount() int
- func (fieldMask *Pod_Status_FieldMask) Project(source *Pod_Status) *Pod_Status
- func (fieldMask *Pod_Status_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *Pod_Status_FieldMask) ProtoMessage()
- func (fieldMask *Pod_Status_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *Pod_Status_FieldMask) Reset()
- func (fieldMask *Pod_Status_FieldMask) Set(target, source *Pod_Status)
- func (fieldMask *Pod_Status_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *Pod_Status_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *Pod_Status_FieldMask) Size() int
- func (fieldMask *Pod_Status_FieldMask) String() string
- func (fieldMask *Pod_Status_FieldMask) Subtract(other *Pod_Status_FieldMask) *Pod_Status_FieldMask
- func (fieldMask *Pod_Status_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *Pod_Status_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
- func (fieldMask *Pod_Status_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *Pod_Status_FieldMask) UnmarshalJSON(data []byte) error
- type Pod_Status_Phase
- func (Pod_Status_Phase) Descriptor() preflect.EnumDescriptor
- func (x Pod_Status_Phase) Enum() *Pod_Status_Phase
- func (Pod_Status_Phase) EnumDescriptor() ([]byte, []int)
- func (x Pod_Status_Phase) Number() preflect.EnumNumber
- func (x Pod_Status_Phase) String() string
- func (Pod_Status_Phase) Type() preflect.EnumType
- type QueryResultChange
- func (qr *QueryResultChange) GetIsCurrent() bool
- func (qr *QueryResultChange) GetIsHardReset() bool
- func (qr *QueryResultChange) GetIsSoftReset() bool
- func (qr *QueryResultChange) GetNextPageCursor() gotenresource.Cursor
- func (qr *QueryResultChange) GetPrevPageCursor() gotenresource.Cursor
- func (qr *QueryResultChange) GetResults() gotenresource.ResourceChangeList
- func (qr *QueryResultChange) GetResumeToken() string
- func (qr *QueryResultChange) GetSnapshotSize() int64
- func (qr *QueryResultChange) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)
- func (qr *QueryResultChange) SetIsCurrent()
- func (qr *QueryResultChange) SetIsHardReset()
- func (qr *QueryResultChange) SetIsSoftReset()
- func (qr *QueryResultChange) SetResults(results gotenresource.ResourceChangeList)
- func (qr *QueryResultChange) SetResumeToken(token string)
- func (qr *QueryResultChange) SetSnapshotSize(size int64)
- type QueryResultSnapshot
- func (qr *QueryResultSnapshot) GetNextPageCursor() gotenresource.Cursor
- func (qr *QueryResultSnapshot) GetPagingInfo() (totalCount, offset int32)
- func (qr *QueryResultSnapshot) GetPrevPageCursor() gotenresource.Cursor
- func (qr *QueryResultSnapshot) GetResults() gotenresource.ResourceList
- func (qr *QueryResultSnapshot) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)
- func (qr *QueryResultSnapshot) SetPagingInfo(totalCount, offset int32)
- func (qr *QueryResultSnapshot) SetResults(results gotenresource.ResourceList)
- type Reference
- func (ref *Reference) ClearCached()
- func (ref *Reference) FullyQualifiedName() (string, error)
- func (ref *Reference) GetIParentName() gotenresource.Name
- func (ref *Reference) GetIUnderlyingParentName() gotenresource.Name
- func (ref *Reference) GetIdParts() map[string]string
- func (ref *Reference) GetPattern() gotenresource.NamePattern
- func (ref *Reference) GetPod() *Pod
- func (ref *Reference) GetRawResource() gotenresource.Resource
- func (ref *Reference) GetResourceDescriptor() gotenresource.Descriptor
- func (ref *Reference) GetSegments() gotenresource.NameSegments
- func (ref *Reference) GotenEqual(other interface{}) bool
- func (ref *Reference) IsFullyQualified() bool
- func (ref *Reference) IsSpecified() bool
- func (name *Reference) Matches(other interface{}) bool
- func (ref *Reference) ParseProtoString(data string) error
- func (ref *Reference) ProtoString() (string, error)
- func (ref *Reference) Resolve(resolved *Pod)
- func (ref *Reference) ResolveRaw(res gotenresource.Resource) error
- func (ref *Reference) Resolved() bool
- func (ref *Reference) SetFromCliFlag(raw string) error
- func (ref *Reference) String() string
- type WatchQuery
- func (q *WatchQuery) GetMaximumChunkSize() int
- func (q *WatchQuery) GetResumeToken() string
- func (q *WatchQuery) GetStartingTime() *timestamppb.Timestamp
- func (q *WatchQuery) GetWatchType() watch_type.WatchType
- func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)
- func (q *WatchQuery) SetResumeToken(token string)
- func (q *WatchQuery) SetStartingTime(startingTime *timestamppb.Timestamp)
- func (q *WatchQuery) SetWatchType(watchType watch_type.WatchType)
- func (q *WatchQuery) String() string
Constants ¶
const (
NamePattern_Project_Region = "projects/{project}/regions/{region}/pods/{pod}"
)
Variables ¶
var ( Pod_Status_Phase_name = map[int32]string{ 0: "PHASE_UNSPECIFIED", 1: "PENDING", 2: "RUNNING", 3: "SUCCEEDED", 4: "FAILED", 5: "UNKNOWN", } Pod_Status_Phase_value = map[string]int32{ "PHASE_UNSPECIFIED": 0, "PENDING": 1, "RUNNING": 2, "SUCCEEDED": 3, "FAILED": 4, "UNKNOWN": 5, } )
var ( Pod_Status_Container_State_name = map[int32]string{ 0: "STATE_UNSPECIFIED", 1: "WAITING", 2: "RUNNING", 3: "TERMINATED", 4: "UNKNOWN", } Pod_Status_Container_State_value = map[string]int32{ "STATE_UNSPECIFIED": 0, "WAITING": 1, "RUNNING": 2, "TERMINATED": 3, "UNKNOWN": 4, } )
Functions ¶
func AsAnyCastAccess ¶
func AsAnyCastAccess(access PodAccess) gotenresource.Access
Types ¶
type Descriptor ¶
type Descriptor struct {
// contains filtered or unexported fields
}
func GetDescriptor ¶
func GetDescriptor() *Descriptor
func (*Descriptor) GetNameDescriptor ¶
func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor
func (*Descriptor) GetResourceTypeName ¶
func (d *Descriptor) GetResourceTypeName() *gotenresource.TypeName
func (*Descriptor) NewGetQuery ¶
func (d *Descriptor) NewGetQuery() gotenresource.GetQuery
func (*Descriptor) NewListQuery ¶
func (d *Descriptor) NewListQuery() gotenresource.ListQuery
func (*Descriptor) NewNameList ¶
func (d *Descriptor) NewNameList(size, reserved int) gotenresource.NameList
func (*Descriptor) NewParentNameList ¶
func (d *Descriptor) NewParentNameList(size, reserved int) gotenresource.ParentNameList
func (*Descriptor) NewParentReferenceList ¶
func (d *Descriptor) NewParentReferenceList(size, reserved int) gotenresource.ParentReferenceList
func (*Descriptor) NewQueryResultChange ¶
func (d *Descriptor) NewQueryResultChange() gotenresource.QueryResultChange
func (*Descriptor) NewQueryResultSnapshot ¶
func (d *Descriptor) NewQueryResultSnapshot() gotenresource.QueryResultSnapshot
func (*Descriptor) NewReferenceList ¶
func (d *Descriptor) NewReferenceList(size, reserved int) gotenresource.ReferenceList
func (*Descriptor) NewResource ¶
func (d *Descriptor) NewResource() gotenresource.Resource
func (*Descriptor) NewResourceChange ¶
func (d *Descriptor) NewResourceChange() gotenresource.ResourceChange
func (*Descriptor) NewResourceChangeList ¶
func (d *Descriptor) NewResourceChangeList(size, reserved int) gotenresource.ResourceChangeList
func (*Descriptor) NewResourceChangeMap ¶
func (d *Descriptor) NewResourceChangeMap(reserved int) gotenresource.ResourceChangeMap
func (*Descriptor) NewResourceCursor ¶
func (d *Descriptor) NewResourceCursor() gotenresource.Cursor
func (*Descriptor) NewResourceFieldMask ¶ added in v0.4.16
func (d *Descriptor) NewResourceFieldMask() gotenobject.FieldMask
func (*Descriptor) NewResourceFilter ¶ added in v0.4.16
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 ¶ added in v0.4.16
func (d *Descriptor) NewResourceOrderBy() gotenresource.OrderBy
func (*Descriptor) NewResourcePager ¶ added in v0.9.0
func (d *Descriptor) NewResourcePager() gotenresource.PagerQuery
func (*Descriptor) NewSearchQuery ¶
func (d *Descriptor) NewSearchQuery() gotenresource.SearchQuery
func (*Descriptor) NewWatchQuery ¶
func (d *Descriptor) NewWatchQuery() gotenresource.WatchQuery
func (*Descriptor) ParseFieldPath ¶
func (d *Descriptor) ParseFieldPath(raw string) (gotenobject.FieldPath, error)
func (*Descriptor) ParseResourceName ¶
func (d *Descriptor) ParseResourceName(nameStr string) (gotenresource.Name, error)
type Filter ¶
type Filter struct {
FilterCondition
}
func (*Filter) ConvertToNative ¶
func (*Filter) 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) EvaluateRaw ¶
func (filter *Filter) EvaluateRaw(res gotenresource.Resource) bool
func (*Filter) FilterSlice ¶
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) ParseProtoString ¶
func (*Filter) ProtoString ¶
func (*Filter) SetFromCliFlag ¶
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 Pod_FieldPath, opts ...gotenfilter.FilterConditionOption) *filterCndBuilderAnyPath
func (*FilterBuilder) With ¶
func (b *FilterBuilder) With(condOrBuilder FilterBuilderOrCondition, opts ...gotenfilter.FilterConditionOption) *FilterBuilder
type FilterBuilderOrCondition ¶
type FilterBuilderOrCondition interface {
// contains filtered or unexported methods
}
type FilterCondition ¶
type FilterCondition interface { gotenresource.FilterCondition And(...FilterCondition) FilterCondition Evaluate(res *Pod) bool // Whether this condition is at least as specific as other. // When true, any Pod 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 Pod_FieldPath) bool // contains filtered or unexported methods }
func AndFilterConditions ¶
func AndFilterConditions(conds ...FilterCondition) FilterCondition
type FilterConditionCompare ¶
type FilterConditionCompare struct { Operator filterParser.CompareOperator Pod_FieldPathValue }
func (*FilterConditionCompare) And ¶
func (cond *FilterConditionCompare) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionCompare) ConditionCompare ¶
func (cond *FilterConditionCompare) ConditionCompare()
func (*FilterConditionCompare) Evaluate ¶
func (cond *FilterConditionCompare) Evaluate(res *Pod) bool
func (*FilterConditionCompare) EvaluateRaw ¶
func (cond *FilterConditionCompare) EvaluateRaw(res gotenresource.Resource) bool
func (*FilterConditionCompare) GetOperator ¶
func (cond *FilterConditionCompare) GetOperator() filterParser.CompareOperator
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 Pod_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 (cond *FilterConditionComposite) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionComposite) ConditionComposite ¶
func (cond *FilterConditionComposite) ConditionComposite()
func (*FilterConditionComposite) Evaluate ¶
func (cond *FilterConditionComposite) Evaluate(res *Pod) bool
func (*FilterConditionComposite) EvaluateRaw ¶
func (cond *FilterConditionComposite) EvaluateRaw(res gotenresource.Resource) bool
func (*FilterConditionComposite) GetOperator ¶
func (cond *FilterConditionComposite) GetOperator() filterParser.CompositeOperator
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 Pod_FieldPath) bool
func (*FilterConditionComposite) SpecifiesRawFieldPath ¶
func (cond *FilterConditionComposite) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool
func (*FilterConditionComposite) String ¶
func (cond *FilterConditionComposite) String() string
type FilterConditionContains ¶
type FilterConditionContains struct { Type gotenresource.ConditionContainsType FieldPath Pod_FieldPath Value Pod_FieldPathArrayItemValue Values []Pod_FieldPathArrayItemValue }
func (*FilterConditionContains) And ¶
func (cond *FilterConditionContains) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionContains) ConditionContains ¶
func (cond *FilterConditionContains) ConditionContains()
func (*FilterConditionContains) ConditionContainsType ¶
func (cond *FilterConditionContains) ConditionContainsType() gotenresource.ConditionContainsType
func (*FilterConditionContains) Evaluate ¶
func (cond *FilterConditionContains) Evaluate(res *Pod) bool
func (*FilterConditionContains) EvaluateRaw ¶
func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool
func (*FilterConditionContains) GetFieldPath ¶
func (cond *FilterConditionContains) GetFieldPath() Pod_FieldPath
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 Pod_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 {
Pod_FieldPathArrayOfValues
}
func (*FilterConditionIn) And ¶
func (cond *FilterConditionIn) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionIn) ConditionIn ¶
func (cond *FilterConditionIn) ConditionIn()
func (*FilterConditionIn) Evaluate ¶
func (cond *FilterConditionIn) Evaluate(res *Pod) 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 Pod_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 Pod_FieldPath }
func (*FilterConditionIsNaN) And ¶
func (cond *FilterConditionIsNaN) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionIsNaN) ConditionIsNaN ¶
func (cond *FilterConditionIsNaN) ConditionIsNaN()
func (*FilterConditionIsNaN) Evaluate ¶
func (cond *FilterConditionIsNaN) Evaluate(res *Pod) 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 Pod_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 Pod_FieldPath }
func (*FilterConditionIsNull) And ¶
func (cond *FilterConditionIsNull) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionIsNull) ConditionIsNull ¶
func (cond *FilterConditionIsNull) ConditionIsNull()
func (*FilterConditionIsNull) Evaluate ¶
func (cond *FilterConditionIsNull) Evaluate(res *Pod) 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 Pod_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 (cond *FilterConditionNot) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionNot) ConditionNot ¶
func (cond *FilterConditionNot) ConditionNot()
func (*FilterConditionNot) Evaluate ¶
func (cond *FilterConditionNot) Evaluate(res *Pod) 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 Pod_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 {
Pod_FieldPathArrayOfValues
}
func (*FilterConditionNotIn) And ¶
func (cond *FilterConditionNotIn) And(conds ...FilterCondition) FilterCondition
func (*FilterConditionNotIn) ConditionNotIn ¶
func (cond *FilterConditionNotIn) ConditionNotIn()
func (*FilterConditionNotIn) Evaluate ¶
func (cond *FilterConditionNotIn) Evaluate(res *Pod) 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 Pod_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 *Pod_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)
type ListQuery ¶
type ListQuery struct { Filter *Filter Pager *PagerQuery Mask *Pod_FieldMask WithPagingInfo bool }
func (*ListQuery) GetFieldMask ¶
func (q *ListQuery) GetFieldMask() gotenobject.FieldMask
func (*ListQuery) GetFilter ¶
func (q *ListQuery) GetFilter() gotenresource.Filter
func (*ListQuery) GetPager ¶
func (q *ListQuery) GetPager() gotenresource.PagerQuery
func (*ListQuery) GetResourceDescriptor ¶
func (q *ListQuery) GetResourceDescriptor() gotenresource.Descriptor
func (*ListQuery) GetWithPagingInfo ¶ added in v0.10.1
func (*ListQuery) GotenQuery ¶
func (q *ListQuery) GotenQuery()
func (*ListQuery) SetFieldMask ¶
func (q *ListQuery) SetFieldMask(mask gotenobject.FieldMask)
func (*ListQuery) SetFilter ¶
func (q *ListQuery) SetFilter(filter gotenresource.Filter)
func (*ListQuery) SetPager ¶
func (q *ListQuery) SetPager(pager gotenresource.PagerQuery)
func (*ListQuery) SetWithPagingInfo ¶ added in v0.10.1
type Name ¶
type Name struct { ParentName PodId string `firestore:"podId"` }
func MustParseName ¶
func ParseNameOrId ¶
func (*Name) AsRawReference ¶
func (name *Name) AsRawReference() gotenresource.Reference
func (*Name) AsReference ¶
func (*Name) ConvertToNative ¶
func (*Name) FullyQualifiedName ¶
func (*Name) GetIParentName ¶ added in v0.8.0
func (name *Name) GetIParentName() gotenresource.Name
func (*Name) GetIUnderlyingParentName ¶ added in v0.8.0
func (name *Name) GetIUnderlyingParentName() gotenresource.Name
func (*Name) GetIdParts ¶
func (*Name) GetPattern ¶
func (name *Name) GetPattern() gotenresource.NamePattern
func (*Name) GetProjectName ¶
func (*Name) GetResourceDescriptor ¶
func (name *Name) GetResourceDescriptor() gotenresource.Descriptor
func (*Name) GetSegments ¶
func (name *Name) GetSegments() gotenresource.NameSegments
func (*Name) GotenEqual ¶
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*Name) IsFullyQualified ¶
func (*Name) IsSpecified ¶
func (*Name) Matches ¶
Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (*Name) ParseProtoString ¶
func (*Name) ProtoString ¶
func (*Name) SetFromCliFlag ¶
implement CustomTypeCliValue method
func (*Name) SetFromSegments ¶
func (name *Name) SetFromSegments(segments gotenresource.NameSegments) error
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) CompareRaw ¶
func (orderBy *OrderBy) CompareRaw(left, right gotenresource.Resource) int
func (*OrderBy) GetFieldMask ¶
func (orderBy *OrderBy) GetFieldMask() *Pod_FieldMask
func (*OrderBy) GetOrderByFields ¶
func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField
func (*OrderBy) GetRawFieldMask ¶
func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask
func (*OrderBy) InsertSorted ¶
func (*OrderBy) InsertSortedRaw ¶
func (orderBy *OrderBy) InsertSortedRaw(sorted gotenresource.ResourceList, elem gotenresource.Resource) (gotenresource.ResourceList, int)
func (*OrderBy) ParseProtoString ¶
func (*OrderBy) ProtoString ¶
func (*OrderBy) SetFromCliFlag ¶
func (*OrderBy) SortRaw ¶
func (orderBy *OrderBy) SortRaw(results gotenresource.ResourceList)
type OrderByField ¶
type OrderByField struct { FieldPath Pod_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 *Pod) int
func (*OrderByField) GetDirection ¶
func (orderByFld *OrderByField) GetDirection() gotenresource.OrderDirection
func (*OrderByField) GetFieldPath ¶
func (orderByFld *OrderByField) GetFieldPath() gotenobject.FieldPath
type PagerCursor ¶
type PagerCursor struct { CursorValue gotenresource.CursorValue Inclusion gotenresource.CursorInclusion PageDirection gotenresource.PageDirection }
PagerCursor is protobuf Custom Type, which (de)serializes "string page_token" for API List processing Database adapter implementation must use this cursor when Paginating list views Token is composed of 3 values (dot separated in serialized form) - CursorValue: Backend-specific value of the cursor. - PageDirection: either l (left) or r (right), which hints DB Adapter whether Snapshot marks Start or End of result - Inclusion: either i (inclusive) or e (exclusive) - Whether cursor marks exact point or right before/after (depending on direction)
func (*PagerCursor) GetInclusion ¶
func (cursor *PagerCursor) GetInclusion() gotenresource.CursorInclusion
func (*PagerCursor) GetPageDirection ¶
func (cursor *PagerCursor) GetPageDirection() gotenresource.PageDirection
func (*PagerCursor) GetValue ¶
func (cursor *PagerCursor) GetValue() gotenresource.CursorValue
func (*PagerCursor) IsEmpty ¶
func (cursor *PagerCursor) IsEmpty() bool
func (*PagerCursor) ParseProtoString ¶
func (cursor *PagerCursor) ParseProtoString(data string) (err error)
func (*PagerCursor) ProtoString ¶
func (cursor *PagerCursor) ProtoString() (string, error)
func (*PagerCursor) SetCursorValue ¶
func (cursor *PagerCursor) SetCursorValue(value gotenresource.CursorValue)
func (*PagerCursor) SetFromCliFlag ¶
func (cursor *PagerCursor) SetFromCliFlag(raw string) error
func (*PagerCursor) SetInclusion ¶
func (cursor *PagerCursor) SetInclusion(inclusion gotenresource.CursorInclusion)
func (*PagerCursor) SetPageDirection ¶
func (cursor *PagerCursor) SetPageDirection(direction gotenresource.PageDirection)
func (*PagerCursor) String ¶
func (cursor *PagerCursor) String() string
type PagerQuery ¶
type PagerQuery struct { OrderBy *OrderBy Cursor *PagerCursor Limit int PeekForward bool }
PagerQuery is main struct used for assisting server and database to perform Pagination
func MakePagerQuery ¶
func MakePagerQuery(orderBy *OrderBy, cursor *PagerCursor, pageSize int32, peekForward bool) *PagerQuery
MakePagerQuery builds pager from API data and applies defaults
func (*PagerQuery) GetCursor ¶
func (p *PagerQuery) GetCursor() gotenresource.Cursor
func (*PagerQuery) GetLimit ¶
func (p *PagerQuery) GetLimit() int
func (*PagerQuery) GetOrderBy ¶
func (p *PagerQuery) GetOrderBy() gotenresource.OrderBy
func (*PagerQuery) GetPeekForward ¶
func (p *PagerQuery) GetPeekForward() bool
func (*PagerQuery) GetResourceDescriptor ¶
func (p *PagerQuery) GetResourceDescriptor() gotenresource.Descriptor
func (*PagerQuery) PageDirection ¶
func (p *PagerQuery) PageDirection() gotenresource.PageDirection
func (*PagerQuery) SetCursor ¶ added in v0.8.0
func (p *PagerQuery) SetCursor(cursor gotenresource.Cursor)
func (*PagerQuery) SetLimit ¶ added in v0.8.0
func (p *PagerQuery) SetLimit(limit int)
func (*PagerQuery) SetOrderBy ¶ added in v0.8.0
func (p *PagerQuery) SetOrderBy(orderBy gotenresource.OrderBy)
func (*PagerQuery) SetPageDirection ¶ added in v0.8.0
func (p *PagerQuery) SetPageDirection(direction gotenresource.PageDirection)
func (*PagerQuery) SetPeekForward ¶ added in v0.8.0
func (p *PagerQuery) SetPeekForward(peekForward bool)
type ParentName ¶
type ParentName struct { NamePattern ProjectId string `firestore:"projectId"` RegionId string `firestore:"regionId"` }
func MustParseParentName ¶
func MustParseParentName(name string) *ParentName
func ParseParentName ¶
func ParseParentName(name string) (*ParentName, error)
func (*ParentName) AsRawReference ¶
func (name *ParentName) AsRawReference() gotenresource.Reference
func (*ParentName) AsReference ¶
func (name *ParentName) AsReference() *ParentReference
func (*ParentName) DescendsFrom ¶
func (name *ParentName) DescendsFrom(ancestor string) bool
func (*ParentName) FullyQualifiedName ¶
func (name *ParentName) FullyQualifiedName() (string, error)
func (*ParentName) GetIParentName ¶ added in v0.8.0
func (name *ParentName) GetIParentName() gotenresource.Name
func (*ParentName) GetIUnderlyingParentName ¶ added in v0.8.0
func (name *ParentName) GetIUnderlyingParentName() gotenresource.Name
func (*ParentName) GetIdParts ¶
func (name *ParentName) GetIdParts() map[string]string
func (*ParentName) GetPattern ¶
func (name *ParentName) GetPattern() gotenresource.NamePattern
func (*ParentName) GetProjectName ¶
func (name *ParentName) GetProjectName() *project.Name
func (*ParentName) GetResourceDescriptor ¶
func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor
func (*ParentName) GetSegments ¶
func (name *ParentName) GetSegments() gotenresource.NameSegments
func (*ParentName) GotenEqual ¶
func (name *ParentName) GotenEqual(other interface{}) bool
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*ParentName) IsFullyQualified ¶
func (name *ParentName) IsFullyQualified() bool
func (*ParentName) IsSpecified ¶
func (name *ParentName) IsSpecified() bool
func (*ParentName) Matches ¶
func (name *ParentName) Matches(other interface{}) bool
Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (*ParentName) ParseProtoString ¶
func (name *ParentName) ParseProtoString(data string) error
func (*ParentName) ProtoString ¶
func (name *ParentName) ProtoString() (string, error)
func (*ParentName) SetFromCliFlag ¶
func (name *ParentName) SetFromCliFlag(raw string) error
implement CustomTypeCliValue method
func (*ParentName) SetFromSegments ¶
func (name *ParentName) SetFromSegments(segments gotenresource.NameSegments) error
func (*ParentName) String ¶
func (name *ParentName) String() string
type ParentReference ¶
type ParentReference struct { ParentName // contains filtered or unexported fields }
func MakeParentReference ¶
func MakeParentReference(name *ParentName) (*ParentReference, error)
func MustParseParentReference ¶
func MustParseParentReference(name string) *ParentReference
func ParseParentReference ¶
func ParseParentReference(name string) (*ParentReference, error)
func (*ParentReference) ClearCached ¶
func (ref *ParentReference) ClearCached()
func (*ParentReference) ConvertToNative ¶ added in v0.6.9
func (name *ParentReference) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
func (*ParentReference) ConvertToType ¶ added in v0.6.9
func (name *ParentReference) ConvertToType(typeVal ref.Type) ref.Val
func (*ParentReference) Equal ¶ added in v0.6.9
func (name *ParentReference) Equal(other ref.Val) ref.Val
func (*ParentReference) GetIParentName ¶ added in v0.8.0
func (ref *ParentReference) GetIParentName() gotenresource.Name
func (*ParentReference) GetIUnderlyingParentName ¶ added in v0.8.0
func (ref *ParentReference) GetIUnderlyingParentName() gotenresource.Name
func (*ParentReference) GetIdParts ¶
func (ref *ParentReference) GetIdParts() map[string]string
func (*ParentReference) GetPattern ¶
func (ref *ParentReference) GetPattern() gotenresource.NamePattern
func (*ParentReference) GetProject ¶
func (ref *ParentReference) GetProject() *project.Project
func (*ParentReference) GetProjectReference ¶
func (ref *ParentReference) GetProjectReference() *project.Reference
func (*ParentReference) GetRawResource ¶
func (ref *ParentReference) GetRawResource() gotenresource.Resource
func (*ParentReference) GetResourceDescriptor ¶
func (ref *ParentReference) GetResourceDescriptor() gotenresource.Descriptor
func (*ParentReference) GetSegments ¶
func (ref *ParentReference) GetSegments() gotenresource.NameSegments
func (*ParentReference) GetUnderlyingReference ¶
func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference
func (*ParentReference) GotenEqual ¶
func (ref *ParentReference) GotenEqual(other interface{}) bool
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*ParentReference) HasTrait ¶ added in v0.6.9
func (name *ParentReference) HasTrait(trait int) bool
func (*ParentReference) IsFullyQualified ¶
func (ref *ParentReference) IsFullyQualified() bool
func (*ParentReference) IsSpecified ¶
func (ref *ParentReference) IsSpecified() bool
func (*ParentReference) Match ¶ added in v0.6.9
func (name *ParentReference) Match(pattern ref.Val) ref.Val
func (*ParentReference) Matches ¶
func (name *ParentReference) Matches(other interface{}) bool
Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (*ParentReference) ParseProtoString ¶
func (ref *ParentReference) ParseProtoString(data string) error
func (*ParentReference) ProtoString ¶
func (ref *ParentReference) ProtoString() (string, error)
func (*ParentReference) ResolveRaw ¶
func (ref *ParentReference) ResolveRaw(res gotenresource.Resource) error
func (*ParentReference) Resolved ¶
func (ref *ParentReference) Resolved() bool
func (*ParentReference) SetFromCliFlag ¶
func (ref *ParentReference) SetFromCliFlag(raw string) error
implement CustomTypeCliValue method
func (*ParentReference) String ¶
func (ref *ParentReference) String() string
func (*ParentReference) Type ¶ added in v0.6.9
func (name *ParentReference) Type() ref.Type
func (*ParentReference) TypeName ¶ added in v0.6.9
func (name *ParentReference) TypeName() string
func (*ParentReference) Value ¶ added in v0.6.9
func (name *ParentReference) Value() interface{}
type Pod ¶
type Pod struct { // Name of Pod // When creating a new instance, this field is optional and if not provided, // it will be generated automatically. Last ID segment must conform to the // following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9] Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"` // Display name of Pod DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"` Metadata *ntt_meta.Meta `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"` Spec *common.PodSpec `protobuf:"bytes,4,opt,name=spec,proto3" json:"spec,omitempty" firestore:"spec"` // Optional managing distribution. Distribution *distribution.Reference `protobuf:"bytes,6,opt,customtype=Reference,name=distribution,proto3" json:"distribution,omitempty" firestore:"distribution"` Status *Pod_Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty" firestore:"status"` // contains filtered or unexported fields }
Pod Resource
func (*Pod) CloneRaw ¶
func (o *Pod) CloneRaw() gotenobject.GotenObjectExt
func (*Pod) Descriptor ¶
Deprecated, Use Pod.ProtoReflect.Descriptor instead.
func (*Pod) GetDisplayName ¶
func (*Pod) GetDistribution ¶ added in v0.12.44
func (m *Pod) GetDistribution() *distribution.Reference
func (*Pod) GetMetadata ¶
func (*Pod) GetRawName ¶
func (r *Pod) GetRawName() gotenresource.Name
func (*Pod) GetResourceDescriptor ¶
func (r *Pod) GetResourceDescriptor() gotenresource.Descriptor
func (*Pod) GetStatus ¶
func (m *Pod) GetStatus() *Pod_Status
func (*Pod) GotenMessage ¶
func (*Pod) GotenMessage()
func (*Pod) GotenObjectExt ¶
func (o *Pod) GotenObjectExt()
func (*Pod) GotenValidate ¶
func (*Pod) MakeDiffFieldMask ¶
func (o *Pod) MakeDiffFieldMask(other *Pod) *Pod_FieldMask
func (*Pod) MakeFullFieldMask ¶
func (o *Pod) MakeFullFieldMask() *Pod_FieldMask
func (*Pod) MakeRawDiffFieldMask ¶
func (o *Pod) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod) MakeRawFullFieldMask ¶
func (o *Pod) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod) MarshalJSON ¶
func (*Pod) MaybePopulateDefaults ¶
func (*Pod) MergeRaw ¶
func (o *Pod) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod) ProtoMessage ¶
func (*Pod) ProtoMessage()
func (*Pod) ProtoReflect ¶
func (*Pod) SetDisplayName ¶
func (*Pod) SetDistribution ¶ added in v0.12.44
func (m *Pod) SetDistribution(fv *distribution.Reference)
func (*Pod) SetMetadata ¶
func (*Pod) SetStatus ¶
func (m *Pod) SetStatus(fv *Pod_Status)
func (*Pod) UnmarshalJSON ¶
type PodAccess ¶
type PodAccess interface { GetPod(context.Context, *GetQuery) (*Pod, error) BatchGetPods(context.Context, []*Reference, ...gotenresource.BatchGetOption) error QueryPods(context.Context, *ListQuery) (*QueryResultSnapshot, error) WatchPod(context.Context, *GetQuery, func(*PodChange) error) error WatchPods(context.Context, *WatchQuery, func(*QueryResultChange) error) error SavePod(context.Context, *Pod, ...gotenresource.SaveOption) error DeletePod(context.Context, *Reference, ...gotenresource.DeleteOption) error }
type PodChange ¶
type PodChange struct { // Pod change // // Types that are valid to be assigned to ChangeType: // *PodChange_Added_ // *PodChange_Modified_ // *PodChange_Current_ // *PodChange_Removed_ ChangeType isPodChange_ChangeType `protobuf_oneof:"change_type"` // contains filtered or unexported fields }
PodChange is used by Watch notifications Responses to describe change of single Pod One of Added, Modified, Removed
func (*PodChange) Descriptor ¶
Deprecated, Use PodChange.ProtoReflect.Descriptor instead.
func (*PodChange) GetAdded ¶
func (m *PodChange) GetAdded() *PodChange_Added
func (*PodChange) GetChangeType ¶
func (m *PodChange) GetChangeType() isPodChange_ChangeType
func (*PodChange) GetCurrent ¶
func (m *PodChange) GetCurrent() *PodChange_Current
func (*PodChange) GetCurrentViewIndex ¶
func (*PodChange) GetModified ¶
func (m *PodChange) GetModified() *PodChange_Modified
func (*PodChange) GetPodName ¶
func (*PodChange) GetPreviousViewIndex ¶
func (*PodChange) GetRawName ¶
func (c *PodChange) GetRawName() gotenresource.Name
func (*PodChange) GetRawResource ¶ added in v0.5.1
func (c *PodChange) GetRawResource() gotenresource.Resource
func (*PodChange) GetRemoved ¶
func (m *PodChange) GetRemoved() *PodChange_Removed
func (*PodChange) GotenMessage ¶
func (*PodChange) GotenMessage()
func (*PodChange) GotenValidate ¶
func (*PodChange) MarshalJSON ¶
func (*PodChange) ProtoMessage ¶
func (*PodChange) ProtoMessage()
func (*PodChange) ProtoReflect ¶
func (*PodChange) SetAdded ¶
func (m *PodChange) SetAdded(fv *PodChange_Added)
func (*PodChange) SetAddedRaw ¶
func (c *PodChange) SetAddedRaw(snapshot gotenresource.Resource, idx int)
func (*PodChange) SetChangeType ¶
func (m *PodChange) SetChangeType(ofv isPodChange_ChangeType)
func (*PodChange) SetCurrent ¶
func (m *PodChange) SetCurrent(fv *PodChange_Current)
func (*PodChange) SetCurrentRaw ¶
func (c *PodChange) SetCurrentRaw(snapshot gotenresource.Resource)
func (*PodChange) SetDeletedRaw ¶
func (c *PodChange) SetDeletedRaw(name gotenresource.Name, idx int)
func (*PodChange) SetModified ¶
func (m *PodChange) SetModified(fv *PodChange_Modified)
func (*PodChange) SetModifiedRaw ¶
func (c *PodChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, newIdx int)
func (*PodChange) SetRemoved ¶
func (m *PodChange) SetRemoved(fv *PodChange_Removed)
func (*PodChange) UnmarshalJSON ¶
type PodChangeList ¶
type PodChangeList []*PodChange
func (PodChangeList) Append ¶
func (l PodChangeList) Append(item gotenresource.ResourceChange) gotenresource.ResourceChangeList
func (PodChangeList) AppendList ¶
func (l PodChangeList) AppendList(list gotenresource.ResourceChangeList) gotenresource.ResourceChangeList
func (PodChangeList) At ¶
func (l PodChangeList) At(idx int) gotenresource.ResourceChange
func (PodChangeList) Length ¶
func (l PodChangeList) Length() int
func (PodChangeList) Set ¶
func (l PodChangeList) Set(idx int, change gotenresource.ResourceChange)
func (PodChangeList) Slice ¶
func (l PodChangeList) Slice(first, second int) gotenresource.ResourceChangeList
type PodChangeMap ¶
func (PodChangeMap) Delete ¶
func (m PodChangeMap) Delete(name gotenresource.Name)
func (PodChangeMap) ForEach ¶
func (m PodChangeMap) ForEach(cb func(gotenresource.Name, gotenresource.ResourceChange) bool)
func (PodChangeMap) Get ¶
func (m PodChangeMap) Get(name gotenresource.Name) gotenresource.ResourceChange
func (PodChangeMap) Length ¶
func (m PodChangeMap) Length() int
func (PodChangeMap) Set ¶
func (m PodChangeMap) Set(change gotenresource.ResourceChange)
type PodChange_Added ¶
type PodChange_Added struct { Pod *Pod `protobuf:"bytes,1,opt,name=pod,proto3" json:"pod,omitempty" firestore:"pod"` // Integer describing index of added Pod 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 }
Pod has been added to query view
func (*PodChange_Added) Descriptor ¶
func (*PodChange_Added) Descriptor() ([]byte, []int)
Deprecated, Use PodChange_Added.ProtoReflect.Descriptor instead.
func (*PodChange_Added) GetPod ¶
func (m *PodChange_Added) GetPod() *Pod
func (*PodChange_Added) GetViewIndex ¶
func (m *PodChange_Added) GetViewIndex() int32
func (*PodChange_Added) GotenMessage ¶
func (*PodChange_Added) GotenMessage()
func (*PodChange_Added) GotenValidate ¶
func (obj *PodChange_Added) GotenValidate() error
func (*PodChange_Added) Marshal ¶
func (m *PodChange_Added) Marshal() ([]byte, error)
func (*PodChange_Added) MarshalJSON ¶
func (m *PodChange_Added) MarshalJSON() ([]byte, error)
func (*PodChange_Added) ProtoMessage ¶
func (*PodChange_Added) ProtoMessage()
func (*PodChange_Added) ProtoReflect ¶
func (m *PodChange_Added) ProtoReflect() preflect.Message
func (*PodChange_Added) Reset ¶
func (m *PodChange_Added) Reset()
func (*PodChange_Added) SetPod ¶
func (m *PodChange_Added) SetPod(fv *Pod)
func (*PodChange_Added) SetViewIndex ¶
func (m *PodChange_Added) SetViewIndex(fv int32)
func (*PodChange_Added) String ¶
func (m *PodChange_Added) String() string
func (*PodChange_Added) Unmarshal ¶
func (m *PodChange_Added) Unmarshal(b []byte) error
func (*PodChange_Added) UnmarshalJSON ¶
func (m *PodChange_Added) UnmarshalJSON(data []byte) error
type PodChange_Added_ ¶
type PodChange_Added_ struct { // Added is returned when watched document is added, either created or // enters Query view Added *PodChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof" firestore:"added"` }
type PodChange_Current ¶
type PodChange_Current struct { Pod *Pod `protobuf:"bytes,1,opt,name=pod,proto3" json:"pod,omitempty" firestore:"pod"` // contains filtered or unexported fields }
Pod has been added or modified in a query view. Version used for stateless watching
func (*PodChange_Current) Descriptor ¶
func (*PodChange_Current) Descriptor() ([]byte, []int)
Deprecated, Use PodChange_Current.ProtoReflect.Descriptor instead.
func (*PodChange_Current) GetPod ¶
func (m *PodChange_Current) GetPod() *Pod
func (*PodChange_Current) GotenMessage ¶
func (*PodChange_Current) GotenMessage()
func (*PodChange_Current) GotenValidate ¶
func (obj *PodChange_Current) GotenValidate() error
func (*PodChange_Current) Marshal ¶
func (m *PodChange_Current) Marshal() ([]byte, error)
func (*PodChange_Current) MarshalJSON ¶
func (m *PodChange_Current) MarshalJSON() ([]byte, error)
func (*PodChange_Current) ProtoMessage ¶
func (*PodChange_Current) ProtoMessage()
func (*PodChange_Current) ProtoReflect ¶
func (m *PodChange_Current) ProtoReflect() preflect.Message
func (*PodChange_Current) Reset ¶
func (m *PodChange_Current) Reset()
func (*PodChange_Current) SetPod ¶
func (m *PodChange_Current) SetPod(fv *Pod)
func (*PodChange_Current) String ¶
func (m *PodChange_Current) String() string
func (*PodChange_Current) Unmarshal ¶
func (m *PodChange_Current) Unmarshal(b []byte) error
func (*PodChange_Current) UnmarshalJSON ¶
func (m *PodChange_Current) UnmarshalJSON(data []byte) error
type PodChange_Current_ ¶
type PodChange_Current_ struct { // Current is returned in stateless watch when document enters query view or // is modified within. Current *PodChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof" firestore:"current"` }
type PodChange_Modified ¶
type PodChange_Modified struct { // Name of modified Pod Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"` // New version of Pod or masked difference, depending on mask_changes // instrumentation of issued [WatchPodRequest] or [WatchPodsRequest] Pod *Pod `protobuf:"bytes,2,opt,name=pod,proto3" json:"pod,omitempty" firestore:"pod"` // Used when mask_changes is set, contains field paths of modified // properties. FieldMask *Pod_FieldMask `` /* 135-byte string literal not displayed */ // Previous view index specifies previous position of modified Pod. // When modification doesn't affect sorted order, value will remain // identical to [view_index]. PreviousViewIndex int32 `` /* 145-byte string literal not displayed */ // Integer specifying Pod 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 }
Pod changed some of it's fields - contains either full document or masked change
func (*PodChange_Modified) Descriptor ¶
func (*PodChange_Modified) Descriptor() ([]byte, []int)
Deprecated, Use PodChange_Modified.ProtoReflect.Descriptor instead.
func (*PodChange_Modified) GetFieldMask ¶
func (m *PodChange_Modified) GetFieldMask() *Pod_FieldMask
func (*PodChange_Modified) GetName ¶
func (m *PodChange_Modified) GetName() *Name
func (*PodChange_Modified) GetPod ¶
func (m *PodChange_Modified) GetPod() *Pod
func (*PodChange_Modified) GetPreviousViewIndex ¶
func (m *PodChange_Modified) GetPreviousViewIndex() int32
func (*PodChange_Modified) GetViewIndex ¶
func (m *PodChange_Modified) GetViewIndex() int32
func (*PodChange_Modified) GotenMessage ¶
func (*PodChange_Modified) GotenMessage()
func (*PodChange_Modified) GotenValidate ¶
func (obj *PodChange_Modified) GotenValidate() error
func (*PodChange_Modified) Marshal ¶
func (m *PodChange_Modified) Marshal() ([]byte, error)
func (*PodChange_Modified) MarshalJSON ¶
func (m *PodChange_Modified) MarshalJSON() ([]byte, error)
func (*PodChange_Modified) ProtoMessage ¶
func (*PodChange_Modified) ProtoMessage()
func (*PodChange_Modified) ProtoReflect ¶
func (m *PodChange_Modified) ProtoReflect() preflect.Message
func (*PodChange_Modified) Reset ¶
func (m *PodChange_Modified) Reset()
func (*PodChange_Modified) SetFieldMask ¶
func (m *PodChange_Modified) SetFieldMask(fv *Pod_FieldMask)
func (*PodChange_Modified) SetName ¶
func (m *PodChange_Modified) SetName(fv *Name)
func (*PodChange_Modified) SetPod ¶
func (m *PodChange_Modified) SetPod(fv *Pod)
func (*PodChange_Modified) SetPreviousViewIndex ¶
func (m *PodChange_Modified) SetPreviousViewIndex(fv int32)
func (*PodChange_Modified) SetViewIndex ¶
func (m *PodChange_Modified) SetViewIndex(fv int32)
func (*PodChange_Modified) String ¶
func (m *PodChange_Modified) String() string
func (*PodChange_Modified) Unmarshal ¶
func (m *PodChange_Modified) Unmarshal(b []byte) error
func (*PodChange_Modified) UnmarshalJSON ¶
func (m *PodChange_Modified) UnmarshalJSON(data []byte) error
type PodChange_Modified_ ¶
type PodChange_Modified_ struct { // Modified is returned when watched document is modified Modified *PodChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof" firestore:"modified"` }
type PodChange_Removed ¶
type PodChange_Removed struct { Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"` // Integer specifying removed Pod 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 Pod is deleted or leaves Query view
func (*PodChange_Removed) Descriptor ¶
func (*PodChange_Removed) Descriptor() ([]byte, []int)
Deprecated, Use PodChange_Removed.ProtoReflect.Descriptor instead.
func (*PodChange_Removed) GetName ¶
func (m *PodChange_Removed) GetName() *Name
func (*PodChange_Removed) GetViewIndex ¶
func (m *PodChange_Removed) GetViewIndex() int32
func (*PodChange_Removed) GotenMessage ¶
func (*PodChange_Removed) GotenMessage()
func (*PodChange_Removed) GotenValidate ¶
func (obj *PodChange_Removed) GotenValidate() error
func (*PodChange_Removed) Marshal ¶
func (m *PodChange_Removed) Marshal() ([]byte, error)
func (*PodChange_Removed) MarshalJSON ¶
func (m *PodChange_Removed) MarshalJSON() ([]byte, error)
func (*PodChange_Removed) ProtoMessage ¶
func (*PodChange_Removed) ProtoMessage()
func (*PodChange_Removed) ProtoReflect ¶
func (m *PodChange_Removed) ProtoReflect() preflect.Message
func (*PodChange_Removed) Reset ¶
func (m *PodChange_Removed) Reset()
func (*PodChange_Removed) SetName ¶
func (m *PodChange_Removed) SetName(fv *Name)
func (*PodChange_Removed) SetViewIndex ¶
func (m *PodChange_Removed) SetViewIndex(fv int32)
func (*PodChange_Removed) String ¶
func (m *PodChange_Removed) String() string
func (*PodChange_Removed) Unmarshal ¶
func (m *PodChange_Removed) Unmarshal(b []byte) error
func (*PodChange_Removed) UnmarshalJSON ¶
func (m *PodChange_Removed) UnmarshalJSON(data []byte) error
type PodChange_Removed_ ¶
type PodChange_Removed_ struct { // Removed is returned when Pod is deleted or leaves Query view Removed *PodChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof" firestore:"removed"` }
type PodFieldPathBuilder ¶
type PodFieldPathBuilder struct{}
func NewPodFieldPathBuilder ¶
func NewPodFieldPathBuilder() PodFieldPathBuilder
func (PodFieldPathBuilder) DisplayName ¶
func (PodFieldPathBuilder) DisplayName() PodPathSelectorDisplayName
func (PodFieldPathBuilder) Distribution ¶ added in v0.12.44
func (PodFieldPathBuilder) Distribution() PodPathSelectorDistribution
func (PodFieldPathBuilder) Metadata ¶
func (PodFieldPathBuilder) Metadata() PodPathSelectorMetadata
func (PodFieldPathBuilder) Name ¶
func (PodFieldPathBuilder) Name() PodPathSelectorName
func (PodFieldPathBuilder) Spec ¶
func (PodFieldPathBuilder) Spec() PodPathSelectorSpec
func (PodFieldPathBuilder) Status ¶
func (PodFieldPathBuilder) Status() PodPathSelectorStatus
type PodList ¶
type PodList []*Pod
func (PodList) Append ¶
func (l PodList) Append(item gotenresource.Resource) gotenresource.ResourceList
func (PodList) AppendList ¶
func (l PodList) AppendList(list gotenresource.ResourceList) gotenresource.ResourceList
func (PodList) Slice ¶
func (l PodList) Slice(first, second int) gotenresource.ResourceList
type PodMap ¶
func (PodMap) Delete ¶
func (m PodMap) Delete(name gotenresource.Name)
func (PodMap) ForEach ¶
func (m PodMap) ForEach(cb func(gotenresource.Name, gotenresource.Resource) bool)
func (PodMap) Get ¶
func (m PodMap) Get(name gotenresource.Name) gotenresource.Resource
func (PodMap) Set ¶
func (m PodMap) Set(res gotenresource.Resource)
type PodMapPathSelectorMetadataAnnotations ¶
type PodMapPathSelectorMetadataAnnotations struct {
// contains filtered or unexported fields
}
func (PodMapPathSelectorMetadataAnnotations) FieldPath ¶
func (s PodMapPathSelectorMetadataAnnotations) FieldPath() *Pod_FieldSubPath
func (PodMapPathSelectorMetadataAnnotations) WithArrayOfValues ¶
func (s PodMapPathSelectorMetadataAnnotations) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodMapPathSelectorMetadataAnnotations) WithValue ¶
func (s PodMapPathSelectorMetadataAnnotations) WithValue(value string) *Pod_FieldSubPathValue
type PodMapPathSelectorMetadataLabels ¶
type PodMapPathSelectorMetadataLabels struct {
// contains filtered or unexported fields
}
func (PodMapPathSelectorMetadataLabels) FieldPath ¶
func (s PodMapPathSelectorMetadataLabels) FieldPath() *Pod_FieldSubPath
func (PodMapPathSelectorMetadataLabels) WithArrayOfValues ¶
func (s PodMapPathSelectorMetadataLabels) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodMapPathSelectorMetadataLabels) WithValue ¶
func (s PodMapPathSelectorMetadataLabels) WithValue(value string) *Pod_FieldSubPathValue
type PodMapPathSelectorMetadataShards ¶
type PodMapPathSelectorMetadataShards struct {
// contains filtered or unexported fields
}
func (PodMapPathSelectorMetadataShards) FieldPath ¶
func (s PodMapPathSelectorMetadataShards) FieldPath() *Pod_FieldSubPath
func (PodMapPathSelectorMetadataShards) WithArrayOfValues ¶
func (s PodMapPathSelectorMetadataShards) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
func (PodMapPathSelectorMetadataShards) WithValue ¶
func (s PodMapPathSelectorMetadataShards) WithValue(value int64) *Pod_FieldSubPathValue
type PodMapPathSelectorSpecContainersResourcesLimits ¶
type PodMapPathSelectorSpecContainersResourcesLimits struct {
// contains filtered or unexported fields
}
func (PodMapPathSelectorSpecContainersResourcesLimits) FieldPath ¶
func (s PodMapPathSelectorSpecContainersResourcesLimits) FieldPath() *Pod_FieldSubPath
func (PodMapPathSelectorSpecContainersResourcesLimits) WithArrayOfValues ¶
func (s PodMapPathSelectorSpecContainersResourcesLimits) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
func (PodMapPathSelectorSpecContainersResourcesLimits) WithValue ¶
func (s PodMapPathSelectorSpecContainersResourcesLimits) WithValue(value int64) *Pod_FieldSubPathValue
type PodMapPathSelectorSpecContainersResourcesRequests ¶
type PodMapPathSelectorSpecContainersResourcesRequests struct {
// contains filtered or unexported fields
}
func (PodMapPathSelectorSpecContainersResourcesRequests) FieldPath ¶
func (s PodMapPathSelectorSpecContainersResourcesRequests) FieldPath() *Pod_FieldSubPath
func (PodMapPathSelectorSpecContainersResourcesRequests) WithArrayOfValues ¶
func (s PodMapPathSelectorSpecContainersResourcesRequests) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
func (PodMapPathSelectorSpecContainersResourcesRequests) WithValue ¶
func (s PodMapPathSelectorSpecContainersResourcesRequests) WithValue(value int64) *Pod_FieldSubPathValue
type PodNameList ¶
type PodNameList []*Name
func (PodNameList) Append ¶
func (l PodNameList) Append(name gotenresource.Name) gotenresource.NameList
func (PodNameList) AppendList ¶
func (l PodNameList) AppendList(list gotenresource.NameList) gotenresource.NameList
func (PodNameList) At ¶
func (l PodNameList) At(idx int) gotenresource.Name
func (PodNameList) Length ¶
func (l PodNameList) Length() int
func (PodNameList) Set ¶
func (l PodNameList) Set(idx int, name gotenresource.Name)
func (PodNameList) Slice ¶
func (l PodNameList) Slice(first, second int) gotenresource.NameList
type PodParentNameList ¶
type PodParentNameList []*ParentName
func (PodParentNameList) Append ¶
func (l PodParentNameList) Append(name gotenresource.Name) gotenresource.ParentNameList
func (PodParentNameList) AppendList ¶
func (l PodParentNameList) AppendList(list gotenresource.ParentNameList) gotenresource.ParentNameList
func (PodParentNameList) At ¶
func (l PodParentNameList) At(idx int) gotenresource.Name
func (PodParentNameList) Length ¶
func (l PodParentNameList) Length() int
func (PodParentNameList) Set ¶
func (l PodParentNameList) Set(idx int, name gotenresource.Name)
func (PodParentNameList) Slice ¶
func (l PodParentNameList) Slice(first, second int) gotenresource.ParentNameList
type PodParentReferenceList ¶
type PodParentReferenceList []*ParentReference
func (PodParentReferenceList) Append ¶
func (l PodParentReferenceList) Append(ref gotenresource.Reference) gotenresource.ParentReferenceList
func (PodParentReferenceList) AppendList ¶
func (l PodParentReferenceList) AppendList(list gotenresource.ParentReferenceList) gotenresource.ParentReferenceList
func (PodParentReferenceList) At ¶
func (l PodParentReferenceList) At(idx int) gotenresource.Reference
func (PodParentReferenceList) Length ¶
func (l PodParentReferenceList) Length() int
func (PodParentReferenceList) Set ¶
func (l PodParentReferenceList) Set(idx int, ref gotenresource.Reference)
func (PodParentReferenceList) Slice ¶
func (l PodParentReferenceList) Slice(first, second int) gotenresource.ParentReferenceList
type PodPathSelectorDisplayName ¶
type PodPathSelectorDisplayName struct{}
func (PodPathSelectorDisplayName) FieldPath ¶
func (PodPathSelectorDisplayName) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorDisplayName) WithArrayOfValues ¶
func (s PodPathSelectorDisplayName) WithArrayOfValues(values []string) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorDisplayName) WithValue ¶
func (s PodPathSelectorDisplayName) WithValue(value string) *Pod_FieldTerminalPathValue
type PodPathSelectorDistribution ¶ added in v0.12.44
type PodPathSelectorDistribution struct{}
func (PodPathSelectorDistribution) FieldPath ¶ added in v0.12.44
func (PodPathSelectorDistribution) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorDistribution) WithArrayOfValues ¶ added in v0.12.44
func (s PodPathSelectorDistribution) WithArrayOfValues(values []*distribution.Reference) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorDistribution) WithValue ¶ added in v0.12.44
func (s PodPathSelectorDistribution) WithValue(value *distribution.Reference) *Pod_FieldTerminalPathValue
type PodPathSelectorMetadata ¶
type PodPathSelectorMetadata struct{}
func (PodPathSelectorMetadata) Annotations ¶
func (PodPathSelectorMetadata) Annotations() PodPathSelectorMetadataAnnotations
func (PodPathSelectorMetadata) CreateTime ¶
func (PodPathSelectorMetadata) CreateTime() PodPathSelectorMetadataCreateTime
func (PodPathSelectorMetadata) DeleteTime ¶ added in v0.8.0
func (PodPathSelectorMetadata) DeleteTime() PodPathSelectorMetadataDeleteTime
func (PodPathSelectorMetadata) FieldPath ¶
func (PodPathSelectorMetadata) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorMetadata) Generation ¶
func (PodPathSelectorMetadata) Generation() PodPathSelectorMetadataGeneration
func (PodPathSelectorMetadata) Labels ¶
func (PodPathSelectorMetadata) Labels() PodPathSelectorMetadataLabels
func (PodPathSelectorMetadata) Lifecycle ¶ added in v0.8.0
func (PodPathSelectorMetadata) Lifecycle() PodPathSelectorMetadataLifecycle
func (PodPathSelectorMetadata) OwnerReferences ¶
func (PodPathSelectorMetadata) OwnerReferences() PodPathSelectorMetadataOwnerReferences
func (PodPathSelectorMetadata) ResourceVersion ¶
func (PodPathSelectorMetadata) ResourceVersion() PodPathSelectorMetadataResourceVersion
func (PodPathSelectorMetadata) Shards ¶
func (PodPathSelectorMetadata) Shards() PodPathSelectorMetadataShards
func (PodPathSelectorMetadata) Syncing ¶
func (PodPathSelectorMetadata) Syncing() PodPathSelectorMetadataSyncing
func (PodPathSelectorMetadata) Tags ¶
func (PodPathSelectorMetadata) Tags() PodPathSelectorMetadataTags
func (PodPathSelectorMetadata) UpdateTime ¶
func (PodPathSelectorMetadata) UpdateTime() PodPathSelectorMetadataUpdateTime
func (PodPathSelectorMetadata) Uuid ¶
func (PodPathSelectorMetadata) Uuid() PodPathSelectorMetadataUuid
func (PodPathSelectorMetadata) WithArrayOfValues ¶
func (s PodPathSelectorMetadata) WithArrayOfValues(values []*ntt_meta.Meta) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorMetadata) WithSubArrayItemValue ¶
func (s PodPathSelectorMetadata) WithSubArrayItemValue(subPathArrayItemValue ntt_meta.Meta_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorMetadata) WithSubArrayOfValues ¶
func (s PodPathSelectorMetadata) WithSubArrayOfValues(subPathArrayOfValues ntt_meta.Meta_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadata) WithSubPath ¶
func (PodPathSelectorMetadata) WithSubPath(subPath ntt_meta.Meta_FieldPath) *Pod_FieldSubPath
func (PodPathSelectorMetadata) WithSubValue ¶
func (s PodPathSelectorMetadata) WithSubValue(subPathValue ntt_meta.Meta_FieldPathValue) *Pod_FieldSubPathValue
func (PodPathSelectorMetadata) WithValue ¶
func (s PodPathSelectorMetadata) WithValue(value *ntt_meta.Meta) *Pod_FieldTerminalPathValue
type PodPathSelectorMetadataAnnotations ¶
type PodPathSelectorMetadataAnnotations struct{}
func (PodPathSelectorMetadataAnnotations) FieldPath ¶
func (PodPathSelectorMetadataAnnotations) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataAnnotations) WithArrayOfValues ¶
func (s PodPathSelectorMetadataAnnotations) WithArrayOfValues(values []map[string]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataAnnotations) WithKey ¶
func (PodPathSelectorMetadataAnnotations) WithKey(key string) PodMapPathSelectorMetadataAnnotations
func (PodPathSelectorMetadataAnnotations) WithValue ¶
func (s PodPathSelectorMetadataAnnotations) WithValue(value map[string]string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataCreateTime ¶
type PodPathSelectorMetadataCreateTime struct{}
func (PodPathSelectorMetadataCreateTime) FieldPath ¶
func (PodPathSelectorMetadataCreateTime) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataCreateTime) WithArrayOfValues ¶
func (s PodPathSelectorMetadataCreateTime) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataCreateTime) WithValue ¶
func (s PodPathSelectorMetadataCreateTime) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorMetadataDeleteTime ¶ added in v0.8.0
type PodPathSelectorMetadataDeleteTime struct{}
func (PodPathSelectorMetadataDeleteTime) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataDeleteTime) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataDeleteTime) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataDeleteTime) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataDeleteTime) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataDeleteTime) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorMetadataGeneration ¶
type PodPathSelectorMetadataGeneration struct{}
func (PodPathSelectorMetadataGeneration) FieldPath ¶
func (PodPathSelectorMetadataGeneration) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataGeneration) WithArrayOfValues ¶
func (s PodPathSelectorMetadataGeneration) WithArrayOfValues(values []int64) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataGeneration) WithValue ¶
func (s PodPathSelectorMetadataGeneration) WithValue(value int64) *Pod_FieldSubPathValue
type PodPathSelectorMetadataLabels ¶
type PodPathSelectorMetadataLabels struct{}
func (PodPathSelectorMetadataLabels) FieldPath ¶
func (PodPathSelectorMetadataLabels) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataLabels) WithArrayOfValues ¶
func (s PodPathSelectorMetadataLabels) WithArrayOfValues(values []map[string]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataLabels) WithKey ¶
func (PodPathSelectorMetadataLabels) WithKey(key string) PodMapPathSelectorMetadataLabels
func (PodPathSelectorMetadataLabels) WithValue ¶
func (s PodPathSelectorMetadataLabels) WithValue(value map[string]string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataLifecycle ¶ added in v0.8.0
type PodPathSelectorMetadataLifecycle struct{}
func (PodPathSelectorMetadataLifecycle) BlockDeletion ¶ added in v0.8.0
func (PodPathSelectorMetadataLifecycle) BlockDeletion() PodPathSelectorMetadataLifecycleBlockDeletion
func (PodPathSelectorMetadataLifecycle) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataLifecycle) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataLifecycle) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycle) WithArrayOfValues(values []*ntt_meta.Lifecycle) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataLifecycle) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycle) WithValue(value *ntt_meta.Lifecycle) *Pod_FieldSubPathValue
type PodPathSelectorMetadataLifecycleBlockDeletion ¶ added in v0.8.0
type PodPathSelectorMetadataLifecycleBlockDeletion struct{}
func (PodPathSelectorMetadataLifecycleBlockDeletion) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataLifecycleBlockDeletion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataLifecycleBlockDeletion) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycleBlockDeletion) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorMetadataLifecycleState ¶ added in v0.8.0
type PodPathSelectorMetadataLifecycleState struct{}
func (PodPathSelectorMetadataLifecycleState) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataLifecycleState) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataLifecycleState) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycleState) WithArrayOfValues(values []ntt_meta.Lifecycle_State) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataLifecycleState) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataLifecycleState) WithValue(value ntt_meta.Lifecycle_State) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferences ¶
type PodPathSelectorMetadataOwnerReferences struct{}
func (PodPathSelectorMetadataOwnerReferences) BlockOwnerDeletion ¶
func (PodPathSelectorMetadataOwnerReferences) BlockOwnerDeletion() PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion
func (PodPathSelectorMetadataOwnerReferences) Controller ¶
func (PodPathSelectorMetadataOwnerReferences) FieldPath ¶
func (PodPathSelectorMetadataOwnerReferences) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferences) RequiresOwnerReference ¶ added in v0.8.0
func (PodPathSelectorMetadataOwnerReferences) RequiresOwnerReference() PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference
func (PodPathSelectorMetadataOwnerReferences) WithArrayOfValues ¶
func (s PodPathSelectorMetadataOwnerReferences) WithArrayOfValues(values [][]*ntt_meta.OwnerReference) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferences) WithItemValue ¶
func (s PodPathSelectorMetadataOwnerReferences) WithItemValue(value *ntt_meta.OwnerReference) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorMetadataOwnerReferences) WithValue ¶
func (s PodPathSelectorMetadataOwnerReferences) WithValue(value []*ntt_meta.OwnerReference) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion ¶
type PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion struct{}
func (PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath ¶
func (PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues ¶
func (s PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue ¶
func (s PodPathSelectorMetadataOwnerReferencesBlockOwnerDeletion) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesController ¶
type PodPathSelectorMetadataOwnerReferencesController struct{}
func (PodPathSelectorMetadataOwnerReferencesController) FieldPath ¶
func (PodPathSelectorMetadataOwnerReferencesController) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesController) WithArrayOfValues ¶
func (s PodPathSelectorMetadataOwnerReferencesController) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesController) WithValue ¶
func (s PodPathSelectorMetadataOwnerReferencesController) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesKind ¶
type PodPathSelectorMetadataOwnerReferencesKind struct{}
func (PodPathSelectorMetadataOwnerReferencesKind) FieldPath ¶
func (PodPathSelectorMetadataOwnerReferencesKind) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues ¶
func (s PodPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesKind) WithValue ¶
func (s PodPathSelectorMetadataOwnerReferencesKind) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesName ¶
type PodPathSelectorMetadataOwnerReferencesName struct{}
func (PodPathSelectorMetadataOwnerReferencesName) FieldPath ¶
func (PodPathSelectorMetadataOwnerReferencesName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesName) WithArrayOfValues ¶
func (s PodPathSelectorMetadataOwnerReferencesName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesName) WithValue ¶
func (s PodPathSelectorMetadataOwnerReferencesName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesRegion ¶ added in v0.8.0
type PodPathSelectorMetadataOwnerReferencesRegion struct{}
func (PodPathSelectorMetadataOwnerReferencesRegion) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataOwnerReferencesRegion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesRegion) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesRegion) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference ¶ added in v0.8.0
type PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}
func (PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorMetadataOwnerReferencesVersion ¶ added in v0.8.0
type PodPathSelectorMetadataOwnerReferencesVersion struct{}
func (PodPathSelectorMetadataOwnerReferencesVersion) FieldPath ¶ added in v0.8.0
func (PodPathSelectorMetadataOwnerReferencesVersion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataOwnerReferencesVersion) WithValue ¶ added in v0.8.0
func (s PodPathSelectorMetadataOwnerReferencesVersion) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataResourceVersion ¶
type PodPathSelectorMetadataResourceVersion struct{}
func (PodPathSelectorMetadataResourceVersion) FieldPath ¶
func (PodPathSelectorMetadataResourceVersion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataResourceVersion) WithArrayOfValues ¶
func (s PodPathSelectorMetadataResourceVersion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataResourceVersion) WithValue ¶
func (s PodPathSelectorMetadataResourceVersion) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataShards ¶
type PodPathSelectorMetadataShards struct{}
func (PodPathSelectorMetadataShards) FieldPath ¶
func (PodPathSelectorMetadataShards) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataShards) WithArrayOfValues ¶
func (s PodPathSelectorMetadataShards) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataShards) WithKey ¶
func (PodPathSelectorMetadataShards) WithKey(key string) PodMapPathSelectorMetadataShards
func (PodPathSelectorMetadataShards) WithValue ¶
func (s PodPathSelectorMetadataShards) WithValue(value map[string]int64) *Pod_FieldSubPathValue
type PodPathSelectorMetadataSyncing ¶
type PodPathSelectorMetadataSyncing struct{}
func (PodPathSelectorMetadataSyncing) FieldPath ¶
func (PodPathSelectorMetadataSyncing) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataSyncing) OwningRegion ¶
func (PodPathSelectorMetadataSyncing) OwningRegion() PodPathSelectorMetadataSyncingOwningRegion
func (PodPathSelectorMetadataSyncing) Regions ¶
func (PodPathSelectorMetadataSyncing) Regions() PodPathSelectorMetadataSyncingRegions
func (PodPathSelectorMetadataSyncing) WithArrayOfValues ¶
func (s PodPathSelectorMetadataSyncing) WithArrayOfValues(values []*ntt_meta.SyncingMeta) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataSyncing) WithValue ¶
func (s PodPathSelectorMetadataSyncing) WithValue(value *ntt_meta.SyncingMeta) *Pod_FieldSubPathValue
type PodPathSelectorMetadataSyncingOwningRegion ¶
type PodPathSelectorMetadataSyncingOwningRegion struct{}
func (PodPathSelectorMetadataSyncingOwningRegion) FieldPath ¶
func (PodPathSelectorMetadataSyncingOwningRegion) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues ¶
func (s PodPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataSyncingOwningRegion) WithValue ¶
func (s PodPathSelectorMetadataSyncingOwningRegion) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataSyncingRegions ¶
type PodPathSelectorMetadataSyncingRegions struct{}
func (PodPathSelectorMetadataSyncingRegions) FieldPath ¶
func (PodPathSelectorMetadataSyncingRegions) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataSyncingRegions) WithArrayOfValues ¶
func (s PodPathSelectorMetadataSyncingRegions) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataSyncingRegions) WithItemValue ¶
func (s PodPathSelectorMetadataSyncingRegions) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorMetadataSyncingRegions) WithValue ¶
func (s PodPathSelectorMetadataSyncingRegions) WithValue(value []string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataTags ¶
type PodPathSelectorMetadataTags struct{}
func (PodPathSelectorMetadataTags) FieldPath ¶
func (PodPathSelectorMetadataTags) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataTags) WithArrayOfValues ¶
func (s PodPathSelectorMetadataTags) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataTags) WithItemValue ¶
func (s PodPathSelectorMetadataTags) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorMetadataTags) WithValue ¶
func (s PodPathSelectorMetadataTags) WithValue(value []string) *Pod_FieldSubPathValue
type PodPathSelectorMetadataUpdateTime ¶
type PodPathSelectorMetadataUpdateTime struct{}
func (PodPathSelectorMetadataUpdateTime) FieldPath ¶
func (PodPathSelectorMetadataUpdateTime) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataUpdateTime) WithArrayOfValues ¶
func (s PodPathSelectorMetadataUpdateTime) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataUpdateTime) WithValue ¶
func (s PodPathSelectorMetadataUpdateTime) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorMetadataUuid ¶
type PodPathSelectorMetadataUuid struct{}
func (PodPathSelectorMetadataUuid) FieldPath ¶
func (PodPathSelectorMetadataUuid) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorMetadataUuid) WithArrayOfValues ¶
func (s PodPathSelectorMetadataUuid) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorMetadataUuid) WithValue ¶
func (s PodPathSelectorMetadataUuid) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorName ¶
type PodPathSelectorName struct{}
func (PodPathSelectorName) FieldPath ¶
func (PodPathSelectorName) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorName) WithArrayOfValues ¶
func (s PodPathSelectorName) WithArrayOfValues(values []*Name) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorName) WithValue ¶
func (s PodPathSelectorName) WithValue(value *Name) *Pod_FieldTerminalPathValue
type PodPathSelectorSpec ¶
type PodPathSelectorSpec struct{}
func (PodPathSelectorSpec) Compose ¶
func (PodPathSelectorSpec) Compose() PodPathSelectorSpecCompose
func (PodPathSelectorSpec) Containers ¶
func (PodPathSelectorSpec) Containers() PodPathSelectorSpecContainers
func (PodPathSelectorSpec) FieldPath ¶
func (PodPathSelectorSpec) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorSpec) HostNetwork ¶
func (PodPathSelectorSpec) HostNetwork() PodPathSelectorSpecHostNetwork
func (PodPathSelectorSpec) HostVolumeMounts ¶
func (PodPathSelectorSpec) HostVolumeMounts() PodPathSelectorSpecHostVolumeMounts
func (PodPathSelectorSpec) ImagePullSecrets ¶
func (PodPathSelectorSpec) ImagePullSecrets() PodPathSelectorSpecImagePullSecrets
func (PodPathSelectorSpec) Node ¶
func (PodPathSelectorSpec) Node() PodPathSelectorSpecNode
func (PodPathSelectorSpec) RestartPolicy ¶
func (PodPathSelectorSpec) RestartPolicy() PodPathSelectorSpecRestartPolicy
func (PodPathSelectorSpec) Volumes ¶
func (PodPathSelectorSpec) Volumes() PodPathSelectorSpecVolumes
func (PodPathSelectorSpec) WithArrayOfValues ¶
func (s PodPathSelectorSpec) WithArrayOfValues(values []*common.PodSpec) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorSpec) WithSubArrayItemValue ¶
func (s PodPathSelectorSpec) WithSubArrayItemValue(subPathArrayItemValue common.PodSpec_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpec) WithSubArrayOfValues ¶
func (s PodPathSelectorSpec) WithSubArrayOfValues(subPathArrayOfValues common.PodSpec_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpec) WithSubPath ¶
func (PodPathSelectorSpec) WithSubPath(subPath common.PodSpec_FieldPath) *Pod_FieldSubPath
func (PodPathSelectorSpec) WithSubValue ¶
func (s PodPathSelectorSpec) WithSubValue(subPathValue common.PodSpec_FieldPathValue) *Pod_FieldSubPathValue
func (PodPathSelectorSpec) WithValue ¶
func (s PodPathSelectorSpec) WithValue(value *common.PodSpec) *Pod_FieldTerminalPathValue
type PodPathSelectorSpecCompose ¶
type PodPathSelectorSpecCompose struct{}
func (PodPathSelectorSpecCompose) FieldPath ¶
func (PodPathSelectorSpecCompose) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecCompose) WithArrayOfValues ¶
func (s PodPathSelectorSpecCompose) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecCompose) WithValue ¶
func (s PodPathSelectorSpecCompose) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainers ¶
type PodPathSelectorSpecContainers struct{}
func (PodPathSelectorSpecContainers) Command ¶
func (PodPathSelectorSpecContainers) Command() PodPathSelectorSpecContainersCommand
func (PodPathSelectorSpecContainers) EnvFrom ¶
func (PodPathSelectorSpecContainers) EnvFrom() PodPathSelectorSpecContainersEnvFrom
func (PodPathSelectorSpecContainers) FieldPath ¶
func (PodPathSelectorSpecContainers) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainers) Image ¶
func (PodPathSelectorSpecContainers) Image() PodPathSelectorSpecContainersImage
func (PodPathSelectorSpecContainers) ImagePullPolicy ¶
func (PodPathSelectorSpecContainers) ImagePullPolicy() PodPathSelectorSpecContainersImagePullPolicy
func (PodPathSelectorSpecContainers) Resources ¶
func (PodPathSelectorSpecContainers) Resources() PodPathSelectorSpecContainersResources
func (PodPathSelectorSpecContainers) SecurityContext ¶
func (PodPathSelectorSpecContainers) SecurityContext() PodPathSelectorSpecContainersSecurityContext
func (PodPathSelectorSpecContainers) VolumeMounts ¶
func (PodPathSelectorSpecContainers) VolumeMounts() PodPathSelectorSpecContainersVolumeMounts
func (PodPathSelectorSpecContainers) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainers) WithArrayOfValues(values [][]*common.PodSpec_Container) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainers) WithItemValue ¶
func (s PodPathSelectorSpecContainers) WithItemValue(value *common.PodSpec_Container) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecContainers) WithValue ¶
func (s PodPathSelectorSpecContainers) WithValue(value []*common.PodSpec_Container) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersArgs ¶
type PodPathSelectorSpecContainersArgs struct{}
func (PodPathSelectorSpecContainersArgs) FieldPath ¶
func (PodPathSelectorSpecContainersArgs) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersArgs) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersArgs) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersArgs) WithItemValue ¶
func (s PodPathSelectorSpecContainersArgs) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecContainersArgs) WithValue ¶
func (s PodPathSelectorSpecContainersArgs) WithValue(value []string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersCommand ¶
type PodPathSelectorSpecContainersCommand struct{}
func (PodPathSelectorSpecContainersCommand) FieldPath ¶
func (PodPathSelectorSpecContainersCommand) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersCommand) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersCommand) WithArrayOfValues(values [][]string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersCommand) WithItemValue ¶
func (s PodPathSelectorSpecContainersCommand) WithItemValue(value string) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecContainersCommand) WithValue ¶
func (s PodPathSelectorSpecContainersCommand) WithValue(value []string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnv ¶
type PodPathSelectorSpecContainersEnv struct{}
func (PodPathSelectorSpecContainersEnv) FieldPath ¶
func (PodPathSelectorSpecContainersEnv) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnv) ValueFrom ¶
func (PodPathSelectorSpecContainersEnv) ValueFrom() PodPathSelectorSpecContainersEnvValueFrom
func (PodPathSelectorSpecContainersEnv) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnv) WithArrayOfValues(values [][]*common.EnvVar) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnv) WithItemValue ¶
func (s PodPathSelectorSpecContainersEnv) WithItemValue(value *common.EnvVar) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecContainersEnv) WithValue ¶
func (s PodPathSelectorSpecContainersEnv) WithValue(value []*common.EnvVar) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFrom ¶
type PodPathSelectorSpecContainersEnvFrom struct{}
func (PodPathSelectorSpecContainersEnvFrom) ConfigMapRef ¶
func (PodPathSelectorSpecContainersEnvFrom) ConfigMapRef() PodPathSelectorSpecContainersEnvFromConfigMapRef
func (PodPathSelectorSpecContainersEnvFrom) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFrom) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFrom) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFrom) WithArrayOfValues(values []*common.EnvFromSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFrom) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFrom) WithValue(value *common.EnvFromSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromConfigMapRef ¶
type PodPathSelectorSpecContainersEnvFromConfigMapRef struct{}
func (PodPathSelectorSpecContainersEnvFromConfigMapRef) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromConfigMapRef) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromConfigMapRef) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRef) WithArrayOfValues(values []*common.ConfigMapEnvSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromConfigMapRef) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRef) WithValue(value *common.ConfigMapEnvSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromConfigMapRefName ¶
type PodPathSelectorSpecContainersEnvFromConfigMapRefName struct{}
func (PodPathSelectorSpecContainersEnvFromConfigMapRefName) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromConfigMapRefName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRefName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromConfigMapRefOptional ¶
type PodPathSelectorSpecContainersEnvFromConfigMapRefOptional struct{}
func (PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromConfigMapRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromPrefix ¶
type PodPathSelectorSpecContainersEnvFromPrefix struct{}
func (PodPathSelectorSpecContainersEnvFromPrefix) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromPrefix) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromPrefix) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromPrefix) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromPrefix) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromPrefix) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromSecretRef ¶
type PodPathSelectorSpecContainersEnvFromSecretRef struct{}
func (PodPathSelectorSpecContainersEnvFromSecretRef) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromSecretRef) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromSecretRef) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRef) WithArrayOfValues(values []*common.SecretEnvSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromSecretRef) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRef) WithValue(value *common.SecretEnvSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromSecretRefName ¶
type PodPathSelectorSpecContainersEnvFromSecretRefName struct{}
func (PodPathSelectorSpecContainersEnvFromSecretRefName) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromSecretRefName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromSecretRefName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromSecretRefName) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRefName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvFromSecretRefOptional ¶
type PodPathSelectorSpecContainersEnvFromSecretRefOptional struct{}
func (PodPathSelectorSpecContainersEnvFromSecretRefOptional) FieldPath ¶
func (PodPathSelectorSpecContainersEnvFromSecretRefOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithValue ¶
func (s PodPathSelectorSpecContainersEnvFromSecretRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvName ¶
type PodPathSelectorSpecContainersEnvName struct{}
func (PodPathSelectorSpecContainersEnvName) FieldPath ¶
func (PodPathSelectorSpecContainersEnvName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvName) WithValue ¶
func (s PodPathSelectorSpecContainersEnvName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValue ¶
type PodPathSelectorSpecContainersEnvValue struct{}
func (PodPathSelectorSpecContainersEnvValue) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValue) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValue) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValue) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValue) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValue) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFrom ¶
type PodPathSelectorSpecContainersEnvValueFrom struct{}
func (PodPathSelectorSpecContainersEnvValueFrom) ConfigMapKeyRef ¶
func (PodPathSelectorSpecContainersEnvValueFrom) ConfigMapKeyRef() PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef
func (PodPathSelectorSpecContainersEnvValueFrom) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFrom) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFrom) SecretKeyRef ¶
func (PodPathSelectorSpecContainersEnvValueFrom) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFrom) WithArrayOfValues(values []*common.EnvVarSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFrom) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFrom) WithValue(value *common.EnvVarSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef ¶
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef struct{}
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithArrayOfValues(values []*common.ConfigMapKeySelector) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRef) WithValue(value *common.ConfigMapKeySelector) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey ¶
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey struct{}
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefKey) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName ¶
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName struct{}
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional ¶
type PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional struct{}
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromConfigMapKeyRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRef ¶
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRef struct{}
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithArrayOfValues(values []*common.SecretKeySelector) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRef) WithValue(value *common.SecretKeySelector) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey ¶
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey struct{}
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefKey) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName ¶
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName struct{}
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional ¶
type PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional struct{}
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) FieldPath ¶
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithValue ¶
func (s PodPathSelectorSpecContainersEnvValueFromSecretKeyRefOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersImage ¶
type PodPathSelectorSpecContainersImage struct{}
func (PodPathSelectorSpecContainersImage) FieldPath ¶
func (PodPathSelectorSpecContainersImage) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersImage) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersImage) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersImage) WithValue ¶
func (s PodPathSelectorSpecContainersImage) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersImagePullPolicy ¶
type PodPathSelectorSpecContainersImagePullPolicy struct{}
func (PodPathSelectorSpecContainersImagePullPolicy) FieldPath ¶
func (PodPathSelectorSpecContainersImagePullPolicy) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersImagePullPolicy) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersImagePullPolicy) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersImagePullPolicy) WithValue ¶
func (s PodPathSelectorSpecContainersImagePullPolicy) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersName ¶
type PodPathSelectorSpecContainersName struct{}
func (PodPathSelectorSpecContainersName) FieldPath ¶
func (PodPathSelectorSpecContainersName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersName) WithValue ¶
func (s PodPathSelectorSpecContainersName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersResources ¶
type PodPathSelectorSpecContainersResources struct{}
func (PodPathSelectorSpecContainersResources) FieldPath ¶
func (PodPathSelectorSpecContainersResources) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersResources) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersResources) WithArrayOfValues(values []*common.PodSpec_Container_ResourceRequirements) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersResources) WithValue ¶
func (s PodPathSelectorSpecContainersResources) WithValue(value *common.PodSpec_Container_ResourceRequirements) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersResourcesLimits ¶
type PodPathSelectorSpecContainersResourcesLimits struct{}
func (PodPathSelectorSpecContainersResourcesLimits) FieldPath ¶
func (PodPathSelectorSpecContainersResourcesLimits) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersResourcesLimits) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersResourcesLimits) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersResourcesLimits) WithValue ¶
func (s PodPathSelectorSpecContainersResourcesLimits) WithValue(value map[string]int64) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersResourcesRequests ¶
type PodPathSelectorSpecContainersResourcesRequests struct{}
func (PodPathSelectorSpecContainersResourcesRequests) FieldPath ¶
func (PodPathSelectorSpecContainersResourcesRequests) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersResourcesRequests) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersResourcesRequests) WithArrayOfValues(values []map[string]int64) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersResourcesRequests) WithValue ¶
func (s PodPathSelectorSpecContainersResourcesRequests) WithValue(value map[string]int64) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersSecurityContext ¶
type PodPathSelectorSpecContainersSecurityContext struct{}
func (PodPathSelectorSpecContainersSecurityContext) FieldPath ¶
func (PodPathSelectorSpecContainersSecurityContext) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersSecurityContext) Privileged ¶
func (PodPathSelectorSpecContainersSecurityContext) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersSecurityContext) WithArrayOfValues(values []*common.SecurityContext) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersSecurityContext) WithValue ¶
func (s PodPathSelectorSpecContainersSecurityContext) WithValue(value *common.SecurityContext) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersSecurityContextPrivileged ¶
type PodPathSelectorSpecContainersSecurityContextPrivileged struct{}
func (PodPathSelectorSpecContainersSecurityContextPrivileged) FieldPath ¶
func (PodPathSelectorSpecContainersSecurityContextPrivileged) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersSecurityContextPrivileged) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersSecurityContextPrivileged) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersSecurityContextPrivileged) WithValue ¶
func (s PodPathSelectorSpecContainersSecurityContextPrivileged) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersVolumeMounts ¶
type PodPathSelectorSpecContainersVolumeMounts struct{}
func (PodPathSelectorSpecContainersVolumeMounts) FieldPath ¶
func (PodPathSelectorSpecContainersVolumeMounts) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersVolumeMounts) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersVolumeMounts) WithArrayOfValues(values [][]*common.VolumeMount) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersVolumeMounts) WithItemValue ¶
func (s PodPathSelectorSpecContainersVolumeMounts) WithItemValue(value *common.VolumeMount) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecContainersVolumeMounts) WithValue ¶
func (s PodPathSelectorSpecContainersVolumeMounts) WithValue(value []*common.VolumeMount) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersVolumeMountsMountPath ¶
type PodPathSelectorSpecContainersVolumeMountsMountPath struct{}
func (PodPathSelectorSpecContainersVolumeMountsMountPath) FieldPath ¶
func (PodPathSelectorSpecContainersVolumeMountsMountPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersVolumeMountsMountPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersVolumeMountsMountPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersVolumeMountsMountPath) WithValue ¶
func (s PodPathSelectorSpecContainersVolumeMountsMountPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersVolumeMountsName ¶
type PodPathSelectorSpecContainersVolumeMountsName struct{}
func (PodPathSelectorSpecContainersVolumeMountsName) FieldPath ¶
func (PodPathSelectorSpecContainersVolumeMountsName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersVolumeMountsName) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersVolumeMountsName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersVolumeMountsName) WithValue ¶
func (s PodPathSelectorSpecContainersVolumeMountsName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersVolumeMountsReadOnly ¶
type PodPathSelectorSpecContainersVolumeMountsReadOnly struct{}
func (PodPathSelectorSpecContainersVolumeMountsReadOnly) FieldPath ¶
func (PodPathSelectorSpecContainersVolumeMountsReadOnly) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersVolumeMountsReadOnly) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersVolumeMountsReadOnly) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersVolumeMountsReadOnly) WithValue ¶
func (s PodPathSelectorSpecContainersVolumeMountsReadOnly) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecContainersVolumeMountsSubPath ¶
type PodPathSelectorSpecContainersVolumeMountsSubPath struct{}
func (PodPathSelectorSpecContainersVolumeMountsSubPath) FieldPath ¶
func (PodPathSelectorSpecContainersVolumeMountsSubPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecContainersVolumeMountsSubPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecContainersVolumeMountsSubPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecContainersVolumeMountsSubPath) WithValue ¶
func (s PodPathSelectorSpecContainersVolumeMountsSubPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostNetwork ¶
type PodPathSelectorSpecHostNetwork struct{}
func (PodPathSelectorSpecHostNetwork) FieldPath ¶
func (PodPathSelectorSpecHostNetwork) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostNetwork) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostNetwork) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostNetwork) WithValue ¶
func (s PodPathSelectorSpecHostNetwork) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostVolumeMounts ¶
type PodPathSelectorSpecHostVolumeMounts struct{}
func (PodPathSelectorSpecHostVolumeMounts) FieldPath ¶
func (PodPathSelectorSpecHostVolumeMounts) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostVolumeMounts) MountPath ¶
func (PodPathSelectorSpecHostVolumeMounts) MountPath() PodPathSelectorSpecHostVolumeMountsMountPath
func (PodPathSelectorSpecHostVolumeMounts) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostVolumeMounts) WithArrayOfValues(values [][]*common.VolumeMount) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostVolumeMounts) WithItemValue ¶
func (s PodPathSelectorSpecHostVolumeMounts) WithItemValue(value *common.VolumeMount) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecHostVolumeMounts) WithValue ¶
func (s PodPathSelectorSpecHostVolumeMounts) WithValue(value []*common.VolumeMount) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostVolumeMountsMountPath ¶
type PodPathSelectorSpecHostVolumeMountsMountPath struct{}
func (PodPathSelectorSpecHostVolumeMountsMountPath) FieldPath ¶
func (PodPathSelectorSpecHostVolumeMountsMountPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostVolumeMountsMountPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostVolumeMountsMountPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostVolumeMountsMountPath) WithValue ¶
func (s PodPathSelectorSpecHostVolumeMountsMountPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostVolumeMountsName ¶
type PodPathSelectorSpecHostVolumeMountsName struct{}
func (PodPathSelectorSpecHostVolumeMountsName) FieldPath ¶
func (PodPathSelectorSpecHostVolumeMountsName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostVolumeMountsName) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostVolumeMountsName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostVolumeMountsName) WithValue ¶
func (s PodPathSelectorSpecHostVolumeMountsName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostVolumeMountsReadOnly ¶
type PodPathSelectorSpecHostVolumeMountsReadOnly struct{}
func (PodPathSelectorSpecHostVolumeMountsReadOnly) FieldPath ¶
func (PodPathSelectorSpecHostVolumeMountsReadOnly) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostVolumeMountsReadOnly) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostVolumeMountsReadOnly) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostVolumeMountsReadOnly) WithValue ¶
func (s PodPathSelectorSpecHostVolumeMountsReadOnly) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecHostVolumeMountsSubPath ¶
type PodPathSelectorSpecHostVolumeMountsSubPath struct{}
func (PodPathSelectorSpecHostVolumeMountsSubPath) FieldPath ¶
func (PodPathSelectorSpecHostVolumeMountsSubPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecHostVolumeMountsSubPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecHostVolumeMountsSubPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecHostVolumeMountsSubPath) WithValue ¶
func (s PodPathSelectorSpecHostVolumeMountsSubPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecImagePullSecrets ¶
type PodPathSelectorSpecImagePullSecrets struct{}
func (PodPathSelectorSpecImagePullSecrets) FieldPath ¶
func (PodPathSelectorSpecImagePullSecrets) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecImagePullSecrets) WithArrayOfValues ¶
func (s PodPathSelectorSpecImagePullSecrets) WithArrayOfValues(values [][]*common.LocalObjectReferenceSecret) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecImagePullSecrets) WithItemValue ¶
func (s PodPathSelectorSpecImagePullSecrets) WithItemValue(value *common.LocalObjectReferenceSecret) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecImagePullSecrets) WithValue ¶
func (s PodPathSelectorSpecImagePullSecrets) WithValue(value []*common.LocalObjectReferenceSecret) *Pod_FieldSubPathValue
type PodPathSelectorSpecImagePullSecretsName ¶
type PodPathSelectorSpecImagePullSecretsName struct{}
func (PodPathSelectorSpecImagePullSecretsName) FieldPath ¶
func (PodPathSelectorSpecImagePullSecretsName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecImagePullSecretsName) WithArrayOfValues ¶
func (s PodPathSelectorSpecImagePullSecretsName) WithArrayOfValues(values []*secrets_secret.Reference) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecImagePullSecretsName) WithValue ¶
func (s PodPathSelectorSpecImagePullSecretsName) WithValue(value *secrets_secret.Reference) *Pod_FieldSubPathValue
type PodPathSelectorSpecNode ¶
type PodPathSelectorSpecNode struct{}
func (PodPathSelectorSpecNode) FieldPath ¶
func (PodPathSelectorSpecNode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecNode) WithArrayOfValues ¶
func (s PodPathSelectorSpecNode) WithArrayOfValues(values []*devices_device.Reference) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecNode) WithValue ¶
func (s PodPathSelectorSpecNode) WithValue(value *devices_device.Reference) *Pod_FieldSubPathValue
type PodPathSelectorSpecRestartPolicy ¶
type PodPathSelectorSpecRestartPolicy struct{}
func (PodPathSelectorSpecRestartPolicy) FieldPath ¶
func (PodPathSelectorSpecRestartPolicy) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecRestartPolicy) WithArrayOfValues ¶
func (s PodPathSelectorSpecRestartPolicy) WithArrayOfValues(values []common.PodSpec_RestartPolicy) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecRestartPolicy) WithValue ¶
func (s PodPathSelectorSpecRestartPolicy) WithValue(value common.PodSpec_RestartPolicy) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumes ¶
type PodPathSelectorSpecVolumes struct{}
func (PodPathSelectorSpecVolumes) ConfigMap ¶
func (PodPathSelectorSpecVolumes) ConfigMap() PodPathSelectorSpecVolumesConfigMap
func (PodPathSelectorSpecVolumes) FieldPath ¶
func (PodPathSelectorSpecVolumes) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumes) HostPath ¶
func (PodPathSelectorSpecVolumes) HostPath() PodPathSelectorSpecVolumesHostPath
func (PodPathSelectorSpecVolumes) Name ¶
func (PodPathSelectorSpecVolumes) Name() PodPathSelectorSpecVolumesName
func (PodPathSelectorSpecVolumes) Secret ¶
func (PodPathSelectorSpecVolumes) Secret() PodPathSelectorSpecVolumesSecret
func (PodPathSelectorSpecVolumes) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumes) WithArrayOfValues(values [][]*common.Volume) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumes) WithItemValue ¶
func (s PodPathSelectorSpecVolumes) WithItemValue(value *common.Volume) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecVolumes) WithValue ¶
func (s PodPathSelectorSpecVolumes) WithValue(value []*common.Volume) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMap ¶
type PodPathSelectorSpecVolumesConfigMap struct{}
func (PodPathSelectorSpecVolumesConfigMap) DefaultMode ¶
func (PodPathSelectorSpecVolumesConfigMap) DefaultMode() PodPathSelectorSpecVolumesConfigMapDefaultMode
func (PodPathSelectorSpecVolumesConfigMap) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMap) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMap) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMap) WithArrayOfValues(values []*common.ConfigMapVolumeSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMap) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMap) WithValue(value *common.ConfigMapVolumeSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapDefaultMode ¶
type PodPathSelectorSpecVolumesConfigMapDefaultMode struct{}
func (PodPathSelectorSpecVolumesConfigMapDefaultMode) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapDefaultMode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapDefaultMode) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapDefaultMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapDefaultMode) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapDefaultMode) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapItems ¶
type PodPathSelectorSpecVolumesConfigMapItems struct{}
func (PodPathSelectorSpecVolumesConfigMapItems) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapItems) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapItems) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapItems) WithArrayOfValues(values [][]*common.KeyToPath) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapItems) WithItemValue ¶
func (s PodPathSelectorSpecVolumesConfigMapItems) WithItemValue(value *common.KeyToPath) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecVolumesConfigMapItems) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapItems) WithValue(value []*common.KeyToPath) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapItemsKey ¶
type PodPathSelectorSpecVolumesConfigMapItemsKey struct{}
func (PodPathSelectorSpecVolumesConfigMapItemsKey) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapItemsKey) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapItemsKey) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapItemsKey) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsKey) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapItemsMode ¶
type PodPathSelectorSpecVolumesConfigMapItemsMode struct{}
func (PodPathSelectorSpecVolumesConfigMapItemsMode) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapItemsMode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapItemsMode) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapItemsMode) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsMode) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapItemsPath ¶
type PodPathSelectorSpecVolumesConfigMapItemsPath struct{}
func (PodPathSelectorSpecVolumesConfigMapItemsPath) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapItemsPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapItemsPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapItemsPath) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapItemsPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapName ¶
type PodPathSelectorSpecVolumesConfigMapName struct{}
func (PodPathSelectorSpecVolumesConfigMapName) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapName) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapName) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesConfigMapOptional ¶
type PodPathSelectorSpecVolumesConfigMapOptional struct{}
func (PodPathSelectorSpecVolumesConfigMapOptional) FieldPath ¶
func (PodPathSelectorSpecVolumesConfigMapOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesConfigMapOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesConfigMapOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesConfigMapOptional) WithValue ¶
func (s PodPathSelectorSpecVolumesConfigMapOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesHostPath ¶
type PodPathSelectorSpecVolumesHostPath struct{}
func (PodPathSelectorSpecVolumesHostPath) FieldPath ¶
func (PodPathSelectorSpecVolumesHostPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesHostPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesHostPath) WithArrayOfValues(values []*common.HostPathVolumeSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesHostPath) WithValue ¶
func (s PodPathSelectorSpecVolumesHostPath) WithValue(value *common.HostPathVolumeSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesHostPathPath ¶
type PodPathSelectorSpecVolumesHostPathPath struct{}
func (PodPathSelectorSpecVolumesHostPathPath) FieldPath ¶
func (PodPathSelectorSpecVolumesHostPathPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesHostPathPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesHostPathPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesHostPathPath) WithValue ¶
func (s PodPathSelectorSpecVolumesHostPathPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesHostPathType ¶
type PodPathSelectorSpecVolumesHostPathType struct{}
func (PodPathSelectorSpecVolumesHostPathType) FieldPath ¶
func (PodPathSelectorSpecVolumesHostPathType) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesHostPathType) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesHostPathType) WithArrayOfValues(values []common.HostPathVolumeSource_Type) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesHostPathType) WithValue ¶
func (s PodPathSelectorSpecVolumesHostPathType) WithValue(value common.HostPathVolumeSource_Type) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesName ¶
type PodPathSelectorSpecVolumesName struct{}
func (PodPathSelectorSpecVolumesName) FieldPath ¶
func (PodPathSelectorSpecVolumesName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesName) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesName) WithValue ¶
func (s PodPathSelectorSpecVolumesName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecret ¶
type PodPathSelectorSpecVolumesSecret struct{}
func (PodPathSelectorSpecVolumesSecret) DefaultMode ¶
func (PodPathSelectorSpecVolumesSecret) DefaultMode() PodPathSelectorSpecVolumesSecretDefaultMode
func (PodPathSelectorSpecVolumesSecret) FieldPath ¶
func (PodPathSelectorSpecVolumesSecret) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecret) Optional ¶
func (PodPathSelectorSpecVolumesSecret) Optional() PodPathSelectorSpecVolumesSecretOptional
func (PodPathSelectorSpecVolumesSecret) SecretName ¶
func (PodPathSelectorSpecVolumesSecret) SecretName() PodPathSelectorSpecVolumesSecretSecretName
func (PodPathSelectorSpecVolumesSecret) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecret) WithArrayOfValues(values []*common.SecretVolumeSource) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecret) WithValue ¶
func (s PodPathSelectorSpecVolumesSecret) WithValue(value *common.SecretVolumeSource) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretDefaultMode ¶
type PodPathSelectorSpecVolumesSecretDefaultMode struct{}
func (PodPathSelectorSpecVolumesSecretDefaultMode) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretDefaultMode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretDefaultMode) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretDefaultMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretDefaultMode) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretDefaultMode) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretItems ¶
type PodPathSelectorSpecVolumesSecretItems struct{}
func (PodPathSelectorSpecVolumesSecretItems) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretItems) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretItems) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretItems) WithArrayOfValues(values [][]*common.KeyToPath) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretItems) WithItemValue ¶
func (s PodPathSelectorSpecVolumesSecretItems) WithItemValue(value *common.KeyToPath) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorSpecVolumesSecretItems) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretItems) WithValue(value []*common.KeyToPath) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretItemsKey ¶
type PodPathSelectorSpecVolumesSecretItemsKey struct{}
func (PodPathSelectorSpecVolumesSecretItemsKey) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretItemsKey) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretItemsKey) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretItemsKey) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretItemsKey) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretItemsKey) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretItemsMode ¶
type PodPathSelectorSpecVolumesSecretItemsMode struct{}
func (PodPathSelectorSpecVolumesSecretItemsMode) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretItemsMode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretItemsMode) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretItemsMode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretItemsMode) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretItemsMode) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretItemsPath ¶
type PodPathSelectorSpecVolumesSecretItemsPath struct{}
func (PodPathSelectorSpecVolumesSecretItemsPath) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretItemsPath) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretItemsPath) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretItemsPath) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretItemsPath) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretItemsPath) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretOptional ¶
type PodPathSelectorSpecVolumesSecretOptional struct{}
func (PodPathSelectorSpecVolumesSecretOptional) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretOptional) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretOptional) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretOptional) WithArrayOfValues(values []bool) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretOptional) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretOptional) WithValue(value bool) *Pod_FieldSubPathValue
type PodPathSelectorSpecVolumesSecretSecretName ¶
type PodPathSelectorSpecVolumesSecretSecretName struct{}
func (PodPathSelectorSpecVolumesSecretSecretName) FieldPath ¶
func (PodPathSelectorSpecVolumesSecretSecretName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorSpecVolumesSecretSecretName) WithArrayOfValues ¶
func (s PodPathSelectorSpecVolumesSecretSecretName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorSpecVolumesSecretSecretName) WithValue ¶
func (s PodPathSelectorSpecVolumesSecretSecretName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatus ¶
type PodPathSelectorStatus struct{}
func (PodPathSelectorStatus) ContainerStatuses ¶
func (PodPathSelectorStatus) ContainerStatuses() PodPathSelectorStatusContainerStatuses
func (PodPathSelectorStatus) Error ¶ added in v0.12.69
func (PodPathSelectorStatus) Error() PodPathSelectorStatusError
func (PodPathSelectorStatus) FieldPath ¶
func (PodPathSelectorStatus) FieldPath() *Pod_FieldTerminalPath
func (PodPathSelectorStatus) Phase ¶
func (PodPathSelectorStatus) Phase() PodPathSelectorStatusPhase
func (PodPathSelectorStatus) WithArrayOfValues ¶
func (s PodPathSelectorStatus) WithArrayOfValues(values []*Pod_Status) *Pod_FieldTerminalPathArrayOfValues
func (PodPathSelectorStatus) WithSubArrayItemValue ¶
func (s PodPathSelectorStatus) WithSubArrayItemValue(subPathArrayItemValue PodStatus_FieldPathArrayItemValue) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorStatus) WithSubArrayOfValues ¶
func (s PodPathSelectorStatus) WithSubArrayOfValues(subPathArrayOfValues PodStatus_FieldPathArrayOfValues) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatus) WithSubPath ¶
func (PodPathSelectorStatus) WithSubPath(subPath PodStatus_FieldPath) *Pod_FieldSubPath
func (PodPathSelectorStatus) WithSubValue ¶
func (s PodPathSelectorStatus) WithSubValue(subPathValue PodStatus_FieldPathValue) *Pod_FieldSubPathValue
func (PodPathSelectorStatus) WithValue ¶
func (s PodPathSelectorStatus) WithValue(value *Pod_Status) *Pod_FieldTerminalPathValue
type PodPathSelectorStatusContainerStatuses ¶
type PodPathSelectorStatusContainerStatuses struct{}
func (PodPathSelectorStatusContainerStatuses) FieldPath ¶
func (PodPathSelectorStatusContainerStatuses) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatuses) Terminated ¶
func (PodPathSelectorStatusContainerStatuses) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatuses) WithArrayOfValues(values [][]*Pod_Status_Container) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatuses) WithItemValue ¶
func (s PodPathSelectorStatusContainerStatuses) WithItemValue(value *Pod_Status_Container) *Pod_FieldSubPathArrayItemValue
func (PodPathSelectorStatusContainerStatuses) WithValue ¶
func (s PodPathSelectorStatusContainerStatuses) WithValue(value []*Pod_Status_Container) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesName ¶
type PodPathSelectorStatusContainerStatusesName struct{}
func (PodPathSelectorStatusContainerStatusesName) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesName) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesName) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesName) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesName) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesName) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesRunning ¶
type PodPathSelectorStatusContainerStatusesRunning struct{}
func (PodPathSelectorStatusContainerStatusesRunning) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesRunning) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesRunning) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesRunning) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesRunning) WithValue(value *Pod_Status_Container_StateRunning) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesRunningStartedAt ¶
type PodPathSelectorStatusContainerStatusesRunningStartedAt struct{}
func (PodPathSelectorStatusContainerStatusesRunningStartedAt) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesRunningStartedAt) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesRunningStartedAt) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesRunningStartedAt) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesRunningStartedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesState ¶
type PodPathSelectorStatusContainerStatusesState struct{}
func (PodPathSelectorStatusContainerStatusesState) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesState) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesState) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesState) WithArrayOfValues(values []Pod_Status_Container_State) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesState) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesState) WithValue(value Pod_Status_Container_State) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminated ¶
type PodPathSelectorStatusContainerStatusesTerminated struct{}
func (PodPathSelectorStatusContainerStatusesTerminated) ContainerId ¶
func (PodPathSelectorStatusContainerStatusesTerminated) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminated) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminated) FinishedAt ¶
func (PodPathSelectorStatusContainerStatusesTerminated) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminated) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedContainerId ¶
type PodPathSelectorStatusContainerStatusesTerminatedContainerId struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedContainerId) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedContainerId) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedContainerId) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedExitCode ¶
type PodPathSelectorStatusContainerStatusesTerminatedExitCode struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedExitCode) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedExitCode) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedExitCode) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedFinishedAt ¶
type PodPathSelectorStatusContainerStatusesTerminatedFinishedAt struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedMessage ¶
type PodPathSelectorStatusContainerStatusesTerminatedMessage struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedMessage) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedMessage) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedMessage) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedMessage) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedMessage) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedMessage) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedReason ¶
type PodPathSelectorStatusContainerStatusesTerminatedReason struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedReason) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedReason) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedReason) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedReason) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedReason) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedReason) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedSignal ¶
type PodPathSelectorStatusContainerStatusesTerminatedSignal struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedSignal) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedSignal) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedSignal) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedSignal) WithArrayOfValues(values []int32) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedSignal) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedSignal) WithValue(value int32) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesTerminatedStartedAt ¶
type PodPathSelectorStatusContainerStatusesTerminatedStartedAt struct{}
func (PodPathSelectorStatusContainerStatusesTerminatedStartedAt) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesTerminatedStartedAt) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesWaiting ¶
type PodPathSelectorStatusContainerStatusesWaiting struct{}
func (PodPathSelectorStatusContainerStatusesWaiting) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesWaiting) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesWaiting) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesWaiting) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesWaitingMessage ¶
type PodPathSelectorStatusContainerStatusesWaitingMessage struct{}
func (PodPathSelectorStatusContainerStatusesWaitingMessage) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesWaitingMessage) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesWaitingMessage) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesWaitingMessage) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesWaitingMessage) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesWaitingMessage) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusContainerStatusesWaitingReason ¶
type PodPathSelectorStatusContainerStatusesWaitingReason struct{}
func (PodPathSelectorStatusContainerStatusesWaitingReason) FieldPath ¶
func (PodPathSelectorStatusContainerStatusesWaitingReason) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusContainerStatusesWaitingReason) WithArrayOfValues ¶
func (s PodPathSelectorStatusContainerStatusesWaitingReason) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusContainerStatusesWaitingReason) WithValue ¶
func (s PodPathSelectorStatusContainerStatusesWaitingReason) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusError ¶ added in v0.12.69
type PodPathSelectorStatusError struct{}
func (PodPathSelectorStatusError) FieldPath ¶ added in v0.12.69
func (PodPathSelectorStatusError) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusError) WithArrayOfValues ¶ added in v0.12.69
func (s PodPathSelectorStatusError) WithArrayOfValues(values []string) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusError) WithValue ¶ added in v0.12.69
func (s PodPathSelectorStatusError) WithValue(value string) *Pod_FieldSubPathValue
type PodPathSelectorStatusPhase ¶
type PodPathSelectorStatusPhase struct{}
func (PodPathSelectorStatusPhase) FieldPath ¶
func (PodPathSelectorStatusPhase) FieldPath() *Pod_FieldSubPath
func (PodPathSelectorStatusPhase) WithArrayOfValues ¶
func (s PodPathSelectorStatusPhase) WithArrayOfValues(values []Pod_Status_Phase) *Pod_FieldSubPathArrayOfValues
func (PodPathSelectorStatusPhase) WithValue ¶
func (s PodPathSelectorStatusPhase) WithValue(value Pod_Status_Phase) *Pod_FieldSubPathValue
type PodReferenceList ¶
type PodReferenceList []*Reference
func (PodReferenceList) Append ¶
func (l PodReferenceList) Append(ref gotenresource.Reference) gotenresource.ReferenceList
func (PodReferenceList) AppendList ¶
func (l PodReferenceList) AppendList(list gotenresource.ReferenceList) gotenresource.ReferenceList
func (PodReferenceList) At ¶
func (l PodReferenceList) At(idx int) gotenresource.Reference
func (PodReferenceList) Length ¶
func (l PodReferenceList) Length() int
func (PodReferenceList) Set ¶
func (l PodReferenceList) Set(idx int, ref gotenresource.Reference)
func (PodReferenceList) Slice ¶
func (l PodReferenceList) Slice(first, second int) gotenresource.ReferenceList
type PodStatusContainerFieldPathBuilder ¶
type PodStatusContainerFieldPathBuilder struct{}
func NewPodStatusContainerFieldPathBuilder ¶
func NewPodStatusContainerFieldPathBuilder() PodStatusContainerFieldPathBuilder
func (PodStatusContainerFieldPathBuilder) Terminated ¶
func (PodStatusContainerFieldPathBuilder) Terminated() Pod_Status_ContainerPathSelectorTerminated
type PodStatusContainerStateRunningFieldPathBuilder ¶
type PodStatusContainerStateRunningFieldPathBuilder struct{}
func NewPodStatusContainerStateRunningFieldPathBuilder ¶
func NewPodStatusContainerStateRunningFieldPathBuilder() PodStatusContainerStateRunningFieldPathBuilder
type PodStatusContainerStateRunning_FieldPath ¶
type PodStatusContainerStateRunning_FieldPath interface { gotenobject.FieldPath Selector() PodStatusContainerStateRunning_FieldPathSelector Get(source *Pod_Status_Container_StateRunning) []interface{} GetSingle(source *Pod_Status_Container_StateRunning) (interface{}, bool) ClearValue(item *Pod_Status_Container_StateRunning) // Those methods build corresponding PodStatusContainerStateRunning_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PodStatusContainerStateRunning_FieldPathValue WithIArrayOfValues(values interface{}) PodStatusContainerStateRunning_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PodStatusContainerStateRunning_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPodStatusContainerStateRunning_FieldPath ¶
func BuildPodStatusContainerStateRunning_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateRunning_FieldPath, error)
func MustParsePodStatusContainerStateRunning_FieldPath ¶
func MustParsePodStatusContainerStateRunning_FieldPath(rawField string) PodStatusContainerStateRunning_FieldPath
func ParsePodStatusContainerStateRunning_FieldPath ¶
func ParsePodStatusContainerStateRunning_FieldPath(rawField string) (PodStatusContainerStateRunning_FieldPath, error)
type PodStatusContainerStateRunning_FieldPathArrayItemValue ¶
type PodStatusContainerStateRunning_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PodStatusContainerStateRunning_FieldPath ContainsValue(*Pod_Status_Container_StateRunning) bool }
PodStatusContainerStateRunning_FieldPathArrayItemValue allows storing single item in Path-specific values for StateRunning according to their type Present only for array (repeated) types.
func MustParsePodStatusContainerStateRunning_FieldPathArrayItemValue ¶
func MustParsePodStatusContainerStateRunning_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateRunning_FieldPathArrayItemValue
func ParsePodStatusContainerStateRunning_FieldPathArrayItemValue ¶
func ParsePodStatusContainerStateRunning_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateRunning_FieldPathArrayItemValue, error)
ParsePodStatusContainerStateRunning_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PodStatusContainerStateRunning_FieldPathArrayOfValues ¶
type PodStatusContainerStateRunning_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PodStatusContainerStateRunning_FieldPath }
PodStatusContainerStateRunning_FieldPathArrayOfValues allows storing slice of values for StateRunning fields according to their type
func MustParsePodStatusContainerStateRunning_FieldPathArrayOfValues ¶
func MustParsePodStatusContainerStateRunning_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateRunning_FieldPathArrayOfValues
func ParsePodStatusContainerStateRunning_FieldPathArrayOfValues ¶
func ParsePodStatusContainerStateRunning_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateRunning_FieldPathArrayOfValues, error)
type PodStatusContainerStateRunning_FieldPathSelector ¶
type PodStatusContainerStateRunning_FieldPathSelector int32
const (
PodStatusContainerStateRunning_FieldPathSelectorStartedAt PodStatusContainerStateRunning_FieldPathSelector = 0
)
func (PodStatusContainerStateRunning_FieldPathSelector) String ¶
func (s PodStatusContainerStateRunning_FieldPathSelector) String() string
type PodStatusContainerStateRunning_FieldPathValue ¶
type PodStatusContainerStateRunning_FieldPathValue interface { PodStatusContainerStateRunning_FieldPath gotenobject.FieldPathValue SetTo(target **Pod_Status_Container_StateRunning) CompareWith(*Pod_Status_Container_StateRunning) (cmp int, comparable bool) }
PodStatusContainerStateRunning_FieldPathValue allows storing values for StateRunning fields according to their type
func MustParsePodStatusContainerStateRunning_FieldPathValue ¶
func MustParsePodStatusContainerStateRunning_FieldPathValue(pathStr, valueStr string) PodStatusContainerStateRunning_FieldPathValue
func ParsePodStatusContainerStateRunning_FieldPathValue ¶
func ParsePodStatusContainerStateRunning_FieldPathValue(pathStr, valueStr string) (PodStatusContainerStateRunning_FieldPathValue, error)
type PodStatusContainerStateRunning_FieldTerminalPath ¶
type PodStatusContainerStateRunning_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PodStatusContainerStateRunning_FieldTerminalPath) ClearValue ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateRunning)
func (*PodStatusContainerStateRunning_FieldTerminalPath) ClearValueRaw ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PodStatusContainerStateRunning_FieldTerminalPath) Get ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) Get(source *Pod_Status_Container_StateRunning) (values []interface{})
Get returns all values pointed by specific field from source Pod_Status_Container_StateRunning
func (*PodStatusContainerStateRunning_FieldTerminalPath) GetDefault ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatusContainerStateRunning_FieldTerminalPath) GetRaw ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PodStatusContainerStateRunning_FieldTerminalPath) GetSingle ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateRunning) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod_Status_Container_StateRunning
func (*PodStatusContainerStateRunning_FieldTerminalPath) GetSingleRaw ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatusContainerStateRunning_FieldTerminalPath) IsLeaf ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatusContainerStateRunning_FieldTerminalPath) JSONString ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatusContainerStateRunning_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatusContainerStateRunning_FieldTerminalPath) String ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateRunning_FieldPathArrayItemValue
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateRunning_FieldPathArrayOfValues
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithIValue ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateRunning_FieldPathValue
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatusContainerStateRunning_FieldTerminalPath) WithRawIValue ¶
func (fp *PodStatusContainerStateRunning_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue ¶
type PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue struct { PodStatusContainerStateRunning_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateRunning) bool
Contains returns a boolean indicating if value that is being held is present in given 'StateRunning'
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod_Status_Container_StateRunning as interface{}
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateRunning) (interface{}, bool)
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PodStatusContainerStateRunning_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues ¶
type PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues struct { PodStatusContainerStateRunning_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues) AsStartedAtArrayOfValues ¶
func (fpaov *PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues) AsStartedAtArrayOfValues() ([]*timestamp.Timestamp, bool)
func (*PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PodStatusContainerStateRunning_FieldTerminalPathValue ¶
type PodStatusContainerStateRunning_FieldTerminalPathValue struct { PodStatusContainerStateRunning_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) AsStartedAtValue ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) AsStartedAtValue() (*timestamp.Timestamp, bool)
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWith ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateRunning) (int, bool)
CompareWith compares value in the 'PodStatusContainerStateRunning_FieldTerminalPathValue' with the value under path in 'Pod_Status_Container_StateRunning'.
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'StateRunning' as interface{}
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) SetTo ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateRunning)
SetTo stores value for selected field for object StateRunning
func (*PodStatusContainerStateRunning_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PodStatusContainerStateRunning_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PodStatusContainerStateTerminatedFieldPathBuilder ¶
type PodStatusContainerStateTerminatedFieldPathBuilder struct{}
func NewPodStatusContainerStateTerminatedFieldPathBuilder ¶
func NewPodStatusContainerStateTerminatedFieldPathBuilder() PodStatusContainerStateTerminatedFieldPathBuilder
func (PodStatusContainerStateTerminatedFieldPathBuilder) ContainerId ¶
func (PodStatusContainerStateTerminatedFieldPathBuilder) FinishedAt ¶
type PodStatusContainerStateTerminated_FieldPath ¶
type PodStatusContainerStateTerminated_FieldPath interface { gotenobject.FieldPath Selector() PodStatusContainerStateTerminated_FieldPathSelector Get(source *Pod_Status_Container_StateTerminated) []interface{} GetSingle(source *Pod_Status_Container_StateTerminated) (interface{}, bool) ClearValue(item *Pod_Status_Container_StateTerminated) // Those methods build corresponding PodStatusContainerStateTerminated_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PodStatusContainerStateTerminated_FieldPathValue WithIArrayOfValues(values interface{}) PodStatusContainerStateTerminated_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PodStatusContainerStateTerminated_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPodStatusContainerStateTerminated_FieldPath ¶
func BuildPodStatusContainerStateTerminated_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateTerminated_FieldPath, error)
func MustParsePodStatusContainerStateTerminated_FieldPath ¶
func MustParsePodStatusContainerStateTerminated_FieldPath(rawField string) PodStatusContainerStateTerminated_FieldPath
func ParsePodStatusContainerStateTerminated_FieldPath ¶
func ParsePodStatusContainerStateTerminated_FieldPath(rawField string) (PodStatusContainerStateTerminated_FieldPath, error)
type PodStatusContainerStateTerminated_FieldPathArrayItemValue ¶
type PodStatusContainerStateTerminated_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PodStatusContainerStateTerminated_FieldPath ContainsValue(*Pod_Status_Container_StateTerminated) bool }
PodStatusContainerStateTerminated_FieldPathArrayItemValue allows storing single item in Path-specific values for StateTerminated according to their type Present only for array (repeated) types.
func MustParsePodStatusContainerStateTerminated_FieldPathArrayItemValue ¶
func MustParsePodStatusContainerStateTerminated_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateTerminated_FieldPathArrayItemValue
func ParsePodStatusContainerStateTerminated_FieldPathArrayItemValue ¶
func ParsePodStatusContainerStateTerminated_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateTerminated_FieldPathArrayItemValue, error)
ParsePodStatusContainerStateTerminated_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PodStatusContainerStateTerminated_FieldPathArrayOfValues ¶
type PodStatusContainerStateTerminated_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PodStatusContainerStateTerminated_FieldPath }
PodStatusContainerStateTerminated_FieldPathArrayOfValues allows storing slice of values for StateTerminated fields according to their type
func MustParsePodStatusContainerStateTerminated_FieldPathArrayOfValues ¶
func MustParsePodStatusContainerStateTerminated_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateTerminated_FieldPathArrayOfValues
func ParsePodStatusContainerStateTerminated_FieldPathArrayOfValues ¶
func ParsePodStatusContainerStateTerminated_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateTerminated_FieldPathArrayOfValues, error)
type PodStatusContainerStateTerminated_FieldPathSelector ¶
type PodStatusContainerStateTerminated_FieldPathSelector int32
const ( PodStatusContainerStateTerminated_FieldPathSelectorExitCode PodStatusContainerStateTerminated_FieldPathSelector = 0 PodStatusContainerStateTerminated_FieldPathSelectorSignal PodStatusContainerStateTerminated_FieldPathSelector = 1 PodStatusContainerStateTerminated_FieldPathSelectorReason PodStatusContainerStateTerminated_FieldPathSelector = 2 PodStatusContainerStateTerminated_FieldPathSelectorMessage PodStatusContainerStateTerminated_FieldPathSelector = 3 PodStatusContainerStateTerminated_FieldPathSelectorStartedAt PodStatusContainerStateTerminated_FieldPathSelector = 4 PodStatusContainerStateTerminated_FieldPathSelectorFinishedAt PodStatusContainerStateTerminated_FieldPathSelector = 5 PodStatusContainerStateTerminated_FieldPathSelectorContainerId PodStatusContainerStateTerminated_FieldPathSelector = 6 )
func (PodStatusContainerStateTerminated_FieldPathSelector) String ¶
func (s PodStatusContainerStateTerminated_FieldPathSelector) String() string
type PodStatusContainerStateTerminated_FieldPathValue ¶
type PodStatusContainerStateTerminated_FieldPathValue interface { PodStatusContainerStateTerminated_FieldPath gotenobject.FieldPathValue SetTo(target **Pod_Status_Container_StateTerminated) CompareWith(*Pod_Status_Container_StateTerminated) (cmp int, comparable bool) }
PodStatusContainerStateTerminated_FieldPathValue allows storing values for StateTerminated fields according to their type
func MustParsePodStatusContainerStateTerminated_FieldPathValue ¶
func MustParsePodStatusContainerStateTerminated_FieldPathValue(pathStr, valueStr string) PodStatusContainerStateTerminated_FieldPathValue
func ParsePodStatusContainerStateTerminated_FieldPathValue ¶
func ParsePodStatusContainerStateTerminated_FieldPathValue(pathStr, valueStr string) (PodStatusContainerStateTerminated_FieldPathValue, error)
type PodStatusContainerStateTerminated_FieldTerminalPath ¶
type PodStatusContainerStateTerminated_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PodStatusContainerStateTerminated_FieldTerminalPath) ClearValue ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateTerminated)
func (*PodStatusContainerStateTerminated_FieldTerminalPath) ClearValueRaw ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PodStatusContainerStateTerminated_FieldTerminalPath) Get ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) Get(source *Pod_Status_Container_StateTerminated) (values []interface{})
Get returns all values pointed by specific field from source Pod_Status_Container_StateTerminated
func (*PodStatusContainerStateTerminated_FieldTerminalPath) GetDefault ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatusContainerStateTerminated_FieldTerminalPath) GetRaw ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PodStatusContainerStateTerminated_FieldTerminalPath) GetSingle ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateTerminated) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod_Status_Container_StateTerminated
func (*PodStatusContainerStateTerminated_FieldTerminalPath) GetSingleRaw ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPath) IsLeaf ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatusContainerStateTerminated_FieldTerminalPath) JSONString ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatusContainerStateTerminated_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatusContainerStateTerminated_FieldTerminalPath) String ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateTerminated_FieldPathArrayItemValue
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateTerminated_FieldPathArrayOfValues
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithIValue ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateTerminated_FieldPathValue
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIValue ¶
func (fp *PodStatusContainerStateTerminated_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue ¶
type PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue struct { PodStatusContainerStateTerminated_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateTerminated) bool
Contains returns a boolean indicating if value that is being held is present in given 'StateTerminated'
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod_Status_Container_StateTerminated as interface{}
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateTerminated) (interface{}, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PodStatusContainerStateTerminated_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues ¶
type PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues struct { PodStatusContainerStateTerminated_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsContainerIdArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsContainerIdArrayOfValues() ([]string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsExitCodeArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsExitCodeArrayOfValues() ([]int32, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsFinishedAtArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsFinishedAtArrayOfValues() ([]*timestamp.Timestamp, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues() ([]string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsSignalArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsSignalArrayOfValues() ([]int32, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsStartedAtArrayOfValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) AsStartedAtArrayOfValues() ([]*timestamp.Timestamp, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PodStatusContainerStateTerminated_FieldTerminalPathValue ¶
type PodStatusContainerStateTerminated_FieldTerminalPathValue struct { PodStatusContainerStateTerminated_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsContainerIdValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsContainerIdValue() (string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsExitCodeValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsExitCodeValue() (int32, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsFinishedAtValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsFinishedAtValue() (*timestamp.Timestamp, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsMessageValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsMessageValue() (string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsReasonValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsReasonValue() (string, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsSignalValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsSignalValue() (int32, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) AsStartedAtValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) AsStartedAtValue() (*timestamp.Timestamp, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWith ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateTerminated) (int, bool)
CompareWith compares value in the 'PodStatusContainerStateTerminated_FieldTerminalPathValue' with the value under path in 'Pod_Status_Container_StateTerminated'.
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'StateTerminated' as interface{}
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) SetTo ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateTerminated)
SetTo stores value for selected field for object StateTerminated
func (*PodStatusContainerStateTerminated_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PodStatusContainerStateTerminated_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PodStatusContainerStateWaitingFieldPathBuilder ¶
type PodStatusContainerStateWaitingFieldPathBuilder struct{}
func NewPodStatusContainerStateWaitingFieldPathBuilder ¶
func NewPodStatusContainerStateWaitingFieldPathBuilder() PodStatusContainerStateWaitingFieldPathBuilder
type PodStatusContainerStateWaiting_FieldPath ¶
type PodStatusContainerStateWaiting_FieldPath interface { gotenobject.FieldPath Selector() PodStatusContainerStateWaiting_FieldPathSelector Get(source *Pod_Status_Container_StateWaiting) []interface{} GetSingle(source *Pod_Status_Container_StateWaiting) (interface{}, bool) ClearValue(item *Pod_Status_Container_StateWaiting) // Those methods build corresponding PodStatusContainerStateWaiting_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PodStatusContainerStateWaiting_FieldPathValue WithIArrayOfValues(values interface{}) PodStatusContainerStateWaiting_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PodStatusContainerStateWaiting_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPodStatusContainerStateWaiting_FieldPath ¶
func BuildPodStatusContainerStateWaiting_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainerStateWaiting_FieldPath, error)
func MustParsePodStatusContainerStateWaiting_FieldPath ¶
func MustParsePodStatusContainerStateWaiting_FieldPath(rawField string) PodStatusContainerStateWaiting_FieldPath
func ParsePodStatusContainerStateWaiting_FieldPath ¶
func ParsePodStatusContainerStateWaiting_FieldPath(rawField string) (PodStatusContainerStateWaiting_FieldPath, error)
type PodStatusContainerStateWaiting_FieldPathArrayItemValue ¶
type PodStatusContainerStateWaiting_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PodStatusContainerStateWaiting_FieldPath ContainsValue(*Pod_Status_Container_StateWaiting) bool }
PodStatusContainerStateWaiting_FieldPathArrayItemValue allows storing single item in Path-specific values for StateWaiting according to their type Present only for array (repeated) types.
func MustParsePodStatusContainerStateWaiting_FieldPathArrayItemValue ¶
func MustParsePodStatusContainerStateWaiting_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainerStateWaiting_FieldPathArrayItemValue
func ParsePodStatusContainerStateWaiting_FieldPathArrayItemValue ¶
func ParsePodStatusContainerStateWaiting_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainerStateWaiting_FieldPathArrayItemValue, error)
ParsePodStatusContainerStateWaiting_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PodStatusContainerStateWaiting_FieldPathArrayOfValues ¶
type PodStatusContainerStateWaiting_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PodStatusContainerStateWaiting_FieldPath }
PodStatusContainerStateWaiting_FieldPathArrayOfValues allows storing slice of values for StateWaiting fields according to their type
func MustParsePodStatusContainerStateWaiting_FieldPathArrayOfValues ¶
func MustParsePodStatusContainerStateWaiting_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainerStateWaiting_FieldPathArrayOfValues
func ParsePodStatusContainerStateWaiting_FieldPathArrayOfValues ¶
func ParsePodStatusContainerStateWaiting_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainerStateWaiting_FieldPathArrayOfValues, error)
type PodStatusContainerStateWaiting_FieldPathSelector ¶
type PodStatusContainerStateWaiting_FieldPathSelector int32
const ( PodStatusContainerStateWaiting_FieldPathSelectorReason PodStatusContainerStateWaiting_FieldPathSelector = 0 PodStatusContainerStateWaiting_FieldPathSelectorMessage PodStatusContainerStateWaiting_FieldPathSelector = 1 )
func (PodStatusContainerStateWaiting_FieldPathSelector) String ¶
func (s PodStatusContainerStateWaiting_FieldPathSelector) String() string
type PodStatusContainerStateWaiting_FieldPathValue ¶
type PodStatusContainerStateWaiting_FieldPathValue interface { PodStatusContainerStateWaiting_FieldPath gotenobject.FieldPathValue SetTo(target **Pod_Status_Container_StateWaiting) CompareWith(*Pod_Status_Container_StateWaiting) (cmp int, comparable bool) }
PodStatusContainerStateWaiting_FieldPathValue allows storing values for StateWaiting fields according to their type
func MustParsePodStatusContainerStateWaiting_FieldPathValue ¶
func MustParsePodStatusContainerStateWaiting_FieldPathValue(pathStr, valueStr string) PodStatusContainerStateWaiting_FieldPathValue
func ParsePodStatusContainerStateWaiting_FieldPathValue ¶
func ParsePodStatusContainerStateWaiting_FieldPathValue(pathStr, valueStr string) (PodStatusContainerStateWaiting_FieldPathValue, error)
type PodStatusContainerStateWaiting_FieldTerminalPath ¶
type PodStatusContainerStateWaiting_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PodStatusContainerStateWaiting_FieldTerminalPath) ClearValue ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) ClearValue(item *Pod_Status_Container_StateWaiting)
func (*PodStatusContainerStateWaiting_FieldTerminalPath) ClearValueRaw ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PodStatusContainerStateWaiting_FieldTerminalPath) Get ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) Get(source *Pod_Status_Container_StateWaiting) (values []interface{})
Get returns all values pointed by specific field from source Pod_Status_Container_StateWaiting
func (*PodStatusContainerStateWaiting_FieldTerminalPath) GetDefault ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatusContainerStateWaiting_FieldTerminalPath) GetRaw ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PodStatusContainerStateWaiting_FieldTerminalPath) GetSingle ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetSingle(source *Pod_Status_Container_StateWaiting) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod_Status_Container_StateWaiting
func (*PodStatusContainerStateWaiting_FieldTerminalPath) GetSingleRaw ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPath) IsLeaf ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatusContainerStateWaiting_FieldTerminalPath) JSONString ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatusContainerStateWaiting_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatusContainerStateWaiting_FieldTerminalPath) String ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainerStateWaiting_FieldPathArrayItemValue
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainerStateWaiting_FieldPathArrayOfValues
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithIValue ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainerStateWaiting_FieldPathValue
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIValue ¶
func (fp *PodStatusContainerStateWaiting_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue ¶
type PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue struct { PodStatusContainerStateWaiting_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container_StateWaiting) bool
Contains returns a boolean indicating if value that is being held is present in given 'StateWaiting'
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod_Status_Container_StateWaiting as interface{}
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container_StateWaiting) (interface{}, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PodStatusContainerStateWaiting_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues ¶
type PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues struct { PodStatusContainerStateWaiting_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues ¶
func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsMessageArrayOfValues() ([]string, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues ¶
func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PodStatusContainerStateWaiting_FieldTerminalPathValue ¶
type PodStatusContainerStateWaiting_FieldTerminalPathValue struct { PodStatusContainerStateWaiting_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) AsMessageValue ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) AsMessageValue() (string, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) AsReasonValue ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) AsReasonValue() (string, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWith ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container_StateWaiting) (int, bool)
CompareWith compares value in the 'PodStatusContainerStateWaiting_FieldTerminalPathValue' with the value under path in 'Pod_Status_Container_StateWaiting'.
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'StateWaiting' as interface{}
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) SetTo ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) SetTo(target **Pod_Status_Container_StateWaiting)
SetTo stores value for selected field for object StateWaiting
func (*PodStatusContainerStateWaiting_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PodStatusContainerStateWaiting_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PodStatusContainer_FieldPath ¶
type PodStatusContainer_FieldPath interface { gotenobject.FieldPath Selector() PodStatusContainer_FieldPathSelector Get(source *Pod_Status_Container) []interface{} GetSingle(source *Pod_Status_Container) (interface{}, bool) ClearValue(item *Pod_Status_Container) // Those methods build corresponding PodStatusContainer_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PodStatusContainer_FieldPathValue WithIArrayOfValues(values interface{}) PodStatusContainer_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PodStatusContainer_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPodStatusContainer_FieldPath ¶
func BuildPodStatusContainer_FieldPath(fp gotenobject.RawFieldPath) (PodStatusContainer_FieldPath, error)
func MustParsePodStatusContainer_FieldPath ¶
func MustParsePodStatusContainer_FieldPath(rawField string) PodStatusContainer_FieldPath
func ParsePodStatusContainer_FieldPath ¶
func ParsePodStatusContainer_FieldPath(rawField string) (PodStatusContainer_FieldPath, error)
type PodStatusContainer_FieldPathArrayItemValue ¶
type PodStatusContainer_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PodStatusContainer_FieldPath ContainsValue(*Pod_Status_Container) bool }
PodStatusContainer_FieldPathArrayItemValue allows storing single item in Path-specific values for Container according to their type Present only for array (repeated) types.
func MustParsePodStatusContainer_FieldPathArrayItemValue ¶
func MustParsePodStatusContainer_FieldPathArrayItemValue(pathStr, valueStr string) PodStatusContainer_FieldPathArrayItemValue
func ParsePodStatusContainer_FieldPathArrayItemValue ¶
func ParsePodStatusContainer_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatusContainer_FieldPathArrayItemValue, error)
ParsePodStatusContainer_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PodStatusContainer_FieldPathArrayOfValues ¶
type PodStatusContainer_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PodStatusContainer_FieldPath }
PodStatusContainer_FieldPathArrayOfValues allows storing slice of values for Container fields according to their type
func MustParsePodStatusContainer_FieldPathArrayOfValues ¶
func MustParsePodStatusContainer_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatusContainer_FieldPathArrayOfValues
func ParsePodStatusContainer_FieldPathArrayOfValues ¶
func ParsePodStatusContainer_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatusContainer_FieldPathArrayOfValues, error)
type PodStatusContainer_FieldPathSelector ¶
type PodStatusContainer_FieldPathSelector int32
const ( PodStatusContainer_FieldPathSelectorName PodStatusContainer_FieldPathSelector = 0 PodStatusContainer_FieldPathSelectorState PodStatusContainer_FieldPathSelector = 1 PodStatusContainer_FieldPathSelectorWaiting PodStatusContainer_FieldPathSelector = 2 PodStatusContainer_FieldPathSelectorRunning PodStatusContainer_FieldPathSelector = 3 PodStatusContainer_FieldPathSelectorTerminated PodStatusContainer_FieldPathSelector = 4 )
func (PodStatusContainer_FieldPathSelector) String ¶
func (s PodStatusContainer_FieldPathSelector) String() string
type PodStatusContainer_FieldPathValue ¶
type PodStatusContainer_FieldPathValue interface { PodStatusContainer_FieldPath gotenobject.FieldPathValue SetTo(target **Pod_Status_Container) CompareWith(*Pod_Status_Container) (cmp int, comparable bool) }
PodStatusContainer_FieldPathValue allows storing values for Container fields according to their type
func MustParsePodStatusContainer_FieldPathValue ¶
func MustParsePodStatusContainer_FieldPathValue(pathStr, valueStr string) PodStatusContainer_FieldPathValue
func ParsePodStatusContainer_FieldPathValue ¶
func ParsePodStatusContainer_FieldPathValue(pathStr, valueStr string) (PodStatusContainer_FieldPathValue, error)
type PodStatusContainer_FieldSubPath ¶
type PodStatusContainer_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PodStatusContainer_FieldSubPath) AsRunningSubPath ¶
func (fps *PodStatusContainer_FieldSubPath) AsRunningSubPath() (PodStatusContainerStateRunning_FieldPath, bool)
func (*PodStatusContainer_FieldSubPath) AsTerminatedSubPath ¶
func (fps *PodStatusContainer_FieldSubPath) AsTerminatedSubPath() (PodStatusContainerStateTerminated_FieldPath, bool)
func (*PodStatusContainer_FieldSubPath) AsWaitingSubPath ¶
func (fps *PodStatusContainer_FieldSubPath) AsWaitingSubPath() (PodStatusContainerStateWaiting_FieldPath, bool)
func (*PodStatusContainer_FieldSubPath) ClearValue ¶
func (fps *PodStatusContainer_FieldSubPath) ClearValue(item *Pod_Status_Container)
func (*PodStatusContainer_FieldSubPath) ClearValueRaw ¶
func (fps *PodStatusContainer_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PodStatusContainer_FieldSubPath) Get ¶
func (fps *PodStatusContainer_FieldSubPath) Get(source *Pod_Status_Container) (values []interface{})
Get returns all values pointed by selected field from source Pod_Status_Container
func (*PodStatusContainer_FieldSubPath) GetDefault ¶
func (fps *PodStatusContainer_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatusContainer_FieldSubPath) GetRaw ¶
func (fps *PodStatusContainer_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PodStatusContainer_FieldSubPath) GetSingle ¶
func (fps *PodStatusContainer_FieldSubPath) GetSingle(source *Pod_Status_Container) (interface{}, bool)
GetSingle returns value of selected field from source Pod_Status_Container
func (*PodStatusContainer_FieldSubPath) GetSingleRaw ¶
func (fps *PodStatusContainer_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatusContainer_FieldSubPath) IsLeaf ¶
func (fps *PodStatusContainer_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatusContainer_FieldSubPath) JSONString ¶
func (fps *PodStatusContainer_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatusContainer_FieldSubPath) Selector ¶
func (fps *PodStatusContainer_FieldSubPath) Selector() PodStatusContainer_FieldPathSelector
func (*PodStatusContainer_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fps *PodStatusContainer_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatusContainer_FieldSubPath) String ¶
func (fps *PodStatusContainer_FieldSubPath) String() string
String returns path representation in proto convention
func (*PodStatusContainer_FieldSubPath) WithIArrayItemValue ¶
func (fps *PodStatusContainer_FieldSubPath) WithIArrayItemValue(value interface{}) PodStatusContainer_FieldPathArrayItemValue
func (*PodStatusContainer_FieldSubPath) WithIArrayOfValues ¶
func (fps *PodStatusContainer_FieldSubPath) WithIArrayOfValues(values interface{}) PodStatusContainer_FieldPathArrayOfValues
func (*PodStatusContainer_FieldSubPath) WithIValue ¶
func (fps *PodStatusContainer_FieldSubPath) WithIValue(value interface{}) PodStatusContainer_FieldPathValue
func (*PodStatusContainer_FieldSubPath) WithRawIArrayItemValue ¶
func (fps *PodStatusContainer_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatusContainer_FieldSubPath) WithRawIArrayOfValues ¶
func (fps *PodStatusContainer_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatusContainer_FieldSubPath) WithRawIValue ¶
func (fps *PodStatusContainer_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatusContainer_FieldSubPathArrayItemValue ¶
type PodStatusContainer_FieldSubPathArrayItemValue struct { PodStatusContainer_FieldPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldSubPathArrayItemValue) AsRunningPathItemValue ¶
func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsRunningPathItemValue() (PodStatusContainerStateRunning_FieldPathArrayItemValue, bool)
func (*PodStatusContainer_FieldSubPathArrayItemValue) AsTerminatedPathItemValue ¶
func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsTerminatedPathItemValue() (PodStatusContainerStateTerminated_FieldPathArrayItemValue, bool)
func (*PodStatusContainer_FieldSubPathArrayItemValue) AsWaitingPathItemValue ¶
func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) AsWaitingPathItemValue() (PodStatusContainerStateWaiting_FieldPathArrayItemValue, bool)
func (*PodStatusContainer_FieldSubPathArrayItemValue) ContainsValue ¶
func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) ContainsValue(source *Pod_Status_Container) bool
Contains returns a boolean indicating if value that is being held is present in given 'Container'
func (*PodStatusContainer_FieldSubPathArrayItemValue) GetRawItemValue ¶
func (fpaivs *PodStatusContainer_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PodStatusContainer_FieldSubPathArrayOfValues ¶
type PodStatusContainer_FieldSubPathArrayOfValues struct { PodStatusContainer_FieldPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldSubPathArrayOfValues) AsRunningPathArrayOfValues ¶
func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsRunningPathArrayOfValues() (PodStatusContainerStateRunning_FieldPathArrayOfValues, bool)
func (*PodStatusContainer_FieldSubPathArrayOfValues) AsTerminatedPathArrayOfValues ¶
func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsTerminatedPathArrayOfValues() (PodStatusContainerStateTerminated_FieldPathArrayOfValues, bool)
func (*PodStatusContainer_FieldSubPathArrayOfValues) AsWaitingPathArrayOfValues ¶
func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) AsWaitingPathArrayOfValues() (PodStatusContainerStateWaiting_FieldPathArrayOfValues, bool)
func (*PodStatusContainer_FieldSubPathArrayOfValues) GetRawValues ¶
func (fpsaov *PodStatusContainer_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PodStatusContainer_FieldSubPathValue ¶
type PodStatusContainer_FieldSubPathValue struct { PodStatusContainer_FieldPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldSubPathValue) AsRunningPathValue ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) AsRunningPathValue() (PodStatusContainerStateRunning_FieldPathValue, bool)
func (*PodStatusContainer_FieldSubPathValue) AsTerminatedPathValue ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) AsTerminatedPathValue() (PodStatusContainerStateTerminated_FieldPathValue, bool)
func (*PodStatusContainer_FieldSubPathValue) AsWaitingPathValue ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) AsWaitingPathValue() (PodStatusContainerStateWaiting_FieldPathValue, bool)
func (*PodStatusContainer_FieldSubPathValue) CompareWith ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) CompareWith(source *Pod_Status_Container) (int, bool)
func (*PodStatusContainer_FieldSubPathValue) CompareWithRaw ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatusContainer_FieldSubPathValue) GetRawValue ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) GetRawValue() interface{}
func (*PodStatusContainer_FieldSubPathValue) SetTo ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) SetTo(target **Pod_Status_Container)
func (*PodStatusContainer_FieldSubPathValue) SetToRaw ¶
func (fpvs *PodStatusContainer_FieldSubPathValue) SetToRaw(target proto.Message)
type PodStatusContainer_FieldTerminalPath ¶
type PodStatusContainer_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PodStatusContainer_FieldTerminalPath) ClearValue ¶
func (fp *PodStatusContainer_FieldTerminalPath) ClearValue(item *Pod_Status_Container)
func (*PodStatusContainer_FieldTerminalPath) ClearValueRaw ¶
func (fp *PodStatusContainer_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PodStatusContainer_FieldTerminalPath) Get ¶
func (fp *PodStatusContainer_FieldTerminalPath) Get(source *Pod_Status_Container) (values []interface{})
Get returns all values pointed by specific field from source Pod_Status_Container
func (*PodStatusContainer_FieldTerminalPath) GetDefault ¶
func (fp *PodStatusContainer_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatusContainer_FieldTerminalPath) GetRaw ¶
func (fp *PodStatusContainer_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PodStatusContainer_FieldTerminalPath) GetSingle ¶
func (fp *PodStatusContainer_FieldTerminalPath) GetSingle(source *Pod_Status_Container) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod_Status_Container
func (*PodStatusContainer_FieldTerminalPath) GetSingleRaw ¶
func (fp *PodStatusContainer_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatusContainer_FieldTerminalPath) IsLeaf ¶
func (fp *PodStatusContainer_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatusContainer_FieldTerminalPath) JSONString ¶
func (fp *PodStatusContainer_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatusContainer_FieldTerminalPath) Selector ¶
func (fp *PodStatusContainer_FieldTerminalPath) Selector() PodStatusContainer_FieldPathSelector
func (*PodStatusContainer_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PodStatusContainer_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatusContainer_FieldTerminalPath) String ¶
func (fp *PodStatusContainer_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PodStatusContainer_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatusContainer_FieldPathArrayItemValue
func (*PodStatusContainer_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatusContainer_FieldPathArrayOfValues
func (*PodStatusContainer_FieldTerminalPath) WithIValue ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithIValue(value interface{}) PodStatusContainer_FieldPathValue
func (*PodStatusContainer_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatusContainer_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatusContainer_FieldTerminalPath) WithRawIValue ¶
func (fp *PodStatusContainer_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatusContainer_FieldTerminalPathArrayItemValue ¶
type PodStatusContainer_FieldTerminalPathArrayItemValue struct { PodStatusContainer_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status_Container) bool
Contains returns a boolean indicating if value that is being held is present in given 'Container'
func (*PodStatusContainer_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod_Status_Container as interface{}
func (*PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status_Container) (interface{}, bool)
func (*PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PodStatusContainer_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PodStatusContainer_FieldTerminalPathArrayOfValues ¶
type PodStatusContainer_FieldTerminalPathArrayOfValues struct { PodStatusContainer_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) AsNameArrayOfValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]string, bool)
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) AsRunningArrayOfValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsRunningArrayOfValues() ([]*Pod_Status_Container_StateRunning, bool)
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) AsStateArrayOfValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsStateArrayOfValues() ([]Pod_Status_Container_State, bool)
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) AsTerminatedArrayOfValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsTerminatedArrayOfValues() ([]*Pod_Status_Container_StateTerminated, bool)
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) AsWaitingArrayOfValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) AsWaitingArrayOfValues() ([]*Pod_Status_Container_StateWaiting, bool)
func (*PodStatusContainer_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PodStatusContainer_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PodStatusContainer_FieldTerminalPathValue ¶
type PodStatusContainer_FieldTerminalPathValue struct { PodStatusContainer_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatusContainer_FieldTerminalPathValue) AsNameValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) AsNameValue() (string, bool)
func (*PodStatusContainer_FieldTerminalPathValue) AsRunningValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) AsRunningValue() (*Pod_Status_Container_StateRunning, bool)
func (*PodStatusContainer_FieldTerminalPathValue) AsStateValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) AsStateValue() (Pod_Status_Container_State, bool)
func (*PodStatusContainer_FieldTerminalPathValue) AsTerminatedValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) AsTerminatedValue() (*Pod_Status_Container_StateTerminated, bool)
func (*PodStatusContainer_FieldTerminalPathValue) AsWaitingValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) AsWaitingValue() (*Pod_Status_Container_StateWaiting, bool)
func (*PodStatusContainer_FieldTerminalPathValue) CompareWith ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) CompareWith(source *Pod_Status_Container) (int, bool)
CompareWith compares value in the 'PodStatusContainer_FieldTerminalPathValue' with the value under path in 'Pod_Status_Container'.
func (*PodStatusContainer_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatusContainer_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Container' as interface{}
func (*PodStatusContainer_FieldTerminalPathValue) SetTo ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) SetTo(target **Pod_Status_Container)
SetTo stores value for selected field for object Container
func (*PodStatusContainer_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PodStatusContainer_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PodStatusFieldPathBuilder ¶
type PodStatusFieldPathBuilder struct{}
func NewPodStatusFieldPathBuilder ¶
func NewPodStatusFieldPathBuilder() PodStatusFieldPathBuilder
func (PodStatusFieldPathBuilder) ContainerStatuses ¶
func (PodStatusFieldPathBuilder) ContainerStatuses() Pod_StatusPathSelectorContainerStatuses
func (PodStatusFieldPathBuilder) Error ¶ added in v0.12.69
func (PodStatusFieldPathBuilder) Error() Pod_StatusPathSelectorError
func (PodStatusFieldPathBuilder) Phase ¶
func (PodStatusFieldPathBuilder) Phase() Pod_StatusPathSelectorPhase
type PodStatus_FieldPath ¶
type PodStatus_FieldPath interface { gotenobject.FieldPath Selector() PodStatus_FieldPathSelector Get(source *Pod_Status) []interface{} GetSingle(source *Pod_Status) (interface{}, bool) ClearValue(item *Pod_Status) // Those methods build corresponding PodStatus_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PodStatus_FieldPathValue WithIArrayOfValues(values interface{}) PodStatus_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PodStatus_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPodStatus_FieldPath ¶
func BuildPodStatus_FieldPath(fp gotenobject.RawFieldPath) (PodStatus_FieldPath, error)
func MustParsePodStatus_FieldPath ¶
func MustParsePodStatus_FieldPath(rawField string) PodStatus_FieldPath
func ParsePodStatus_FieldPath ¶
func ParsePodStatus_FieldPath(rawField string) (PodStatus_FieldPath, error)
type PodStatus_FieldPathArrayItemValue ¶
type PodStatus_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PodStatus_FieldPath ContainsValue(*Pod_Status) bool }
PodStatus_FieldPathArrayItemValue allows storing single item in Path-specific values for Status according to their type Present only for array (repeated) types.
func MustParsePodStatus_FieldPathArrayItemValue ¶
func MustParsePodStatus_FieldPathArrayItemValue(pathStr, valueStr string) PodStatus_FieldPathArrayItemValue
func ParsePodStatus_FieldPathArrayItemValue ¶
func ParsePodStatus_FieldPathArrayItemValue(pathStr, valueStr string) (PodStatus_FieldPathArrayItemValue, error)
ParsePodStatus_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PodStatus_FieldPathArrayOfValues ¶
type PodStatus_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PodStatus_FieldPath }
PodStatus_FieldPathArrayOfValues allows storing slice of values for Status fields according to their type
func MustParsePodStatus_FieldPathArrayOfValues ¶
func MustParsePodStatus_FieldPathArrayOfValues(pathStr, valuesStr string) PodStatus_FieldPathArrayOfValues
func ParsePodStatus_FieldPathArrayOfValues ¶
func ParsePodStatus_FieldPathArrayOfValues(pathStr, valuesStr string) (PodStatus_FieldPathArrayOfValues, error)
type PodStatus_FieldPathSelector ¶
type PodStatus_FieldPathSelector int32
const ( PodStatus_FieldPathSelectorPhase PodStatus_FieldPathSelector = 0 PodStatus_FieldPathSelectorContainerStatuses PodStatus_FieldPathSelector = 1 PodStatus_FieldPathSelectorError PodStatus_FieldPathSelector = 2 )
func (PodStatus_FieldPathSelector) String ¶
func (s PodStatus_FieldPathSelector) String() string
type PodStatus_FieldPathValue ¶
type PodStatus_FieldPathValue interface { PodStatus_FieldPath gotenobject.FieldPathValue SetTo(target **Pod_Status) CompareWith(*Pod_Status) (cmp int, comparable bool) }
PodStatus_FieldPathValue allows storing values for Status fields according to their type
func MustParsePodStatus_FieldPathValue ¶
func MustParsePodStatus_FieldPathValue(pathStr, valueStr string) PodStatus_FieldPathValue
func ParsePodStatus_FieldPathValue ¶
func ParsePodStatus_FieldPathValue(pathStr, valueStr string) (PodStatus_FieldPathValue, error)
type PodStatus_FieldSubPath ¶
type PodStatus_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PodStatus_FieldSubPath) AsContainerStatusesSubPath ¶
func (fps *PodStatus_FieldSubPath) AsContainerStatusesSubPath() (PodStatusContainer_FieldPath, bool)
func (*PodStatus_FieldSubPath) ClearValue ¶
func (fps *PodStatus_FieldSubPath) ClearValue(item *Pod_Status)
func (*PodStatus_FieldSubPath) ClearValueRaw ¶
func (fps *PodStatus_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PodStatus_FieldSubPath) Get ¶
func (fps *PodStatus_FieldSubPath) Get(source *Pod_Status) (values []interface{})
Get returns all values pointed by selected field from source Pod_Status
func (*PodStatus_FieldSubPath) GetDefault ¶
func (fps *PodStatus_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatus_FieldSubPath) GetRaw ¶
func (fps *PodStatus_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PodStatus_FieldSubPath) GetSingle ¶
func (fps *PodStatus_FieldSubPath) GetSingle(source *Pod_Status) (interface{}, bool)
GetSingle returns value of selected field from source Pod_Status
func (*PodStatus_FieldSubPath) GetSingleRaw ¶
func (fps *PodStatus_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatus_FieldSubPath) IsLeaf ¶
func (fps *PodStatus_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatus_FieldSubPath) JSONString ¶
func (fps *PodStatus_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatus_FieldSubPath) Selector ¶
func (fps *PodStatus_FieldSubPath) Selector() PodStatus_FieldPathSelector
func (*PodStatus_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fps *PodStatus_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatus_FieldSubPath) String ¶
func (fps *PodStatus_FieldSubPath) String() string
String returns path representation in proto convention
func (*PodStatus_FieldSubPath) WithIArrayItemValue ¶
func (fps *PodStatus_FieldSubPath) WithIArrayItemValue(value interface{}) PodStatus_FieldPathArrayItemValue
func (*PodStatus_FieldSubPath) WithIArrayOfValues ¶
func (fps *PodStatus_FieldSubPath) WithIArrayOfValues(values interface{}) PodStatus_FieldPathArrayOfValues
func (*PodStatus_FieldSubPath) WithIValue ¶
func (fps *PodStatus_FieldSubPath) WithIValue(value interface{}) PodStatus_FieldPathValue
func (*PodStatus_FieldSubPath) WithRawIArrayItemValue ¶
func (fps *PodStatus_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatus_FieldSubPath) WithRawIArrayOfValues ¶
func (fps *PodStatus_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatus_FieldSubPath) WithRawIValue ¶
func (fps *PodStatus_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatus_FieldSubPathArrayItemValue ¶
type PodStatus_FieldSubPathArrayItemValue struct { PodStatus_FieldPath // contains filtered or unexported fields }
func (*PodStatus_FieldSubPathArrayItemValue) AsContainerStatusesPathItemValue ¶
func (fpaivs *PodStatus_FieldSubPathArrayItemValue) AsContainerStatusesPathItemValue() (PodStatusContainer_FieldPathArrayItemValue, bool)
func (*PodStatus_FieldSubPathArrayItemValue) ContainsValue ¶
func (fpaivs *PodStatus_FieldSubPathArrayItemValue) ContainsValue(source *Pod_Status) bool
Contains returns a boolean indicating if value that is being held is present in given 'Status'
func (*PodStatus_FieldSubPathArrayItemValue) GetRawItemValue ¶
func (fpaivs *PodStatus_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PodStatus_FieldSubPathArrayOfValues ¶
type PodStatus_FieldSubPathArrayOfValues struct { PodStatus_FieldPath // contains filtered or unexported fields }
func (*PodStatus_FieldSubPathArrayOfValues) AsContainerStatusesPathArrayOfValues ¶
func (fpsaov *PodStatus_FieldSubPathArrayOfValues) AsContainerStatusesPathArrayOfValues() (PodStatusContainer_FieldPathArrayOfValues, bool)
func (*PodStatus_FieldSubPathArrayOfValues) GetRawValues ¶
func (fpsaov *PodStatus_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PodStatus_FieldSubPathValue ¶
type PodStatus_FieldSubPathValue struct { PodStatus_FieldPath // contains filtered or unexported fields }
func (*PodStatus_FieldSubPathValue) AsContainerStatusesPathValue ¶
func (fpvs *PodStatus_FieldSubPathValue) AsContainerStatusesPathValue() (PodStatusContainer_FieldPathValue, bool)
func (*PodStatus_FieldSubPathValue) CompareWith ¶
func (fpvs *PodStatus_FieldSubPathValue) CompareWith(source *Pod_Status) (int, bool)
func (*PodStatus_FieldSubPathValue) CompareWithRaw ¶
func (fpvs *PodStatus_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatus_FieldSubPathValue) GetRawValue ¶
func (fpvs *PodStatus_FieldSubPathValue) GetRawValue() interface{}
func (*PodStatus_FieldSubPathValue) SetTo ¶
func (fpvs *PodStatus_FieldSubPathValue) SetTo(target **Pod_Status)
func (*PodStatus_FieldSubPathValue) SetToRaw ¶
func (fpvs *PodStatus_FieldSubPathValue) SetToRaw(target proto.Message)
type PodStatus_FieldTerminalPath ¶
type PodStatus_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PodStatus_FieldTerminalPath) ClearValue ¶
func (fp *PodStatus_FieldTerminalPath) ClearValue(item *Pod_Status)
func (*PodStatus_FieldTerminalPath) ClearValueRaw ¶
func (fp *PodStatus_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PodStatus_FieldTerminalPath) Get ¶
func (fp *PodStatus_FieldTerminalPath) Get(source *Pod_Status) (values []interface{})
Get returns all values pointed by specific field from source Pod_Status
func (*PodStatus_FieldTerminalPath) GetDefault ¶
func (fp *PodStatus_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PodStatus_FieldTerminalPath) GetRaw ¶
func (fp *PodStatus_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PodStatus_FieldTerminalPath) GetSingle ¶
func (fp *PodStatus_FieldTerminalPath) GetSingle(source *Pod_Status) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod_Status
func (*PodStatus_FieldTerminalPath) GetSingleRaw ¶
func (fp *PodStatus_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PodStatus_FieldTerminalPath) IsLeaf ¶
func (fp *PodStatus_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PodStatus_FieldTerminalPath) JSONString ¶
func (fp *PodStatus_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PodStatus_FieldTerminalPath) Selector ¶
func (fp *PodStatus_FieldTerminalPath) Selector() PodStatus_FieldPathSelector
func (*PodStatus_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PodStatus_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PodStatus_FieldTerminalPath) String ¶
func (fp *PodStatus_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PodStatus_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PodStatus_FieldTerminalPath) WithIArrayItemValue(value interface{}) PodStatus_FieldPathArrayItemValue
func (*PodStatus_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PodStatus_FieldTerminalPath) WithIArrayOfValues(values interface{}) PodStatus_FieldPathArrayOfValues
func (*PodStatus_FieldTerminalPath) WithIValue ¶
func (fp *PodStatus_FieldTerminalPath) WithIValue(value interface{}) PodStatus_FieldPathValue
func (*PodStatus_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PodStatus_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PodStatus_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PodStatus_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PodStatus_FieldTerminalPath) WithRawIValue ¶
func (fp *PodStatus_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PodStatus_FieldTerminalPathArrayItemValue ¶
type PodStatus_FieldTerminalPathArrayItemValue struct { PodStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatus_FieldTerminalPathArrayItemValue) AsContainerStatusesItemValue ¶
func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) AsContainerStatusesItemValue() (*Pod_Status_Container, bool)
func (*PodStatus_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod_Status) bool
Contains returns a boolean indicating if value that is being held is present in given 'Status'
func (*PodStatus_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod_Status as interface{}
func (*PodStatus_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetSingle(source *Pod_Status) (interface{}, bool)
func (*PodStatus_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PodStatus_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PodStatus_FieldTerminalPathArrayOfValues ¶
type PodStatus_FieldTerminalPathArrayOfValues struct { PodStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatus_FieldTerminalPathArrayOfValues) AsContainerStatusesArrayOfValues ¶
func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsContainerStatusesArrayOfValues() ([][]*Pod_Status_Container, bool)
func (*PodStatus_FieldTerminalPathArrayOfValues) AsErrorArrayOfValues ¶ added in v0.12.69
func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsErrorArrayOfValues() ([]string, bool)
func (*PodStatus_FieldTerminalPathArrayOfValues) AsPhaseArrayOfValues ¶
func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) AsPhaseArrayOfValues() ([]Pod_Status_Phase, bool)
func (*PodStatus_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PodStatus_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PodStatus_FieldTerminalPathValue ¶
type PodStatus_FieldTerminalPathValue struct { PodStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PodStatus_FieldTerminalPathValue) AsContainerStatusesValue ¶
func (fpv *PodStatus_FieldTerminalPathValue) AsContainerStatusesValue() ([]*Pod_Status_Container, bool)
func (*PodStatus_FieldTerminalPathValue) AsErrorValue ¶ added in v0.12.69
func (fpv *PodStatus_FieldTerminalPathValue) AsErrorValue() (string, bool)
func (*PodStatus_FieldTerminalPathValue) AsPhaseValue ¶
func (fpv *PodStatus_FieldTerminalPathValue) AsPhaseValue() (Pod_Status_Phase, bool)
func (*PodStatus_FieldTerminalPathValue) CompareWith ¶
func (fpv *PodStatus_FieldTerminalPathValue) CompareWith(source *Pod_Status) (int, bool)
CompareWith compares value in the 'PodStatus_FieldTerminalPathValue' with the value under path in 'Pod_Status'.
func (*PodStatus_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PodStatus_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PodStatus_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PodStatus_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Status' as interface{}
func (*PodStatus_FieldTerminalPathValue) SetTo ¶
func (fpv *PodStatus_FieldTerminalPathValue) SetTo(target **Pod_Status)
SetTo stores value for selected field for object Status
func (*PodStatus_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PodStatus_FieldTerminalPathValue) SetToRaw(target proto.Message)
type Pod_FieldMask ¶
type Pod_FieldMask struct {
Paths []Pod_FieldPath
}
func FullPod_FieldMask ¶
func FullPod_FieldMask() *Pod_FieldMask
func ResourceViewFieldMask ¶
func ResourceViewFieldMask(viewName view.View, extraMask *Pod_FieldMask) *Pod_FieldMask
func (*Pod_FieldMask) AppendPath ¶
func (fieldMask *Pod_FieldMask) AppendPath(path Pod_FieldPath)
func (*Pod_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_FieldMask) FilterInputFields() *Pod_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_FieldMask) GetPaths ¶
func (fieldMask *Pod_FieldMask) GetPaths() []Pod_FieldPath
func (*Pod_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_FieldMask) IsFull ¶
func (fieldMask *Pod_FieldMask) IsFull() bool
func (Pod_FieldMask) Marshal ¶
func (fieldMask Pod_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_FieldMask) MarshalJSON ¶
func (fieldMask Pod_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_FieldMask) PathsCount ¶
func (fieldMask *Pod_FieldMask) PathsCount() int
func (*Pod_FieldMask) Project ¶
func (fieldMask *Pod_FieldMask) Project(source *Pod) *Pod
func (*Pod_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_FieldMask) ProtoMessage()
func (*Pod_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_FieldMask) ProtoReflect() preflect.Message
func (*Pod_FieldMask) Reset ¶
func (fieldMask *Pod_FieldMask) Reset()
func (*Pod_FieldMask) Set ¶
func (fieldMask *Pod_FieldMask) Set(target, source *Pod)
func (*Pod_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_FieldMask) SetRaw ¶
func (fieldMask *Pod_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_FieldMask) Size ¶
func (fieldMask *Pod_FieldMask) Size() int
func (*Pod_FieldMask) String ¶
func (fieldMask *Pod_FieldMask) String() string
func (*Pod_FieldMask) Subtract ¶
func (fieldMask *Pod_FieldMask) Subtract(other *Pod_FieldMask) *Pod_FieldMask
func (*Pod_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_FieldMask) Unmarshal ¶
func (fieldMask *Pod_FieldMask) Unmarshal(data []byte) error
func (*Pod_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_FieldMask) UnmarshalJSON(data []byte) error
type Pod_FieldPath ¶
type Pod_FieldPath interface { gotenobject.FieldPath Selector() Pod_FieldPathSelector Get(source *Pod) []interface{} GetSingle(source *Pod) (interface{}, bool) ClearValue(item *Pod) // Those methods build corresponding Pod_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) Pod_FieldPathValue WithIArrayOfValues(values interface{}) Pod_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) Pod_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPod_FieldPath ¶
func BuildPod_FieldPath(fp gotenobject.RawFieldPath) (Pod_FieldPath, error)
func MustParsePod_FieldPath ¶
func MustParsePod_FieldPath(rawField string) Pod_FieldPath
func ParsePod_FieldPath ¶
func ParsePod_FieldPath(rawField string) (Pod_FieldPath, error)
type Pod_FieldPathArrayItemValue ¶
type Pod_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue Pod_FieldPath ContainsValue(*Pod) bool }
Pod_FieldPathArrayItemValue allows storing single item in Path-specific values for Pod according to their type Present only for array (repeated) types.
func MustParsePod_FieldPathArrayItemValue ¶
func MustParsePod_FieldPathArrayItemValue(pathStr, valueStr string) Pod_FieldPathArrayItemValue
func ParsePod_FieldPathArrayItemValue ¶
func ParsePod_FieldPathArrayItemValue(pathStr, valueStr string) (Pod_FieldPathArrayItemValue, error)
ParsePod_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type Pod_FieldPathArrayOfValues ¶
type Pod_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues Pod_FieldPath }
Pod_FieldPathArrayOfValues allows storing slice of values for Pod fields according to their type
func MustParsePod_FieldPathArrayOfValues ¶
func MustParsePod_FieldPathArrayOfValues(pathStr, valuesStr string) Pod_FieldPathArrayOfValues
func ParsePod_FieldPathArrayOfValues ¶
func ParsePod_FieldPathArrayOfValues(pathStr, valuesStr string) (Pod_FieldPathArrayOfValues, error)
type Pod_FieldPathSelector ¶
type Pod_FieldPathSelector int32
const ( Pod_FieldPathSelectorName Pod_FieldPathSelector = 0 Pod_FieldPathSelectorDisplayName Pod_FieldPathSelector = 1 Pod_FieldPathSelectorMetadata Pod_FieldPathSelector = 2 Pod_FieldPathSelectorSpec Pod_FieldPathSelector = 3 Pod_FieldPathSelectorDistribution Pod_FieldPathSelector = 4 Pod_FieldPathSelectorStatus Pod_FieldPathSelector = 5 )
func (Pod_FieldPathSelector) String ¶
func (s Pod_FieldPathSelector) String() string
type Pod_FieldPathValue ¶
type Pod_FieldPathValue interface { Pod_FieldPath gotenobject.FieldPathValue SetTo(target **Pod) CompareWith(*Pod) (cmp int, comparable bool) }
Pod_FieldPathValue allows storing values for Pod fields according to their type
func MustParsePod_FieldPathValue ¶
func MustParsePod_FieldPathValue(pathStr, valueStr string) Pod_FieldPathValue
func ParsePod_FieldPathValue ¶
func ParsePod_FieldPathValue(pathStr, valueStr string) (Pod_FieldPathValue, error)
type Pod_FieldSubPath ¶
type Pod_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*Pod_FieldSubPath) AsMetadataSubPath ¶
func (fps *Pod_FieldSubPath) AsMetadataSubPath() (ntt_meta.Meta_FieldPath, bool)
func (*Pod_FieldSubPath) AsSpecSubPath ¶
func (fps *Pod_FieldSubPath) AsSpecSubPath() (common.PodSpec_FieldPath, bool)
func (*Pod_FieldSubPath) AsStatusSubPath ¶
func (fps *Pod_FieldSubPath) AsStatusSubPath() (PodStatus_FieldPath, bool)
func (*Pod_FieldSubPath) ClearValue ¶
func (fps *Pod_FieldSubPath) ClearValue(item *Pod)
func (*Pod_FieldSubPath) ClearValueRaw ¶
func (fps *Pod_FieldSubPath) ClearValueRaw(item proto.Message)
func (*Pod_FieldSubPath) Get ¶
func (fps *Pod_FieldSubPath) Get(source *Pod) (values []interface{})
Get returns all values pointed by selected field from source Pod
func (*Pod_FieldSubPath) GetDefault ¶
func (fps *Pod_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*Pod_FieldSubPath) GetRaw ¶
func (fps *Pod_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*Pod_FieldSubPath) GetSingle ¶
func (fps *Pod_FieldSubPath) GetSingle(source *Pod) (interface{}, bool)
GetSingle returns value of selected field from source Pod
func (*Pod_FieldSubPath) GetSingleRaw ¶
func (fps *Pod_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*Pod_FieldSubPath) IsLeaf ¶
func (fps *Pod_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*Pod_FieldSubPath) JSONString ¶
func (fps *Pod_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*Pod_FieldSubPath) Selector ¶
func (fps *Pod_FieldSubPath) Selector() Pod_FieldPathSelector
func (*Pod_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fps *Pod_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*Pod_FieldSubPath) String ¶
func (fps *Pod_FieldSubPath) String() string
String returns path representation in proto convention
func (*Pod_FieldSubPath) WithIArrayItemValue ¶
func (fps *Pod_FieldSubPath) WithIArrayItemValue(value interface{}) Pod_FieldPathArrayItemValue
func (*Pod_FieldSubPath) WithIArrayOfValues ¶
func (fps *Pod_FieldSubPath) WithIArrayOfValues(values interface{}) Pod_FieldPathArrayOfValues
func (*Pod_FieldSubPath) WithIValue ¶
func (fps *Pod_FieldSubPath) WithIValue(value interface{}) Pod_FieldPathValue
func (*Pod_FieldSubPath) WithRawIArrayItemValue ¶
func (fps *Pod_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*Pod_FieldSubPath) WithRawIArrayOfValues ¶
func (fps *Pod_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*Pod_FieldSubPath) WithRawIValue ¶
func (fps *Pod_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type Pod_FieldSubPathArrayItemValue ¶
type Pod_FieldSubPathArrayItemValue struct { Pod_FieldPath // contains filtered or unexported fields }
func (*Pod_FieldSubPathArrayItemValue) AsMetadataPathItemValue ¶
func (fpaivs *Pod_FieldSubPathArrayItemValue) AsMetadataPathItemValue() (ntt_meta.Meta_FieldPathArrayItemValue, bool)
func (*Pod_FieldSubPathArrayItemValue) AsSpecPathItemValue ¶
func (fpaivs *Pod_FieldSubPathArrayItemValue) AsSpecPathItemValue() (common.PodSpec_FieldPathArrayItemValue, bool)
func (*Pod_FieldSubPathArrayItemValue) AsStatusPathItemValue ¶
func (fpaivs *Pod_FieldSubPathArrayItemValue) AsStatusPathItemValue() (PodStatus_FieldPathArrayItemValue, bool)
func (*Pod_FieldSubPathArrayItemValue) ContainsValue ¶
func (fpaivs *Pod_FieldSubPathArrayItemValue) ContainsValue(source *Pod) bool
Contains returns a boolean indicating if value that is being held is present in given 'Pod'
func (*Pod_FieldSubPathArrayItemValue) GetRawItemValue ¶
func (fpaivs *Pod_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type Pod_FieldSubPathArrayOfValues ¶
type Pod_FieldSubPathArrayOfValues struct { Pod_FieldPath // contains filtered or unexported fields }
func (*Pod_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues ¶
func (fpsaov *Pod_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (ntt_meta.Meta_FieldPathArrayOfValues, bool)
func (*Pod_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues ¶
func (fpsaov *Pod_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues() (common.PodSpec_FieldPathArrayOfValues, bool)
func (*Pod_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues ¶
func (fpsaov *Pod_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues() (PodStatus_FieldPathArrayOfValues, bool)
func (*Pod_FieldSubPathArrayOfValues) GetRawValues ¶
func (fpsaov *Pod_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type Pod_FieldSubPathValue ¶
type Pod_FieldSubPathValue struct { Pod_FieldPath // contains filtered or unexported fields }
func (*Pod_FieldSubPathValue) AsMetadataPathValue ¶
func (fpvs *Pod_FieldSubPathValue) AsMetadataPathValue() (ntt_meta.Meta_FieldPathValue, bool)
func (*Pod_FieldSubPathValue) AsSpecPathValue ¶
func (fpvs *Pod_FieldSubPathValue) AsSpecPathValue() (common.PodSpec_FieldPathValue, bool)
func (*Pod_FieldSubPathValue) AsStatusPathValue ¶
func (fpvs *Pod_FieldSubPathValue) AsStatusPathValue() (PodStatus_FieldPathValue, bool)
func (*Pod_FieldSubPathValue) CompareWith ¶
func (fpvs *Pod_FieldSubPathValue) CompareWith(source *Pod) (int, bool)
func (*Pod_FieldSubPathValue) CompareWithRaw ¶
func (fpvs *Pod_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*Pod_FieldSubPathValue) GetRawValue ¶
func (fpvs *Pod_FieldSubPathValue) GetRawValue() interface{}
func (*Pod_FieldSubPathValue) SetTo ¶
func (fpvs *Pod_FieldSubPathValue) SetTo(target **Pod)
func (*Pod_FieldSubPathValue) SetToRaw ¶
func (fpvs *Pod_FieldSubPathValue) SetToRaw(target proto.Message)
type Pod_FieldTerminalPath ¶
type Pod_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*Pod_FieldTerminalPath) ClearValue ¶
func (fp *Pod_FieldTerminalPath) ClearValue(item *Pod)
func (*Pod_FieldTerminalPath) ClearValueRaw ¶
func (fp *Pod_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*Pod_FieldTerminalPath) Get ¶
func (fp *Pod_FieldTerminalPath) Get(source *Pod) (values []interface{})
Get returns all values pointed by specific field from source Pod
func (*Pod_FieldTerminalPath) GetDefault ¶
func (fp *Pod_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*Pod_FieldTerminalPath) GetRaw ¶
func (fp *Pod_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*Pod_FieldTerminalPath) GetSingle ¶
func (fp *Pod_FieldTerminalPath) GetSingle(source *Pod) (interface{}, bool)
GetSingle returns value pointed by specific field of from source Pod
func (*Pod_FieldTerminalPath) GetSingleRaw ¶
func (fp *Pod_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*Pod_FieldTerminalPath) IsLeaf ¶
func (fp *Pod_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*Pod_FieldTerminalPath) JSONString ¶
func (fp *Pod_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*Pod_FieldTerminalPath) Selector ¶
func (fp *Pod_FieldTerminalPath) Selector() Pod_FieldPathSelector
func (*Pod_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *Pod_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*Pod_FieldTerminalPath) String ¶
func (fp *Pod_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*Pod_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *Pod_FieldTerminalPath) WithIArrayItemValue(value interface{}) Pod_FieldPathArrayItemValue
func (*Pod_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *Pod_FieldTerminalPath) WithIArrayOfValues(values interface{}) Pod_FieldPathArrayOfValues
func (*Pod_FieldTerminalPath) WithIValue ¶
func (fp *Pod_FieldTerminalPath) WithIValue(value interface{}) Pod_FieldPathValue
func (*Pod_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *Pod_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*Pod_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *Pod_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*Pod_FieldTerminalPath) WithRawIValue ¶
func (fp *Pod_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type Pod_FieldTerminalPathArrayItemValue ¶
type Pod_FieldTerminalPathArrayItemValue struct { Pod_FieldTerminalPath // contains filtered or unexported fields }
func (*Pod_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *Pod_FieldTerminalPathArrayItemValue) ContainsValue(source *Pod) bool
Contains returns a boolean indicating if value that is being held is present in given 'Pod'
func (*Pod_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object Pod as interface{}
func (*Pod_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetSingle(source *Pod) (interface{}, bool)
func (*Pod_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *Pod_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type Pod_FieldTerminalPathArrayOfValues ¶
type Pod_FieldTerminalPathArrayOfValues struct { Pod_FieldTerminalPath // contains filtered or unexported fields }
func (*Pod_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues() ([]string, bool)
func (*Pod_FieldTerminalPathArrayOfValues) AsDistributionArrayOfValues ¶ added in v0.12.44
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsDistributionArrayOfValues() ([]*distribution.Reference, bool)
func (*Pod_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*ntt_meta.Meta, bool)
func (*Pod_FieldTerminalPathArrayOfValues) AsNameArrayOfValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]*Name, bool)
func (*Pod_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues() ([]*common.PodSpec, bool)
func (*Pod_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*Pod_Status, bool)
func (*Pod_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *Pod_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type Pod_FieldTerminalPathValue ¶
type Pod_FieldTerminalPathValue struct { Pod_FieldTerminalPath // contains filtered or unexported fields }
func (*Pod_FieldTerminalPathValue) AsDisplayNameValue ¶
func (fpv *Pod_FieldTerminalPathValue) AsDisplayNameValue() (string, bool)
func (*Pod_FieldTerminalPathValue) AsDistributionValue ¶ added in v0.12.44
func (fpv *Pod_FieldTerminalPathValue) AsDistributionValue() (*distribution.Reference, bool)
func (*Pod_FieldTerminalPathValue) AsMetadataValue ¶
func (fpv *Pod_FieldTerminalPathValue) AsMetadataValue() (*ntt_meta.Meta, bool)
func (*Pod_FieldTerminalPathValue) AsNameValue ¶
func (fpv *Pod_FieldTerminalPathValue) AsNameValue() (*Name, bool)
func (*Pod_FieldTerminalPathValue) AsSpecValue ¶
func (fpv *Pod_FieldTerminalPathValue) AsSpecValue() (*common.PodSpec, bool)
func (*Pod_FieldTerminalPathValue) AsStatusValue ¶
func (fpv *Pod_FieldTerminalPathValue) AsStatusValue() (*Pod_Status, bool)
func (*Pod_FieldTerminalPathValue) CompareWith ¶
func (fpv *Pod_FieldTerminalPathValue) CompareWith(source *Pod) (int, bool)
CompareWith compares value in the 'Pod_FieldTerminalPathValue' with the value under path in 'Pod'.
func (*Pod_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *Pod_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*Pod_FieldTerminalPathValue) GetRawValue ¶
func (fpv *Pod_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Pod' as interface{}
func (*Pod_FieldTerminalPathValue) SetTo ¶
func (fpv *Pod_FieldTerminalPathValue) SetTo(target **Pod)
SetTo stores value for selected field for object Pod
func (*Pod_FieldTerminalPathValue) SetToRaw ¶
func (fpv *Pod_FieldTerminalPathValue) SetToRaw(target proto.Message)
type Pod_Status ¶
type Pod_Status struct { // Phase is the state of the entire Pod. Phase Pod_Status_Phase `` /* 130-byte string literal not displayed */ // container_statuses lists individual status of the containers. ContainerStatuses []*Pod_Status_Container `` /* 142-byte string literal not displayed */ // Error message if Status.Phase is FAILED. Error string `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty" firestore:"error"` // contains filtered or unexported fields }
Status defines the status of a Pod
func (*Pod_Status) Clone ¶
func (o *Pod_Status) Clone() *Pod_Status
func (*Pod_Status) CloneRaw ¶
func (o *Pod_Status) CloneRaw() gotenobject.GotenObjectExt
func (*Pod_Status) Descriptor ¶
func (*Pod_Status) Descriptor() ([]byte, []int)
Deprecated, Use Pod_Status.ProtoReflect.Descriptor instead.
func (*Pod_Status) GetContainerStatuses ¶
func (m *Pod_Status) GetContainerStatuses() []*Pod_Status_Container
func (*Pod_Status) GetError ¶ added in v0.12.69
func (m *Pod_Status) GetError() string
func (*Pod_Status) GetPhase ¶
func (m *Pod_Status) GetPhase() Pod_Status_Phase
func (*Pod_Status) GotenMessage ¶
func (*Pod_Status) GotenMessage()
func (*Pod_Status) GotenObjectExt ¶
func (o *Pod_Status) GotenObjectExt()
func (*Pod_Status) GotenValidate ¶
func (obj *Pod_Status) GotenValidate() error
func (*Pod_Status) MakeDiffFieldMask ¶
func (o *Pod_Status) MakeDiffFieldMask(other *Pod_Status) *Pod_Status_FieldMask
func (*Pod_Status) MakeFullFieldMask ¶
func (o *Pod_Status) MakeFullFieldMask() *Pod_Status_FieldMask
func (*Pod_Status) MakeRawDiffFieldMask ¶
func (o *Pod_Status) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod_Status) MakeRawFullFieldMask ¶
func (o *Pod_Status) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod_Status) Marshal ¶
func (m *Pod_Status) Marshal() ([]byte, error)
func (*Pod_Status) MarshalJSON ¶
func (m *Pod_Status) MarshalJSON() ([]byte, error)
func (*Pod_Status) Merge ¶
func (o *Pod_Status) Merge(source *Pod_Status)
func (*Pod_Status) MergeRaw ¶
func (o *Pod_Status) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod_Status) ProtoMessage ¶
func (*Pod_Status) ProtoMessage()
func (*Pod_Status) ProtoReflect ¶
func (m *Pod_Status) ProtoReflect() preflect.Message
func (*Pod_Status) Reset ¶
func (m *Pod_Status) Reset()
func (*Pod_Status) SetContainerStatuses ¶
func (m *Pod_Status) SetContainerStatuses(fv []*Pod_Status_Container)
func (*Pod_Status) SetError ¶ added in v0.12.69
func (m *Pod_Status) SetError(fv string)
func (*Pod_Status) SetPhase ¶
func (m *Pod_Status) SetPhase(fv Pod_Status_Phase)
func (*Pod_Status) String ¶
func (m *Pod_Status) String() string
func (*Pod_Status) Unmarshal ¶
func (m *Pod_Status) Unmarshal(b []byte) error
func (*Pod_Status) UnmarshalJSON ¶
func (m *Pod_Status) UnmarshalJSON(data []byte) error
type Pod_StatusPathSelectorContainerStatuses ¶
type Pod_StatusPathSelectorContainerStatuses struct{}
func (Pod_StatusPathSelectorContainerStatuses) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatuses) FieldPath() *PodStatus_FieldTerminalPath
func (Pod_StatusPathSelectorContainerStatuses) Terminated ¶
func (Pod_StatusPathSelectorContainerStatuses) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithArrayOfValues(values [][]*Pod_Status_Container) *PodStatus_FieldTerminalPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatuses) WithItemValue ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithItemValue(value *Pod_Status_Container) *PodStatus_FieldTerminalPathArrayItemValue
func (Pod_StatusPathSelectorContainerStatuses) WithSubArrayItemValue ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainer_FieldPathArrayItemValue) *PodStatus_FieldSubPathArrayItemValue
func (Pod_StatusPathSelectorContainerStatuses) WithSubArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainer_FieldPathArrayOfValues) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatuses) WithSubPath ¶
func (Pod_StatusPathSelectorContainerStatuses) WithSubPath(subPath PodStatusContainer_FieldPath) *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatuses) WithSubValue ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithSubValue(subPathValue PodStatusContainer_FieldPathValue) *PodStatus_FieldSubPathValue
func (Pod_StatusPathSelectorContainerStatuses) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatuses) WithValue(value []*Pod_Status_Container) *PodStatus_FieldTerminalPathValue
type Pod_StatusPathSelectorContainerStatusesName ¶
type Pod_StatusPathSelectorContainerStatusesName struct{}
func (Pod_StatusPathSelectorContainerStatusesName) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesName) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesName) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesName) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesName) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesName) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesRunning ¶
type Pod_StatusPathSelectorContainerStatusesRunning struct{}
func (Pod_StatusPathSelectorContainerStatusesRunning) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesRunning) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesRunning) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesRunning) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesRunning) WithValue(value *Pod_Status_Container_StateRunning) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesRunningStartedAt ¶
type Pod_StatusPathSelectorContainerStatusesRunningStartedAt struct{}
func (Pod_StatusPathSelectorContainerStatusesRunningStartedAt) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesRunningStartedAt) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesRunningStartedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesState ¶
type Pod_StatusPathSelectorContainerStatusesState struct{}
func (Pod_StatusPathSelectorContainerStatusesState) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesState) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesState) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesState) WithArrayOfValues(values []Pod_Status_Container_State) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesState) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesState) WithValue(value Pod_Status_Container_State) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminated ¶
type Pod_StatusPathSelectorContainerStatusesTerminated struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminated) ContainerId ¶
func (Pod_StatusPathSelectorContainerStatusesTerminated) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminated) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminated) FinishedAt ¶
func (Pod_StatusPathSelectorContainerStatusesTerminated) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminated) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedContainerId ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedContainerId struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedContainerId) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedExitCode ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedExitCode struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithArrayOfValues(values []int32) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedExitCode) WithValue(value int32) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedMessage ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedMessage struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedMessage) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedMessage) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedMessage) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedReason ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedReason struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedReason) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedReason) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedReason) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedSignal ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedSignal struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedSignal) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedSignal) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithArrayOfValues(values []int32) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedSignal) WithValue(value int32) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt ¶
type Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt struct{}
func (Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesWaiting ¶
type Pod_StatusPathSelectorContainerStatusesWaiting struct{}
func (Pod_StatusPathSelectorContainerStatusesWaiting) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesWaiting) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesWaiting) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesWaiting) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesWaitingMessage ¶
type Pod_StatusPathSelectorContainerStatusesWaitingMessage struct{}
func (Pod_StatusPathSelectorContainerStatusesWaitingMessage) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesWaitingMessage) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesWaitingMessage) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorContainerStatusesWaitingReason ¶
type Pod_StatusPathSelectorContainerStatusesWaitingReason struct{}
func (Pod_StatusPathSelectorContainerStatusesWaitingReason) FieldPath ¶
func (Pod_StatusPathSelectorContainerStatusesWaitingReason) FieldPath() *PodStatus_FieldSubPath
func (Pod_StatusPathSelectorContainerStatusesWaitingReason) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorContainerStatusesWaitingReason) WithArrayOfValues(values []string) *PodStatus_FieldSubPathArrayOfValues
func (Pod_StatusPathSelectorContainerStatusesWaitingReason) WithValue ¶
func (s Pod_StatusPathSelectorContainerStatusesWaitingReason) WithValue(value string) *PodStatus_FieldSubPathValue
type Pod_StatusPathSelectorError ¶ added in v0.12.69
type Pod_StatusPathSelectorError struct{}
func (Pod_StatusPathSelectorError) FieldPath ¶ added in v0.12.69
func (Pod_StatusPathSelectorError) FieldPath() *PodStatus_FieldTerminalPath
func (Pod_StatusPathSelectorError) WithArrayOfValues ¶ added in v0.12.69
func (s Pod_StatusPathSelectorError) WithArrayOfValues(values []string) *PodStatus_FieldTerminalPathArrayOfValues
func (Pod_StatusPathSelectorError) WithValue ¶ added in v0.12.69
func (s Pod_StatusPathSelectorError) WithValue(value string) *PodStatus_FieldTerminalPathValue
type Pod_StatusPathSelectorPhase ¶
type Pod_StatusPathSelectorPhase struct{}
func (Pod_StatusPathSelectorPhase) FieldPath ¶
func (Pod_StatusPathSelectorPhase) FieldPath() *PodStatus_FieldTerminalPath
func (Pod_StatusPathSelectorPhase) WithArrayOfValues ¶
func (s Pod_StatusPathSelectorPhase) WithArrayOfValues(values []Pod_Status_Phase) *PodStatus_FieldTerminalPathArrayOfValues
func (Pod_StatusPathSelectorPhase) WithValue ¶
func (s Pod_StatusPathSelectorPhase) WithValue(value Pod_Status_Phase) *PodStatus_FieldTerminalPathValue
type Pod_Status_Container ¶
type Pod_Status_Container struct { // name is the name of the container Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" firestore:"name"` State Pod_Status_Container_State `` /* 140-byte string literal not displayed */ Waiting *Pod_Status_Container_StateWaiting `protobuf:"bytes,4,opt,name=waiting,proto3" json:"waiting,omitempty" firestore:"waiting"` Running *Pod_Status_Container_StateRunning `protobuf:"bytes,5,opt,name=running,proto3" json:"running,omitempty" firestore:"running"` Terminated *Pod_Status_Container_StateTerminated `protobuf:"bytes,6,opt,name=terminated,proto3" json:"terminated,omitempty" firestore:"terminated"` // contains filtered or unexported fields }
Container defines status of a Container.
func (*Pod_Status_Container) Clone ¶
func (o *Pod_Status_Container) Clone() *Pod_Status_Container
func (*Pod_Status_Container) CloneRaw ¶
func (o *Pod_Status_Container) CloneRaw() gotenobject.GotenObjectExt
func (*Pod_Status_Container) Descriptor ¶
func (*Pod_Status_Container) Descriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Container.ProtoReflect.Descriptor instead.
func (*Pod_Status_Container) GetName ¶
func (m *Pod_Status_Container) GetName() string
func (*Pod_Status_Container) GetRunning ¶
func (m *Pod_Status_Container) GetRunning() *Pod_Status_Container_StateRunning
func (*Pod_Status_Container) GetState ¶
func (m *Pod_Status_Container) GetState() Pod_Status_Container_State
func (*Pod_Status_Container) GetTerminated ¶
func (m *Pod_Status_Container) GetTerminated() *Pod_Status_Container_StateTerminated
func (*Pod_Status_Container) GetWaiting ¶
func (m *Pod_Status_Container) GetWaiting() *Pod_Status_Container_StateWaiting
func (*Pod_Status_Container) GotenMessage ¶
func (*Pod_Status_Container) GotenMessage()
func (*Pod_Status_Container) GotenObjectExt ¶
func (o *Pod_Status_Container) GotenObjectExt()
func (*Pod_Status_Container) GotenValidate ¶
func (obj *Pod_Status_Container) GotenValidate() error
func (*Pod_Status_Container) MakeDiffFieldMask ¶
func (o *Pod_Status_Container) MakeDiffFieldMask(other *Pod_Status_Container) *Pod_Status_Container_FieldMask
func (*Pod_Status_Container) MakeFullFieldMask ¶
func (o *Pod_Status_Container) MakeFullFieldMask() *Pod_Status_Container_FieldMask
func (*Pod_Status_Container) MakeRawDiffFieldMask ¶
func (o *Pod_Status_Container) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod_Status_Container) MakeRawFullFieldMask ¶
func (o *Pod_Status_Container) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod_Status_Container) Marshal ¶
func (m *Pod_Status_Container) Marshal() ([]byte, error)
func (*Pod_Status_Container) MarshalJSON ¶
func (m *Pod_Status_Container) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container) Merge ¶
func (o *Pod_Status_Container) Merge(source *Pod_Status_Container)
func (*Pod_Status_Container) MergeRaw ¶
func (o *Pod_Status_Container) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod_Status_Container) ProtoMessage ¶
func (*Pod_Status_Container) ProtoMessage()
func (*Pod_Status_Container) ProtoReflect ¶
func (m *Pod_Status_Container) ProtoReflect() preflect.Message
func (*Pod_Status_Container) Reset ¶
func (m *Pod_Status_Container) Reset()
func (*Pod_Status_Container) SetName ¶
func (m *Pod_Status_Container) SetName(fv string)
func (*Pod_Status_Container) SetRunning ¶
func (m *Pod_Status_Container) SetRunning(fv *Pod_Status_Container_StateRunning)
func (*Pod_Status_Container) SetState ¶
func (m *Pod_Status_Container) SetState(fv Pod_Status_Container_State)
func (*Pod_Status_Container) SetTerminated ¶
func (m *Pod_Status_Container) SetTerminated(fv *Pod_Status_Container_StateTerminated)
func (*Pod_Status_Container) SetWaiting ¶
func (m *Pod_Status_Container) SetWaiting(fv *Pod_Status_Container_StateWaiting)
func (*Pod_Status_Container) String ¶
func (m *Pod_Status_Container) String() string
func (*Pod_Status_Container) Unmarshal ¶
func (m *Pod_Status_Container) Unmarshal(b []byte) error
func (*Pod_Status_Container) UnmarshalJSON ¶
func (m *Pod_Status_Container) UnmarshalJSON(data []byte) error
type Pod_Status_ContainerPathSelectorName ¶
type Pod_Status_ContainerPathSelectorName struct{}
func (Pod_Status_ContainerPathSelectorName) FieldPath ¶
func (Pod_Status_ContainerPathSelectorName) FieldPath() *PodStatusContainer_FieldTerminalPath
func (Pod_Status_ContainerPathSelectorName) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorName) WithArrayOfValues(values []string) *PodStatusContainer_FieldTerminalPathArrayOfValues
func (Pod_Status_ContainerPathSelectorName) WithValue ¶
func (s Pod_Status_ContainerPathSelectorName) WithValue(value string) *PodStatusContainer_FieldTerminalPathValue
type Pod_Status_ContainerPathSelectorRunning ¶
type Pod_Status_ContainerPathSelectorRunning struct{}
func (Pod_Status_ContainerPathSelectorRunning) FieldPath ¶
func (Pod_Status_ContainerPathSelectorRunning) FieldPath() *PodStatusContainer_FieldTerminalPath
func (Pod_Status_ContainerPathSelectorRunning) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorRunning) WithArrayOfValues(values []*Pod_Status_Container_StateRunning) *PodStatusContainer_FieldTerminalPathArrayOfValues
func (Pod_Status_ContainerPathSelectorRunning) WithSubArrayItemValue ¶
func (s Pod_Status_ContainerPathSelectorRunning) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainerStateRunning_FieldPathArrayItemValue) *PodStatusContainer_FieldSubPathArrayItemValue
func (Pod_Status_ContainerPathSelectorRunning) WithSubArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorRunning) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateRunning_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorRunning) WithSubPath ¶
func (Pod_Status_ContainerPathSelectorRunning) WithSubPath(subPath PodStatusContainerStateRunning_FieldPath) *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorRunning) WithSubValue ¶
func (s Pod_Status_ContainerPathSelectorRunning) WithSubValue(subPathValue PodStatusContainerStateRunning_FieldPathValue) *PodStatusContainer_FieldSubPathValue
func (Pod_Status_ContainerPathSelectorRunning) WithValue ¶
func (s Pod_Status_ContainerPathSelectorRunning) WithValue(value *Pod_Status_Container_StateRunning) *PodStatusContainer_FieldTerminalPathValue
type Pod_Status_ContainerPathSelectorRunningStartedAt ¶
type Pod_Status_ContainerPathSelectorRunningStartedAt struct{}
func (Pod_Status_ContainerPathSelectorRunningStartedAt) FieldPath ¶
func (Pod_Status_ContainerPathSelectorRunningStartedAt) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorRunningStartedAt) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorRunningStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorRunningStartedAt) WithValue ¶
func (s Pod_Status_ContainerPathSelectorRunningStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorState ¶
type Pod_Status_ContainerPathSelectorState struct{}
func (Pod_Status_ContainerPathSelectorState) FieldPath ¶
func (Pod_Status_ContainerPathSelectorState) FieldPath() *PodStatusContainer_FieldTerminalPath
func (Pod_Status_ContainerPathSelectorState) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorState) WithArrayOfValues(values []Pod_Status_Container_State) *PodStatusContainer_FieldTerminalPathArrayOfValues
func (Pod_Status_ContainerPathSelectorState) WithValue ¶
func (s Pod_Status_ContainerPathSelectorState) WithValue(value Pod_Status_Container_State) *PodStatusContainer_FieldTerminalPathValue
type Pod_Status_ContainerPathSelectorTerminated ¶
type Pod_Status_ContainerPathSelectorTerminated struct{}
func (Pod_Status_ContainerPathSelectorTerminated) ContainerId ¶
func (Pod_Status_ContainerPathSelectorTerminated) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminated) FieldPath() *PodStatusContainer_FieldTerminalPath
func (Pod_Status_ContainerPathSelectorTerminated) FinishedAt ¶
func (Pod_Status_ContainerPathSelectorTerminated) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminated) WithArrayOfValues(values []*Pod_Status_Container_StateTerminated) *PodStatusContainer_FieldTerminalPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminated) WithSubArrayItemValue ¶
func (s Pod_Status_ContainerPathSelectorTerminated) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainerStateTerminated_FieldPathArrayItemValue) *PodStatusContainer_FieldSubPathArrayItemValue
func (Pod_Status_ContainerPathSelectorTerminated) WithSubArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminated) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateTerminated_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminated) WithSubPath ¶
func (Pod_Status_ContainerPathSelectorTerminated) WithSubPath(subPath PodStatusContainerStateTerminated_FieldPath) *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminated) WithSubValue ¶
func (s Pod_Status_ContainerPathSelectorTerminated) WithSubValue(subPathValue PodStatusContainerStateTerminated_FieldPathValue) *PodStatusContainer_FieldSubPathValue
func (Pod_Status_ContainerPathSelectorTerminated) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminated) WithValue(value *Pod_Status_Container_StateTerminated) *PodStatusContainer_FieldTerminalPathValue
type Pod_Status_ContainerPathSelectorTerminatedContainerId ¶
type Pod_Status_ContainerPathSelectorTerminatedContainerId struct{}
func (Pod_Status_ContainerPathSelectorTerminatedContainerId) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedContainerId) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedContainerId) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedContainerId) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedContainerId) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedContainerId) WithValue(value string) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedExitCode ¶
type Pod_Status_ContainerPathSelectorTerminatedExitCode struct{}
func (Pod_Status_ContainerPathSelectorTerminatedExitCode) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedExitCode) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedExitCode) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedExitCode) WithArrayOfValues(values []int32) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedExitCode) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedExitCode) WithValue(value int32) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedFinishedAt ¶
type Pod_Status_ContainerPathSelectorTerminatedFinishedAt struct{}
func (Pod_Status_ContainerPathSelectorTerminatedFinishedAt) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedFinishedAt) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedFinishedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedMessage ¶
type Pod_Status_ContainerPathSelectorTerminatedMessage struct{}
func (Pod_Status_ContainerPathSelectorTerminatedMessage) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedMessage) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedMessage) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedMessage) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedMessage) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedMessage) WithValue(value string) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedReason ¶
type Pod_Status_ContainerPathSelectorTerminatedReason struct{}
func (Pod_Status_ContainerPathSelectorTerminatedReason) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedReason) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedReason) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedReason) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedReason) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedReason) WithValue(value string) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedSignal ¶
type Pod_Status_ContainerPathSelectorTerminatedSignal struct{}
func (Pod_Status_ContainerPathSelectorTerminatedSignal) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedSignal) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedSignal) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedSignal) WithArrayOfValues(values []int32) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedSignal) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedSignal) WithValue(value int32) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorTerminatedStartedAt ¶
type Pod_Status_ContainerPathSelectorTerminatedStartedAt struct{}
func (Pod_Status_ContainerPathSelectorTerminatedStartedAt) FieldPath ¶
func (Pod_Status_ContainerPathSelectorTerminatedStartedAt) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithValue ¶
func (s Pod_Status_ContainerPathSelectorTerminatedStartedAt) WithValue(value *timestamp.Timestamp) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorWaiting ¶
type Pod_Status_ContainerPathSelectorWaiting struct{}
func (Pod_Status_ContainerPathSelectorWaiting) FieldPath ¶
func (Pod_Status_ContainerPathSelectorWaiting) FieldPath() *PodStatusContainer_FieldTerminalPath
func (Pod_Status_ContainerPathSelectorWaiting) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorWaiting) WithArrayOfValues(values []*Pod_Status_Container_StateWaiting) *PodStatusContainer_FieldTerminalPathArrayOfValues
func (Pod_Status_ContainerPathSelectorWaiting) WithSubArrayItemValue ¶
func (s Pod_Status_ContainerPathSelectorWaiting) WithSubArrayItemValue(subPathArrayItemValue PodStatusContainerStateWaiting_FieldPathArrayItemValue) *PodStatusContainer_FieldSubPathArrayItemValue
func (Pod_Status_ContainerPathSelectorWaiting) WithSubArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorWaiting) WithSubArrayOfValues(subPathArrayOfValues PodStatusContainerStateWaiting_FieldPathArrayOfValues) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorWaiting) WithSubPath ¶
func (Pod_Status_ContainerPathSelectorWaiting) WithSubPath(subPath PodStatusContainerStateWaiting_FieldPath) *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorWaiting) WithSubValue ¶
func (s Pod_Status_ContainerPathSelectorWaiting) WithSubValue(subPathValue PodStatusContainerStateWaiting_FieldPathValue) *PodStatusContainer_FieldSubPathValue
func (Pod_Status_ContainerPathSelectorWaiting) WithValue ¶
func (s Pod_Status_ContainerPathSelectorWaiting) WithValue(value *Pod_Status_Container_StateWaiting) *PodStatusContainer_FieldTerminalPathValue
type Pod_Status_ContainerPathSelectorWaitingMessage ¶
type Pod_Status_ContainerPathSelectorWaitingMessage struct{}
func (Pod_Status_ContainerPathSelectorWaitingMessage) FieldPath ¶
func (Pod_Status_ContainerPathSelectorWaitingMessage) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorWaitingMessage) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorWaitingMessage) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorWaitingMessage) WithValue ¶
func (s Pod_Status_ContainerPathSelectorWaitingMessage) WithValue(value string) *PodStatusContainer_FieldSubPathValue
type Pod_Status_ContainerPathSelectorWaitingReason ¶
type Pod_Status_ContainerPathSelectorWaitingReason struct{}
func (Pod_Status_ContainerPathSelectorWaitingReason) FieldPath ¶
func (Pod_Status_ContainerPathSelectorWaitingReason) FieldPath() *PodStatusContainer_FieldSubPath
func (Pod_Status_ContainerPathSelectorWaitingReason) WithArrayOfValues ¶
func (s Pod_Status_ContainerPathSelectorWaitingReason) WithArrayOfValues(values []string) *PodStatusContainer_FieldSubPathArrayOfValues
func (Pod_Status_ContainerPathSelectorWaitingReason) WithValue ¶
func (s Pod_Status_ContainerPathSelectorWaitingReason) WithValue(value string) *PodStatusContainer_FieldSubPathValue
type Pod_Status_Container_FieldMask ¶
type Pod_Status_Container_FieldMask struct {
Paths []PodStatusContainer_FieldPath
}
func FullPod_Status_Container_FieldMask ¶
func FullPod_Status_Container_FieldMask() *Pod_Status_Container_FieldMask
func (*Pod_Status_Container_FieldMask) AppendPath ¶
func (fieldMask *Pod_Status_Container_FieldMask) AppendPath(path PodStatusContainer_FieldPath)
func (*Pod_Status_Container_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_Status_Container_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_Status_Container_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_Status_Container_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_Status_Container_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_Status_Container_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_Status_Container_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_Status_Container_FieldMask) FilterInputFields() *Pod_Status_Container_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_Status_Container_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_Status_Container_FieldMask) GetPaths ¶
func (fieldMask *Pod_Status_Container_FieldMask) GetPaths() []PodStatusContainer_FieldPath
func (*Pod_Status_Container_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_Status_Container_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_Status_Container_FieldMask) IsFull ¶
func (fieldMask *Pod_Status_Container_FieldMask) IsFull() bool
func (Pod_Status_Container_FieldMask) Marshal ¶
func (fieldMask Pod_Status_Container_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_Status_Container_FieldMask) MarshalJSON ¶
func (fieldMask Pod_Status_Container_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_FieldMask) PathsCount ¶
func (fieldMask *Pod_Status_Container_FieldMask) PathsCount() int
func (*Pod_Status_Container_FieldMask) Project ¶
func (fieldMask *Pod_Status_Container_FieldMask) Project(source *Pod_Status_Container) *Pod_Status_Container
func (*Pod_Status_Container_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_Status_Container_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_Status_Container_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_Status_Container_FieldMask) ProtoMessage()
func (*Pod_Status_Container_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_Status_Container_FieldMask) ProtoReflect() preflect.Message
func (*Pod_Status_Container_FieldMask) Reset ¶
func (fieldMask *Pod_Status_Container_FieldMask) Reset()
func (*Pod_Status_Container_FieldMask) Set ¶
func (fieldMask *Pod_Status_Container_FieldMask) Set(target, source *Pod_Status_Container)
func (*Pod_Status_Container_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_Status_Container_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_Status_Container_FieldMask) SetRaw ¶
func (fieldMask *Pod_Status_Container_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_FieldMask) Size ¶
func (fieldMask *Pod_Status_Container_FieldMask) Size() int
func (*Pod_Status_Container_FieldMask) String ¶
func (fieldMask *Pod_Status_Container_FieldMask) String() string
func (*Pod_Status_Container_FieldMask) Subtract ¶
func (fieldMask *Pod_Status_Container_FieldMask) Subtract(other *Pod_Status_Container_FieldMask) *Pod_Status_Container_FieldMask
func (*Pod_Status_Container_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_Status_Container_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_Status_Container_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_Status_Container_FieldMask) Unmarshal ¶
func (fieldMask *Pod_Status_Container_FieldMask) Unmarshal(data []byte) error
func (*Pod_Status_Container_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_Status_Container_FieldMask) UnmarshalJSON(data []byte) error
type Pod_Status_Container_State ¶
type Pod_Status_Container_State int32
TODO remove prefixes when the name conflict issue by gogo is resolved
const ( Pod_Status_Container_STATE_UNSPECIFIED Pod_Status_Container_State = 0 Pod_Status_Container_WAITING Pod_Status_Container_State = 1 Pod_Status_Container_RUNNING Pod_Status_Container_State = 2 Pod_Status_Container_TERMINATED Pod_Status_Container_State = 3 Pod_Status_Container_UNKNOWN Pod_Status_Container_State = 4 )
func (Pod_Status_Container_State) Descriptor ¶
func (Pod_Status_Container_State) Descriptor() preflect.EnumDescriptor
func (Pod_Status_Container_State) Enum ¶
func (x Pod_Status_Container_State) Enum() *Pod_Status_Container_State
func (Pod_Status_Container_State) EnumDescriptor ¶
func (Pod_Status_Container_State) EnumDescriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Container_State.ProtoReflect.Descriptor instead.
func (Pod_Status_Container_State) Number ¶
func (x Pod_Status_Container_State) Number() preflect.EnumNumber
func (Pod_Status_Container_State) String ¶
func (x Pod_Status_Container_State) String() string
func (Pod_Status_Container_State) Type ¶
func (Pod_Status_Container_State) Type() preflect.EnumType
type Pod_Status_Container_StateRunning ¶
type Pod_Status_Container_StateRunning struct { // started_at indicates when the container started at. StartedAt *timestamp.Timestamp `protobuf:"bytes,1,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty" firestore:"startedAt"` // contains filtered or unexported fields }
func (*Pod_Status_Container_StateRunning) Clone ¶
func (o *Pod_Status_Container_StateRunning) Clone() *Pod_Status_Container_StateRunning
func (*Pod_Status_Container_StateRunning) CloneRaw ¶
func (o *Pod_Status_Container_StateRunning) CloneRaw() gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateRunning) Descriptor ¶
func (*Pod_Status_Container_StateRunning) Descriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Container_StateRunning.ProtoReflect.Descriptor instead.
func (*Pod_Status_Container_StateRunning) GetStartedAt ¶
func (m *Pod_Status_Container_StateRunning) GetStartedAt() *timestamp.Timestamp
func (*Pod_Status_Container_StateRunning) GotenMessage ¶
func (*Pod_Status_Container_StateRunning) GotenMessage()
func (*Pod_Status_Container_StateRunning) GotenObjectExt ¶
func (o *Pod_Status_Container_StateRunning) GotenObjectExt()
func (*Pod_Status_Container_StateRunning) GotenValidate ¶
func (obj *Pod_Status_Container_StateRunning) GotenValidate() error
func (*Pod_Status_Container_StateRunning) MakeDiffFieldMask ¶
func (o *Pod_Status_Container_StateRunning) MakeDiffFieldMask(other *Pod_Status_Container_StateRunning) *Pod_Status_Container_StateRunning_FieldMask
func (*Pod_Status_Container_StateRunning) MakeFullFieldMask ¶
func (o *Pod_Status_Container_StateRunning) MakeFullFieldMask() *Pod_Status_Container_StateRunning_FieldMask
func (*Pod_Status_Container_StateRunning) MakeRawDiffFieldMask ¶
func (o *Pod_Status_Container_StateRunning) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod_Status_Container_StateRunning) MakeRawFullFieldMask ¶
func (o *Pod_Status_Container_StateRunning) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod_Status_Container_StateRunning) Marshal ¶
func (m *Pod_Status_Container_StateRunning) Marshal() ([]byte, error)
func (*Pod_Status_Container_StateRunning) MarshalJSON ¶
func (m *Pod_Status_Container_StateRunning) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateRunning) Merge ¶
func (o *Pod_Status_Container_StateRunning) Merge(source *Pod_Status_Container_StateRunning)
func (*Pod_Status_Container_StateRunning) MergeRaw ¶
func (o *Pod_Status_Container_StateRunning) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateRunning) ProtoMessage ¶
func (*Pod_Status_Container_StateRunning) ProtoMessage()
func (*Pod_Status_Container_StateRunning) ProtoReflect ¶
func (m *Pod_Status_Container_StateRunning) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateRunning) Reset ¶
func (m *Pod_Status_Container_StateRunning) Reset()
func (*Pod_Status_Container_StateRunning) SetStartedAt ¶
func (m *Pod_Status_Container_StateRunning) SetStartedAt(fv *timestamp.Timestamp)
func (*Pod_Status_Container_StateRunning) String ¶
func (m *Pod_Status_Container_StateRunning) String() string
func (*Pod_Status_Container_StateRunning) Unmarshal ¶
func (m *Pod_Status_Container_StateRunning) Unmarshal(b []byte) error
func (*Pod_Status_Container_StateRunning) UnmarshalJSON ¶
func (m *Pod_Status_Container_StateRunning) UnmarshalJSON(data []byte) error
type Pod_Status_Container_StateRunningPathSelectorStartedAt ¶
type Pod_Status_Container_StateRunningPathSelectorStartedAt struct{}
func (Pod_Status_Container_StateRunningPathSelectorStartedAt) WithArrayOfValues ¶
func (s Pod_Status_Container_StateRunningPathSelectorStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateRunning_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateRunning_FieldMask ¶
type Pod_Status_Container_StateRunning_FieldMask struct {
Paths []PodStatusContainerStateRunning_FieldPath
}
func FullPod_Status_Container_StateRunning_FieldMask ¶
func FullPod_Status_Container_StateRunning_FieldMask() *Pod_Status_Container_StateRunning_FieldMask
func (*Pod_Status_Container_StateRunning_FieldMask) AppendPath ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) AppendPath(path PodStatusContainerStateRunning_FieldPath)
func (*Pod_Status_Container_StateRunning_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_Status_Container_StateRunning_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_Status_Container_StateRunning_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_Status_Container_StateRunning_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) FilterInputFields() *Pod_Status_Container_StateRunning_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_Status_Container_StateRunning_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_Status_Container_StateRunning_FieldMask) GetPaths ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) GetPaths() []PodStatusContainerStateRunning_FieldPath
func (*Pod_Status_Container_StateRunning_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_Status_Container_StateRunning_FieldMask) IsFull ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) IsFull() bool
func (Pod_Status_Container_StateRunning_FieldMask) Marshal ¶
func (fieldMask Pod_Status_Container_StateRunning_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_Status_Container_StateRunning_FieldMask) MarshalJSON ¶
func (fieldMask Pod_Status_Container_StateRunning_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateRunning_FieldMask) PathsCount ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) PathsCount() int
func (*Pod_Status_Container_StateRunning_FieldMask) Project ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Project(source *Pod_Status_Container_StateRunning) *Pod_Status_Container_StateRunning
func (*Pod_Status_Container_StateRunning_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateRunning_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProtoMessage()
func (*Pod_Status_Container_StateRunning_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateRunning_FieldMask) Reset ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Reset()
func (*Pod_Status_Container_StateRunning_FieldMask) Set ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Set(target, source *Pod_Status_Container_StateRunning)
func (*Pod_Status_Container_StateRunning_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_Status_Container_StateRunning_FieldMask) SetRaw ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateRunning_FieldMask) Size ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Size() int
func (*Pod_Status_Container_StateRunning_FieldMask) String ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) String() string
func (*Pod_Status_Container_StateRunning_FieldMask) Subtract ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Subtract(other *Pod_Status_Container_StateRunning_FieldMask) *Pod_Status_Container_StateRunning_FieldMask
func (*Pod_Status_Container_StateRunning_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_Status_Container_StateRunning_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_Status_Container_StateRunning_FieldMask) Unmarshal ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) Unmarshal(data []byte) error
func (*Pod_Status_Container_StateRunning_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_Status_Container_StateRunning_FieldMask) UnmarshalJSON(data []byte) error
type Pod_Status_Container_StateTerminated ¶
type Pod_Status_Container_StateTerminated struct { // exit_code is the exist code that the process returns at the end. ExitCode int32 `protobuf:"varint,1,opt,name=exit_code,json=exitCode,proto3" json:"exit_code,omitempty" firestore:"exitCode"` // signal is the signal used to kill the process. Signal int32 `protobuf:"varint,2,opt,name=signal,proto3" json:"signal,omitempty" firestore:"signal"` // reason explains why the container is terminated. Reason string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty" firestore:"reason"` // message has detailed human readable message. Message string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty" firestore:"message"` // started_at indicates when the container started at. StartedAt *timestamp.Timestamp `protobuf:"bytes,5,opt,name=started_at,json=startedAt,proto3" json:"started_at,omitempty" firestore:"startedAt"` // finished_at indicates when the container exited at. FinishedAt *timestamp.Timestamp `protobuf:"bytes,6,opt,name=finished_at,json=finishedAt,proto3" json:"finished_at,omitempty" firestore:"finishedAt"` // containerID is the ID of the container when it was running. ContainerId string `protobuf:"bytes,7,opt,name=container_id,json=containerId,proto3" json:"container_id,omitempty" firestore:"containerId"` // contains filtered or unexported fields }
func (*Pod_Status_Container_StateTerminated) Clone ¶
func (o *Pod_Status_Container_StateTerminated) Clone() *Pod_Status_Container_StateTerminated
func (*Pod_Status_Container_StateTerminated) CloneRaw ¶
func (o *Pod_Status_Container_StateTerminated) CloneRaw() gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateTerminated) Descriptor ¶
func (*Pod_Status_Container_StateTerminated) Descriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Container_StateTerminated.ProtoReflect.Descriptor instead.
func (*Pod_Status_Container_StateTerminated) GetContainerId ¶
func (m *Pod_Status_Container_StateTerminated) GetContainerId() string
func (*Pod_Status_Container_StateTerminated) GetExitCode ¶
func (m *Pod_Status_Container_StateTerminated) GetExitCode() int32
func (*Pod_Status_Container_StateTerminated) GetFinishedAt ¶
func (m *Pod_Status_Container_StateTerminated) GetFinishedAt() *timestamp.Timestamp
func (*Pod_Status_Container_StateTerminated) GetMessage ¶
func (m *Pod_Status_Container_StateTerminated) GetMessage() string
func (*Pod_Status_Container_StateTerminated) GetReason ¶
func (m *Pod_Status_Container_StateTerminated) GetReason() string
func (*Pod_Status_Container_StateTerminated) GetSignal ¶
func (m *Pod_Status_Container_StateTerminated) GetSignal() int32
func (*Pod_Status_Container_StateTerminated) GetStartedAt ¶
func (m *Pod_Status_Container_StateTerminated) GetStartedAt() *timestamp.Timestamp
func (*Pod_Status_Container_StateTerminated) GotenMessage ¶
func (*Pod_Status_Container_StateTerminated) GotenMessage()
func (*Pod_Status_Container_StateTerminated) GotenObjectExt ¶
func (o *Pod_Status_Container_StateTerminated) GotenObjectExt()
func (*Pod_Status_Container_StateTerminated) GotenValidate ¶
func (obj *Pod_Status_Container_StateTerminated) GotenValidate() error
func (*Pod_Status_Container_StateTerminated) MakeDiffFieldMask ¶
func (o *Pod_Status_Container_StateTerminated) MakeDiffFieldMask(other *Pod_Status_Container_StateTerminated) *Pod_Status_Container_StateTerminated_FieldMask
func (*Pod_Status_Container_StateTerminated) MakeFullFieldMask ¶
func (o *Pod_Status_Container_StateTerminated) MakeFullFieldMask() *Pod_Status_Container_StateTerminated_FieldMask
func (*Pod_Status_Container_StateTerminated) MakeRawDiffFieldMask ¶
func (o *Pod_Status_Container_StateTerminated) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod_Status_Container_StateTerminated) MakeRawFullFieldMask ¶
func (o *Pod_Status_Container_StateTerminated) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod_Status_Container_StateTerminated) Marshal ¶
func (m *Pod_Status_Container_StateTerminated) Marshal() ([]byte, error)
func (*Pod_Status_Container_StateTerminated) MarshalJSON ¶
func (m *Pod_Status_Container_StateTerminated) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateTerminated) Merge ¶
func (o *Pod_Status_Container_StateTerminated) Merge(source *Pod_Status_Container_StateTerminated)
func (*Pod_Status_Container_StateTerminated) MergeRaw ¶
func (o *Pod_Status_Container_StateTerminated) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateTerminated) ProtoMessage ¶
func (*Pod_Status_Container_StateTerminated) ProtoMessage()
func (*Pod_Status_Container_StateTerminated) ProtoReflect ¶
func (m *Pod_Status_Container_StateTerminated) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateTerminated) Reset ¶
func (m *Pod_Status_Container_StateTerminated) Reset()
func (*Pod_Status_Container_StateTerminated) SetContainerId ¶
func (m *Pod_Status_Container_StateTerminated) SetContainerId(fv string)
func (*Pod_Status_Container_StateTerminated) SetExitCode ¶
func (m *Pod_Status_Container_StateTerminated) SetExitCode(fv int32)
func (*Pod_Status_Container_StateTerminated) SetFinishedAt ¶
func (m *Pod_Status_Container_StateTerminated) SetFinishedAt(fv *timestamp.Timestamp)
func (*Pod_Status_Container_StateTerminated) SetMessage ¶
func (m *Pod_Status_Container_StateTerminated) SetMessage(fv string)
func (*Pod_Status_Container_StateTerminated) SetReason ¶
func (m *Pod_Status_Container_StateTerminated) SetReason(fv string)
func (*Pod_Status_Container_StateTerminated) SetSignal ¶
func (m *Pod_Status_Container_StateTerminated) SetSignal(fv int32)
func (*Pod_Status_Container_StateTerminated) SetStartedAt ¶
func (m *Pod_Status_Container_StateTerminated) SetStartedAt(fv *timestamp.Timestamp)
func (*Pod_Status_Container_StateTerminated) String ¶
func (m *Pod_Status_Container_StateTerminated) String() string
func (*Pod_Status_Container_StateTerminated) Unmarshal ¶
func (m *Pod_Status_Container_StateTerminated) Unmarshal(b []byte) error
func (*Pod_Status_Container_StateTerminated) UnmarshalJSON ¶
func (m *Pod_Status_Container_StateTerminated) UnmarshalJSON(data []byte) error
type Pod_Status_Container_StateTerminatedPathSelectorContainerId ¶
type Pod_Status_Container_StateTerminatedPathSelectorContainerId struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorContainerId) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorContainerId) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateTerminatedPathSelectorExitCode ¶
type Pod_Status_Container_StateTerminatedPathSelectorExitCode struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorExitCode) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorExitCode) WithArrayOfValues(values []int32) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateTerminatedPathSelectorFinishedAt ¶
type Pod_Status_Container_StateTerminatedPathSelectorFinishedAt struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorFinishedAt) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorFinishedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateTerminatedPathSelectorMessage ¶
type Pod_Status_Container_StateTerminatedPathSelectorMessage struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorMessage) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorMessage) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateTerminatedPathSelectorReason ¶
type Pod_Status_Container_StateTerminatedPathSelectorReason struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorReason) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorReason) WithArrayOfValues(values []string) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
func (Pod_Status_Container_StateTerminatedPathSelectorReason) WithValue ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorReason) WithValue(value string) *PodStatusContainerStateTerminated_FieldTerminalPathValue
type Pod_Status_Container_StateTerminatedPathSelectorSignal ¶
type Pod_Status_Container_StateTerminatedPathSelectorSignal struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorSignal) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorSignal) WithArrayOfValues(values []int32) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
func (Pod_Status_Container_StateTerminatedPathSelectorSignal) WithValue ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorSignal) WithValue(value int32) *PodStatusContainerStateTerminated_FieldTerminalPathValue
type Pod_Status_Container_StateTerminatedPathSelectorStartedAt ¶
type Pod_Status_Container_StateTerminatedPathSelectorStartedAt struct{}
func (Pod_Status_Container_StateTerminatedPathSelectorStartedAt) WithArrayOfValues ¶
func (s Pod_Status_Container_StateTerminatedPathSelectorStartedAt) WithArrayOfValues(values []*timestamp.Timestamp) *PodStatusContainerStateTerminated_FieldTerminalPathArrayOfValues
type Pod_Status_Container_StateTerminated_FieldMask ¶
type Pod_Status_Container_StateTerminated_FieldMask struct {
Paths []PodStatusContainerStateTerminated_FieldPath
}
func FullPod_Status_Container_StateTerminated_FieldMask ¶
func FullPod_Status_Container_StateTerminated_FieldMask() *Pod_Status_Container_StateTerminated_FieldMask
func (*Pod_Status_Container_StateTerminated_FieldMask) AppendPath ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) AppendPath(path PodStatusContainerStateTerminated_FieldPath)
func (*Pod_Status_Container_StateTerminated_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_Status_Container_StateTerminated_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_Status_Container_StateTerminated_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_Status_Container_StateTerminated_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) FilterInputFields() *Pod_Status_Container_StateTerminated_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_Status_Container_StateTerminated_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_Status_Container_StateTerminated_FieldMask) GetPaths ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) GetPaths() []PodStatusContainerStateTerminated_FieldPath
func (*Pod_Status_Container_StateTerminated_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_Status_Container_StateTerminated_FieldMask) IsFull ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) IsFull() bool
func (Pod_Status_Container_StateTerminated_FieldMask) Marshal ¶
func (fieldMask Pod_Status_Container_StateTerminated_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_Status_Container_StateTerminated_FieldMask) MarshalJSON ¶
func (fieldMask Pod_Status_Container_StateTerminated_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateTerminated_FieldMask) PathsCount ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) PathsCount() int
func (*Pod_Status_Container_StateTerminated_FieldMask) Project ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Project(source *Pod_Status_Container_StateTerminated) *Pod_Status_Container_StateTerminated
func (*Pod_Status_Container_StateTerminated_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateTerminated_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProtoMessage()
func (*Pod_Status_Container_StateTerminated_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateTerminated_FieldMask) Reset ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Reset()
func (*Pod_Status_Container_StateTerminated_FieldMask) Set ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Set(target, source *Pod_Status_Container_StateTerminated)
func (*Pod_Status_Container_StateTerminated_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_Status_Container_StateTerminated_FieldMask) SetRaw ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateTerminated_FieldMask) Size ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Size() int
func (*Pod_Status_Container_StateTerminated_FieldMask) String ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) String() string
func (*Pod_Status_Container_StateTerminated_FieldMask) Subtract ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Subtract(other *Pod_Status_Container_StateTerminated_FieldMask) *Pod_Status_Container_StateTerminated_FieldMask
func (*Pod_Status_Container_StateTerminated_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_Status_Container_StateTerminated_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_Status_Container_StateTerminated_FieldMask) Unmarshal ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) Unmarshal(data []byte) error
func (*Pod_Status_Container_StateTerminated_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_Status_Container_StateTerminated_FieldMask) UnmarshalJSON(data []byte) error
type Pod_Status_Container_StateWaiting ¶
type Pod_Status_Container_StateWaiting struct { // reason explains why the container is waiting now. Reason string `protobuf:"bytes,1,opt,name=reason,proto3" json:"reason,omitempty" firestore:"reason"` // message gives a human readable message that explains the state. Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty" firestore:"message"` // contains filtered or unexported fields }
func (*Pod_Status_Container_StateWaiting) Clone ¶
func (o *Pod_Status_Container_StateWaiting) Clone() *Pod_Status_Container_StateWaiting
func (*Pod_Status_Container_StateWaiting) CloneRaw ¶
func (o *Pod_Status_Container_StateWaiting) CloneRaw() gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateWaiting) Descriptor ¶
func (*Pod_Status_Container_StateWaiting) Descriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Container_StateWaiting.ProtoReflect.Descriptor instead.
func (*Pod_Status_Container_StateWaiting) GetMessage ¶
func (m *Pod_Status_Container_StateWaiting) GetMessage() string
func (*Pod_Status_Container_StateWaiting) GetReason ¶
func (m *Pod_Status_Container_StateWaiting) GetReason() string
func (*Pod_Status_Container_StateWaiting) GotenMessage ¶
func (*Pod_Status_Container_StateWaiting) GotenMessage()
func (*Pod_Status_Container_StateWaiting) GotenObjectExt ¶
func (o *Pod_Status_Container_StateWaiting) GotenObjectExt()
func (*Pod_Status_Container_StateWaiting) GotenValidate ¶
func (obj *Pod_Status_Container_StateWaiting) GotenValidate() error
func (*Pod_Status_Container_StateWaiting) MakeDiffFieldMask ¶
func (o *Pod_Status_Container_StateWaiting) MakeDiffFieldMask(other *Pod_Status_Container_StateWaiting) *Pod_Status_Container_StateWaiting_FieldMask
func (*Pod_Status_Container_StateWaiting) MakeFullFieldMask ¶
func (o *Pod_Status_Container_StateWaiting) MakeFullFieldMask() *Pod_Status_Container_StateWaiting_FieldMask
func (*Pod_Status_Container_StateWaiting) MakeRawDiffFieldMask ¶
func (o *Pod_Status_Container_StateWaiting) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*Pod_Status_Container_StateWaiting) MakeRawFullFieldMask ¶
func (o *Pod_Status_Container_StateWaiting) MakeRawFullFieldMask() gotenobject.FieldMask
func (*Pod_Status_Container_StateWaiting) Marshal ¶
func (m *Pod_Status_Container_StateWaiting) Marshal() ([]byte, error)
func (*Pod_Status_Container_StateWaiting) MarshalJSON ¶
func (m *Pod_Status_Container_StateWaiting) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateWaiting) Merge ¶
func (o *Pod_Status_Container_StateWaiting) Merge(source *Pod_Status_Container_StateWaiting)
func (*Pod_Status_Container_StateWaiting) MergeRaw ¶
func (o *Pod_Status_Container_StateWaiting) MergeRaw(source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateWaiting) ProtoMessage ¶
func (*Pod_Status_Container_StateWaiting) ProtoMessage()
func (*Pod_Status_Container_StateWaiting) ProtoReflect ¶
func (m *Pod_Status_Container_StateWaiting) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateWaiting) Reset ¶
func (m *Pod_Status_Container_StateWaiting) Reset()
func (*Pod_Status_Container_StateWaiting) SetMessage ¶
func (m *Pod_Status_Container_StateWaiting) SetMessage(fv string)
func (*Pod_Status_Container_StateWaiting) SetReason ¶
func (m *Pod_Status_Container_StateWaiting) SetReason(fv string)
func (*Pod_Status_Container_StateWaiting) String ¶
func (m *Pod_Status_Container_StateWaiting) String() string
func (*Pod_Status_Container_StateWaiting) Unmarshal ¶
func (m *Pod_Status_Container_StateWaiting) Unmarshal(b []byte) error
func (*Pod_Status_Container_StateWaiting) UnmarshalJSON ¶
func (m *Pod_Status_Container_StateWaiting) UnmarshalJSON(data []byte) error
type Pod_Status_Container_StateWaitingPathSelectorMessage ¶
type Pod_Status_Container_StateWaitingPathSelectorMessage struct{}
func (Pod_Status_Container_StateWaitingPathSelectorMessage) WithArrayOfValues ¶
func (s Pod_Status_Container_StateWaitingPathSelectorMessage) WithArrayOfValues(values []string) *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues
func (Pod_Status_Container_StateWaitingPathSelectorMessage) WithValue ¶
func (s Pod_Status_Container_StateWaitingPathSelectorMessage) WithValue(value string) *PodStatusContainerStateWaiting_FieldTerminalPathValue
type Pod_Status_Container_StateWaitingPathSelectorReason ¶
type Pod_Status_Container_StateWaitingPathSelectorReason struct{}
func (Pod_Status_Container_StateWaitingPathSelectorReason) WithArrayOfValues ¶
func (s Pod_Status_Container_StateWaitingPathSelectorReason) WithArrayOfValues(values []string) *PodStatusContainerStateWaiting_FieldTerminalPathArrayOfValues
func (Pod_Status_Container_StateWaitingPathSelectorReason) WithValue ¶
func (s Pod_Status_Container_StateWaitingPathSelectorReason) WithValue(value string) *PodStatusContainerStateWaiting_FieldTerminalPathValue
type Pod_Status_Container_StateWaiting_FieldMask ¶
type Pod_Status_Container_StateWaiting_FieldMask struct {
Paths []PodStatusContainerStateWaiting_FieldPath
}
func FullPod_Status_Container_StateWaiting_FieldMask ¶
func FullPod_Status_Container_StateWaiting_FieldMask() *Pod_Status_Container_StateWaiting_FieldMask
func (*Pod_Status_Container_StateWaiting_FieldMask) AppendPath ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) AppendPath(path PodStatusContainerStateWaiting_FieldPath)
func (*Pod_Status_Container_StateWaiting_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_Status_Container_StateWaiting_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_Status_Container_StateWaiting_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_Status_Container_StateWaiting_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) FilterInputFields() *Pod_Status_Container_StateWaiting_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_Status_Container_StateWaiting_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_Status_Container_StateWaiting_FieldMask) GetPaths ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) GetPaths() []PodStatusContainerStateWaiting_FieldPath
func (*Pod_Status_Container_StateWaiting_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_Status_Container_StateWaiting_FieldMask) IsFull ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) IsFull() bool
func (Pod_Status_Container_StateWaiting_FieldMask) Marshal ¶
func (fieldMask Pod_Status_Container_StateWaiting_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_Status_Container_StateWaiting_FieldMask) MarshalJSON ¶
func (fieldMask Pod_Status_Container_StateWaiting_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_Status_Container_StateWaiting_FieldMask) PathsCount ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) PathsCount() int
func (*Pod_Status_Container_StateWaiting_FieldMask) Project ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Project(source *Pod_Status_Container_StateWaiting) *Pod_Status_Container_StateWaiting
func (*Pod_Status_Container_StateWaiting_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_Status_Container_StateWaiting_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProtoMessage()
func (*Pod_Status_Container_StateWaiting_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ProtoReflect() preflect.Message
func (*Pod_Status_Container_StateWaiting_FieldMask) Reset ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Reset()
func (*Pod_Status_Container_StateWaiting_FieldMask) Set ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Set(target, source *Pod_Status_Container_StateWaiting)
func (*Pod_Status_Container_StateWaiting_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_Status_Container_StateWaiting_FieldMask) SetRaw ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_Status_Container_StateWaiting_FieldMask) Size ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Size() int
func (*Pod_Status_Container_StateWaiting_FieldMask) String ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) String() string
func (*Pod_Status_Container_StateWaiting_FieldMask) Subtract ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Subtract(other *Pod_Status_Container_StateWaiting_FieldMask) *Pod_Status_Container_StateWaiting_FieldMask
func (*Pod_Status_Container_StateWaiting_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_Status_Container_StateWaiting_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_Status_Container_StateWaiting_FieldMask) Unmarshal ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) Unmarshal(data []byte) error
func (*Pod_Status_Container_StateWaiting_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_Status_Container_StateWaiting_FieldMask) UnmarshalJSON(data []byte) error
type Pod_Status_FieldMask ¶
type Pod_Status_FieldMask struct {
Paths []PodStatus_FieldPath
}
func FullPod_Status_FieldMask ¶
func FullPod_Status_FieldMask() *Pod_Status_FieldMask
func (*Pod_Status_FieldMask) AppendPath ¶
func (fieldMask *Pod_Status_FieldMask) AppendPath(path PodStatus_FieldPath)
func (*Pod_Status_FieldMask) AppendRawPath ¶
func (fieldMask *Pod_Status_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*Pod_Status_FieldMask) DecodeFirestore ¶
func (fieldMask *Pod_Status_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*Pod_Status_FieldMask) EncodeFirestore ¶
func (fieldMask *Pod_Status_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*Pod_Status_FieldMask) FilterInputFields ¶
func (fieldMask *Pod_Status_FieldMask) FilterInputFields() *Pod_Status_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*Pod_Status_FieldMask) FromProtoFieldMask ¶
func (fieldMask *Pod_Status_FieldMask) FromProtoFieldMask(protoFieldMask *fieldmaskpb.FieldMask) error
func (*Pod_Status_FieldMask) GetPaths ¶
func (fieldMask *Pod_Status_FieldMask) GetPaths() []PodStatus_FieldPath
func (*Pod_Status_FieldMask) GetRawPaths ¶
func (fieldMask *Pod_Status_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*Pod_Status_FieldMask) IsFull ¶
func (fieldMask *Pod_Status_FieldMask) IsFull() bool
func (Pod_Status_FieldMask) Marshal ¶
func (fieldMask Pod_Status_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (Pod_Status_FieldMask) MarshalJSON ¶
func (fieldMask Pod_Status_FieldMask) MarshalJSON() ([]byte, error)
func (*Pod_Status_FieldMask) PathsCount ¶
func (fieldMask *Pod_Status_FieldMask) PathsCount() int
func (*Pod_Status_FieldMask) Project ¶
func (fieldMask *Pod_Status_FieldMask) Project(source *Pod_Status) *Pod_Status
func (*Pod_Status_FieldMask) ProjectRaw ¶
func (fieldMask *Pod_Status_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*Pod_Status_FieldMask) ProtoMessage ¶
func (fieldMask *Pod_Status_FieldMask) ProtoMessage()
func (*Pod_Status_FieldMask) ProtoReflect ¶
func (fieldMask *Pod_Status_FieldMask) ProtoReflect() preflect.Message
func (*Pod_Status_FieldMask) Reset ¶
func (fieldMask *Pod_Status_FieldMask) Reset()
func (*Pod_Status_FieldMask) Set ¶
func (fieldMask *Pod_Status_FieldMask) Set(target, source *Pod_Status)
func (*Pod_Status_FieldMask) SetFromCliFlag ¶
func (fieldMask *Pod_Status_FieldMask) SetFromCliFlag(raw string) error
func (*Pod_Status_FieldMask) SetRaw ¶
func (fieldMask *Pod_Status_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*Pod_Status_FieldMask) Size ¶
func (fieldMask *Pod_Status_FieldMask) Size() int
func (*Pod_Status_FieldMask) String ¶
func (fieldMask *Pod_Status_FieldMask) String() string
func (*Pod_Status_FieldMask) Subtract ¶
func (fieldMask *Pod_Status_FieldMask) Subtract(other *Pod_Status_FieldMask) *Pod_Status_FieldMask
func (*Pod_Status_FieldMask) SubtractRaw ¶
func (fieldMask *Pod_Status_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*Pod_Status_FieldMask) ToProtoFieldMask ¶
func (fieldMask *Pod_Status_FieldMask) ToProtoFieldMask() *fieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*Pod_Status_FieldMask) Unmarshal ¶
func (fieldMask *Pod_Status_FieldMask) Unmarshal(data []byte) error
func (*Pod_Status_FieldMask) UnmarshalJSON ¶
func (fieldMask *Pod_Status_FieldMask) UnmarshalJSON(data []byte) error
type Pod_Status_Phase ¶
type Pod_Status_Phase int32
PodPhase is states of Pod. TODO remove prefixes when the name conflict issue by gogo is resolved
const ( // PhaseUnspecified means the Pod is in unknown state. This state is // usually not used. Pod_Status_PHASE_UNSPECIFIED Pod_Status_Phase = 0 // PhasePending is used when the Pod is accepted by the system and it's // under processing to be launched. Pod_Status_PENDING Pod_Status_Phase = 1 // PhaseRunning indicates all the containers supposed to be running are up // and running. Pod_Status_RUNNING Pod_Status_Phase = 2 // PhaseSucceeded indicates the Pod is terminated however the exit codes // of the containers are non-error numbers. Pod_Status_SUCCEEDED Pod_Status_Phase = 3 // PhaseFailed is used when the Pod encountered an issue and some or all // of the container are not running. Pod_Status_FAILED Pod_Status_Phase = 4 // PhaseUnknown is used when the assigned node doesn't respond anymore Pod_Status_UNKNOWN Pod_Status_Phase = 5 )
func (Pod_Status_Phase) Descriptor ¶
func (Pod_Status_Phase) Descriptor() preflect.EnumDescriptor
func (Pod_Status_Phase) Enum ¶
func (x Pod_Status_Phase) Enum() *Pod_Status_Phase
func (Pod_Status_Phase) EnumDescriptor ¶
func (Pod_Status_Phase) EnumDescriptor() ([]byte, []int)
Deprecated, Use Pod_Status_Phase.ProtoReflect.Descriptor instead.
func (Pod_Status_Phase) Number ¶
func (x Pod_Status_Phase) Number() preflect.EnumNumber
func (Pod_Status_Phase) String ¶
func (x Pod_Status_Phase) String() string
func (Pod_Status_Phase) Type ¶
func (Pod_Status_Phase) Type() preflect.EnumType
type QueryResultChange ¶
type QueryResultChange struct { Changes []*PodChange 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 (qr *QueryResultChange) GetResults() gotenresource.ResourceChangeList
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 { Pods []*Pod PrevPageCursor *PagerCursor NextPageCursor *PagerCursor TotalResultsCount int32 CurrentOffset int32 }
func (*QueryResultSnapshot) GetNextPageCursor ¶
func (qr *QueryResultSnapshot) GetNextPageCursor() gotenresource.Cursor
func (*QueryResultSnapshot) GetPagingInfo ¶ added in v0.10.1
func (qr *QueryResultSnapshot) GetPagingInfo() (totalCount, offset int32)
func (*QueryResultSnapshot) GetPrevPageCursor ¶
func (qr *QueryResultSnapshot) GetPrevPageCursor() gotenresource.Cursor
func (*QueryResultSnapshot) GetResults ¶
func (qr *QueryResultSnapshot) GetResults() gotenresource.ResourceList
func (*QueryResultSnapshot) SetCursors ¶
func (qr *QueryResultSnapshot) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)
func (*QueryResultSnapshot) SetPagingInfo ¶ added in v0.10.1
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 MustParseReference ¶
func ParseReference ¶
func (*Reference) ClearCached ¶
func (ref *Reference) ClearCached()
func (*Reference) FullyQualifiedName ¶
func (*Reference) GetIParentName ¶ added in v0.8.0
func (ref *Reference) GetIParentName() gotenresource.Name
func (*Reference) GetIUnderlyingParentName ¶ added in v0.8.0
func (ref *Reference) GetIUnderlyingParentName() gotenresource.Name
func (*Reference) GetIdParts ¶
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 ¶
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*Reference) IsFullyQualified ¶
func (*Reference) IsSpecified ¶
func (*Reference) Matches ¶
Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (*Reference) ParseProtoString ¶
func (*Reference) ProtoString ¶
func (*Reference) ResolveRaw ¶
func (ref *Reference) ResolveRaw(res gotenresource.Resource) error
func (*Reference) SetFromCliFlag ¶
implement CustomTypeCliValue method
type WatchQuery ¶
type WatchQuery struct { ListQuery WatchType watch_type.WatchType ChunkSize int ResumeToken string StartingTime *timestamppb.Timestamp }
func (*WatchQuery) GetMaximumChunkSize ¶
func (q *WatchQuery) GetMaximumChunkSize() int
func (*WatchQuery) GetResumeToken ¶
func (q *WatchQuery) GetResumeToken() string
func (*WatchQuery) GetStartingTime ¶ added in v0.9.0
func (q *WatchQuery) GetStartingTime() *timestamppb.Timestamp
func (*WatchQuery) GetWatchType ¶
func (q *WatchQuery) GetWatchType() watch_type.WatchType
func (*WatchQuery) SetMaximumChunkSize ¶
func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)
func (*WatchQuery) SetResumeToken ¶
func (q *WatchQuery) SetResumeToken(token string)
func (*WatchQuery) SetStartingTime ¶ added in v0.9.0
func (q *WatchQuery) SetStartingTime(startingTime *timestamppb.Timestamp)
func (*WatchQuery) SetWatchType ¶
func (q *WatchQuery) SetWatchType(watchType watch_type.WatchType)
func (*WatchQuery) String ¶ added in v0.4.29
func (q *WatchQuery) String() string
Source Files ¶
- pod.pb.access.go
- pod.pb.collections.go
- pod.pb.descriptor.go
- pod.pb.fieldmask.go
- pod.pb.fieldpath.go
- pod.pb.fieldpathbuilder.go
- pod.pb.filter.go
- pod.pb.filterbuilder.go
- pod.pb.go
- pod.pb.name.go
- pod.pb.namebuilder.go
- pod.pb.object_ext.go
- pod.pb.pagination.go
- pod.pb.parentname.go
- pod.pb.query.go
- pod.pb.validate.go
- pod.pb.view.go
- pod_change.pb.change.go
- pod_change.pb.go
- pod_change.pb.validate.go