Documentation ¶
Index ¶
- Constants
- Variables
- func AsAnyCastAccess(access PlanAssignmentRequestAccess) gotenresource.Access
- type Descriptor
- func (d *Descriptor) CanBeParentless() bool
- func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor
- func (d *Descriptor) GetParentResDescriptors() []gotenresource.Descriptor
- 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)
- func (d *Descriptor) SupportsMetadata() bool
- 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 *PlanAssignmentRequest) bool
- func (filter *Filter) EvaluateRaw(res gotenresource.Resource) bool
- func (filter *Filter) FilterSlice(in []*PlanAssignmentRequest) (out []*PlanAssignmentRequest)
- 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) bool
- func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool
- func (cond *FilterConditionContains) GetFieldPath() PlanAssignmentRequest_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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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) GetOrganizationName() *iam_organization.Name
- func (name *Name) GetPattern() gotenresource.NamePattern
- func (name *Name) GetProjectName() *iam_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) SetOrganization(parent *iam_organization.Name) *NameBuilder
- func (b *NameBuilder) SetOrganizationId(id string) *NameBuilder
- func (b *NameBuilder) SetProject(parent *iam_project.Name) *NameBuilder
- func (b *NameBuilder) SetProjectId(id string) *NameBuilder
- type NamePattern
- type OrderBy
- func (orderBy *OrderBy) Compare(left, right *PlanAssignmentRequest) int
- func (orderBy *OrderBy) CompareRaw(left, right gotenresource.Resource) int
- func (orderBy *OrderBy) GetFieldMask() *PlanAssignmentRequest_FieldMask
- func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField
- func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask
- func (orderBy *OrderBy) InsertSorted(sorted PlanAssignmentRequestList, elem *PlanAssignmentRequest) (PlanAssignmentRequestList, 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 PlanAssignmentRequestList)
- 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) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
- func (name *ParentName) ConvertToType(typeVal ref.Type) ref.Val
- func (name *ParentName) DescendsFrom(ancestor string) bool
- func (name *ParentName) Equal(other ref.Val) ref.Val
- 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) GetOrganizationName() *iam_organization.Name
- func (name *ParentName) GetPattern() gotenresource.NamePattern
- func (name *ParentName) GetProjectName() *iam_project.Name
- func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor
- func (name *ParentName) GetSegments() gotenresource.NameSegments
- func (name *ParentName) GotenEqual(other interface{}) bool
- func (name *ParentName) HasTrait(trait int) bool
- func (name *ParentName) IsFullyQualified() bool
- func (name *ParentName) IsSpecified() bool
- func (name *ParentName) Match(pattern ref.Val) ref.Val
- func (name *ParentName) Matches(other interface{}) bool
- func (name *ParentName) ParseProtoString(data string) error
- func (name *ParentName) ProtoString() (string, error)
- func (name *ParentName) Receive(function string, overload string, args []ref.Val) ref.Val
- func (name *ParentName) SetFromCliFlag(raw string) error
- func (name *ParentName) SetFromSegments(segments gotenresource.NameSegments) error
- func (name *ParentName) String() string
- func (name *ParentName) Type() ref.Type
- func (name *ParentName) TypeName() string
- func (name *ParentName) Value() interface{}
- type ParentReference
- func (ref *ParentReference) ClearCached()
- func (ref *ParentReference) GetIParentName() gotenresource.Name
- func (ref *ParentReference) GetIUnderlyingParentName() gotenresource.Name
- func (ref *ParentReference) GetIdParts() map[string]string
- func (ref *ParentReference) GetOrganization() *iam_organization.Organization
- func (ref *ParentReference) GetOrganizationReference() *iam_organization.Reference
- func (ref *ParentReference) GetPattern() gotenresource.NamePattern
- func (ref *ParentReference) GetProject() *iam_project.Project
- func (ref *ParentReference) GetProjectReference() *iam_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 (ref *ParentReference) IsFullyQualified() bool
- func (ref *ParentReference) IsSpecified() bool
- func (name *ParentReference) Matches(other interface{}) bool
- func (ref *ParentReference) ParseProtoString(data string) error
- func (ref *ParentReference) ProtoString() (string, error)
- 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
- type PlanAssignmentRequest
- func (o *PlanAssignmentRequest) Clone() *PlanAssignmentRequest
- func (o *PlanAssignmentRequest) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest) Descriptor() ([]byte, []int)
- func (r *PlanAssignmentRequest) EnsureMetadata() *meta.Meta
- func (m *PlanAssignmentRequest) GetApprover() *iam_organization.Reference
- func (m *PlanAssignmentRequest) GetMetadata() *meta.Meta
- func (m *PlanAssignmentRequest) GetName() *Name
- func (r *PlanAssignmentRequest) GetRawName() gotenresource.Name
- func (m *PlanAssignmentRequest) GetRequest() *PlanAssignmentRequest_RequestType
- func (r *PlanAssignmentRequest) GetResourceDescriptor() gotenresource.Descriptor
- func (m *PlanAssignmentRequest) GetService() *meta_service.Reference
- func (m *PlanAssignmentRequest) GetStatus() *PlanAssignmentRequest_Status
- func (*PlanAssignmentRequest) GotenMessage()
- func (o *PlanAssignmentRequest) GotenObjectExt()
- func (obj *PlanAssignmentRequest) GotenValidate() error
- func (o *PlanAssignmentRequest) MakeDiffFieldMask(other *PlanAssignmentRequest) *PlanAssignmentRequest_FieldMask
- func (o *PlanAssignmentRequest) MakeFullFieldMask() *PlanAssignmentRequest_FieldMask
- func (o *PlanAssignmentRequest) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest) MarshalJSON() ([]byte, error)
- func (r *PlanAssignmentRequest) MaybePopulateDefaults() error
- func (o *PlanAssignmentRequest) Merge(source *PlanAssignmentRequest)
- func (o *PlanAssignmentRequest) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest) ProtoMessage()
- func (m *PlanAssignmentRequest) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest) Reset()
- func (m *PlanAssignmentRequest) SetApprover(fv *iam_organization.Reference)
- func (m *PlanAssignmentRequest) SetMetadata(fv *meta.Meta)
- func (m *PlanAssignmentRequest) SetName(fv *Name)
- func (m *PlanAssignmentRequest) SetRequest(fv *PlanAssignmentRequest_RequestType)
- func (m *PlanAssignmentRequest) SetService(fv *meta_service.Reference)
- func (m *PlanAssignmentRequest) SetStatus(fv *PlanAssignmentRequest_Status)
- func (m *PlanAssignmentRequest) String() string
- func (m *PlanAssignmentRequest) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestAccess
- type PlanAssignmentRequestChange
- func (*PlanAssignmentRequestChange) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequestChange) GetAdded() *PlanAssignmentRequestChange_Added
- func (m *PlanAssignmentRequestChange) GetChangeType() isPlanAssignmentRequestChange_ChangeType
- func (m *PlanAssignmentRequestChange) GetCurrent() *PlanAssignmentRequestChange_Current
- func (c *PlanAssignmentRequestChange) GetCurrentViewIndex() int32
- func (m *PlanAssignmentRequestChange) GetModified() *PlanAssignmentRequestChange_Modified
- func (c *PlanAssignmentRequestChange) GetPlanAssignmentRequest() *PlanAssignmentRequest
- func (c *PlanAssignmentRequestChange) GetPlanAssignmentRequestName() *Name
- func (c *PlanAssignmentRequestChange) GetPreviousViewIndex() int32
- func (c *PlanAssignmentRequestChange) GetRawName() gotenresource.Name
- func (c *PlanAssignmentRequestChange) GetRawResource() gotenresource.Resource
- func (m *PlanAssignmentRequestChange) GetRemoved() *PlanAssignmentRequestChange_Removed
- func (*PlanAssignmentRequestChange) GotenMessage()
- func (obj *PlanAssignmentRequestChange) GotenValidate() error
- func (c *PlanAssignmentRequestChange) IsAdd() bool
- func (c *PlanAssignmentRequestChange) IsCurrent() bool
- func (c *PlanAssignmentRequestChange) IsDelete() bool
- func (c *PlanAssignmentRequestChange) IsModify() bool
- func (m *PlanAssignmentRequestChange) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequestChange) MarshalJSON() ([]byte, error)
- func (*PlanAssignmentRequestChange) ProtoMessage()
- func (m *PlanAssignmentRequestChange) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequestChange) Reset()
- func (m *PlanAssignmentRequestChange) SetAdded(fv *PlanAssignmentRequestChange_Added)
- func (c *PlanAssignmentRequestChange) SetAddedRaw(snapshot gotenresource.Resource, idx int)
- func (m *PlanAssignmentRequestChange) SetChangeType(ofv isPlanAssignmentRequestChange_ChangeType)
- func (m *PlanAssignmentRequestChange) SetCurrent(fv *PlanAssignmentRequestChange_Current)
- func (c *PlanAssignmentRequestChange) SetCurrentRaw(snapshot gotenresource.Resource)
- func (c *PlanAssignmentRequestChange) SetDeletedRaw(name gotenresource.Name, idx int)
- func (m *PlanAssignmentRequestChange) SetModified(fv *PlanAssignmentRequestChange_Modified)
- func (c *PlanAssignmentRequestChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, ...)
- func (m *PlanAssignmentRequestChange) SetRemoved(fv *PlanAssignmentRequestChange_Removed)
- func (m *PlanAssignmentRequestChange) String() string
- func (m *PlanAssignmentRequestChange) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequestChange) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestChangeList
- func (l PlanAssignmentRequestChangeList) Append(item gotenresource.ResourceChange) gotenresource.ResourceChangeList
- func (l PlanAssignmentRequestChangeList) AppendList(list gotenresource.ResourceChangeList) gotenresource.ResourceChangeList
- func (l PlanAssignmentRequestChangeList) At(idx int) gotenresource.ResourceChange
- func (l PlanAssignmentRequestChangeList) Length() int
- func (l PlanAssignmentRequestChangeList) Set(idx int, change gotenresource.ResourceChange)
- func (l PlanAssignmentRequestChangeList) Slice(first, second int) gotenresource.ResourceChangeList
- type PlanAssignmentRequestChangeMap
- func (m PlanAssignmentRequestChangeMap) Delete(name gotenresource.Name)
- func (m PlanAssignmentRequestChangeMap) ForEach(cb func(gotenresource.Name, gotenresource.ResourceChange) bool)
- func (m PlanAssignmentRequestChangeMap) Get(name gotenresource.Name) gotenresource.ResourceChange
- func (m PlanAssignmentRequestChangeMap) Length() int
- func (m PlanAssignmentRequestChangeMap) Set(change gotenresource.ResourceChange)
- type PlanAssignmentRequestChange_Added
- func (*PlanAssignmentRequestChange_Added) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequestChange_Added) GetPlanAssignmentRequest() *PlanAssignmentRequest
- func (m *PlanAssignmentRequestChange_Added) GetViewIndex() int32
- func (*PlanAssignmentRequestChange_Added) GotenMessage()
- func (obj *PlanAssignmentRequestChange_Added) GotenValidate() error
- func (m *PlanAssignmentRequestChange_Added) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequestChange_Added) MarshalJSON() ([]byte, error)
- func (*PlanAssignmentRequestChange_Added) ProtoMessage()
- func (m *PlanAssignmentRequestChange_Added) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequestChange_Added) Reset()
- func (m *PlanAssignmentRequestChange_Added) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
- func (m *PlanAssignmentRequestChange_Added) SetViewIndex(fv int32)
- func (m *PlanAssignmentRequestChange_Added) String() string
- func (m *PlanAssignmentRequestChange_Added) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequestChange_Added) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestChange_Added_
- type PlanAssignmentRequestChange_Current
- func (*PlanAssignmentRequestChange_Current) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequestChange_Current) GetPlanAssignmentRequest() *PlanAssignmentRequest
- func (*PlanAssignmentRequestChange_Current) GotenMessage()
- func (obj *PlanAssignmentRequestChange_Current) GotenValidate() error
- func (m *PlanAssignmentRequestChange_Current) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequestChange_Current) MarshalJSON() ([]byte, error)
- func (*PlanAssignmentRequestChange_Current) ProtoMessage()
- func (m *PlanAssignmentRequestChange_Current) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequestChange_Current) Reset()
- func (m *PlanAssignmentRequestChange_Current) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
- func (m *PlanAssignmentRequestChange_Current) String() string
- func (m *PlanAssignmentRequestChange_Current) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequestChange_Current) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestChange_Current_
- type PlanAssignmentRequestChange_Modified
- func (*PlanAssignmentRequestChange_Modified) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequestChange_Modified) GetFieldMask() *PlanAssignmentRequest_FieldMask
- func (m *PlanAssignmentRequestChange_Modified) GetName() *Name
- func (m *PlanAssignmentRequestChange_Modified) GetPlanAssignmentRequest() *PlanAssignmentRequest
- func (m *PlanAssignmentRequestChange_Modified) GetPreviousViewIndex() int32
- func (m *PlanAssignmentRequestChange_Modified) GetViewIndex() int32
- func (*PlanAssignmentRequestChange_Modified) GotenMessage()
- func (obj *PlanAssignmentRequestChange_Modified) GotenValidate() error
- func (m *PlanAssignmentRequestChange_Modified) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequestChange_Modified) MarshalJSON() ([]byte, error)
- func (*PlanAssignmentRequestChange_Modified) ProtoMessage()
- func (m *PlanAssignmentRequestChange_Modified) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequestChange_Modified) Reset()
- func (m *PlanAssignmentRequestChange_Modified) SetFieldMask(fv *PlanAssignmentRequest_FieldMask)
- func (m *PlanAssignmentRequestChange_Modified) SetName(fv *Name)
- func (m *PlanAssignmentRequestChange_Modified) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
- func (m *PlanAssignmentRequestChange_Modified) SetPreviousViewIndex(fv int32)
- func (m *PlanAssignmentRequestChange_Modified) SetViewIndex(fv int32)
- func (m *PlanAssignmentRequestChange_Modified) String() string
- func (m *PlanAssignmentRequestChange_Modified) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequestChange_Modified) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestChange_Modified_
- type PlanAssignmentRequestChange_Removed
- func (*PlanAssignmentRequestChange_Removed) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequestChange_Removed) GetName() *Name
- func (m *PlanAssignmentRequestChange_Removed) GetViewIndex() int32
- func (*PlanAssignmentRequestChange_Removed) GotenMessage()
- func (obj *PlanAssignmentRequestChange_Removed) GotenValidate() error
- func (m *PlanAssignmentRequestChange_Removed) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequestChange_Removed) MarshalJSON() ([]byte, error)
- func (*PlanAssignmentRequestChange_Removed) ProtoMessage()
- func (m *PlanAssignmentRequestChange_Removed) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequestChange_Removed) Reset()
- func (m *PlanAssignmentRequestChange_Removed) SetName(fv *Name)
- func (m *PlanAssignmentRequestChange_Removed) SetViewIndex(fv int32)
- func (m *PlanAssignmentRequestChange_Removed) String() string
- func (m *PlanAssignmentRequestChange_Removed) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequestChange_Removed) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequestChange_Removed_
- type PlanAssignmentRequestFieldPathBuilder
- func (PlanAssignmentRequestFieldPathBuilder) Approver() PlanAssignmentRequestPathSelectorApprover
- func (PlanAssignmentRequestFieldPathBuilder) Metadata() PlanAssignmentRequestPathSelectorMetadata
- func (PlanAssignmentRequestFieldPathBuilder) Name() PlanAssignmentRequestPathSelectorName
- func (PlanAssignmentRequestFieldPathBuilder) Request() PlanAssignmentRequestPathSelectorRequest
- func (PlanAssignmentRequestFieldPathBuilder) Service() PlanAssignmentRequestPathSelectorService
- func (PlanAssignmentRequestFieldPathBuilder) Status() PlanAssignmentRequestPathSelectorStatus
- type PlanAssignmentRequestList
- func (l PlanAssignmentRequestList) Append(item gotenresource.Resource) gotenresource.ResourceList
- func (l PlanAssignmentRequestList) AppendList(list gotenresource.ResourceList) gotenresource.ResourceList
- func (l PlanAssignmentRequestList) At(idx int) gotenresource.Resource
- func (l PlanAssignmentRequestList) Length() int
- func (l PlanAssignmentRequestList) Set(idx int, res gotenresource.Resource)
- func (l PlanAssignmentRequestList) Slice(first, second int) gotenresource.ResourceList
- type PlanAssignmentRequestMap
- func (m PlanAssignmentRequestMap) Delete(name gotenresource.Name)
- func (m PlanAssignmentRequestMap) ForEach(cb func(gotenresource.Name, gotenresource.Resource) bool)
- func (m PlanAssignmentRequestMap) Get(name gotenresource.Name) gotenresource.Resource
- func (m PlanAssignmentRequestMap) Length() int
- func (m PlanAssignmentRequestMap) Set(res gotenresource.Resource)
- type PlanAssignmentRequestMapPathSelectorMetadataAnnotations
- func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestMapPathSelectorMetadataLabels
- func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestMapPathSelectorMetadataShards
- func (s PlanAssignmentRequestMapPathSelectorMetadataShards) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorMetadataShards) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorMetadataShards) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestNameList
- func (l PlanAssignmentRequestNameList) Append(name gotenresource.Name) gotenresource.NameList
- func (l PlanAssignmentRequestNameList) AppendList(list gotenresource.NameList) gotenresource.NameList
- func (l PlanAssignmentRequestNameList) At(idx int) gotenresource.Name
- func (l PlanAssignmentRequestNameList) Length() int
- func (l PlanAssignmentRequestNameList) Set(idx int, name gotenresource.Name)
- func (l PlanAssignmentRequestNameList) Slice(first, second int) gotenresource.NameList
- type PlanAssignmentRequestParentNameList
- func (l PlanAssignmentRequestParentNameList) Append(name gotenresource.Name) gotenresource.ParentNameList
- func (l PlanAssignmentRequestParentNameList) AppendList(list gotenresource.ParentNameList) gotenresource.ParentNameList
- func (l PlanAssignmentRequestParentNameList) At(idx int) gotenresource.Name
- func (l PlanAssignmentRequestParentNameList) Length() int
- func (l PlanAssignmentRequestParentNameList) Set(idx int, name gotenresource.Name)
- func (l PlanAssignmentRequestParentNameList) Slice(first, second int) gotenresource.ParentNameList
- type PlanAssignmentRequestParentReferenceList
- func (l PlanAssignmentRequestParentReferenceList) Append(ref gotenresource.Reference) gotenresource.ParentReferenceList
- func (l PlanAssignmentRequestParentReferenceList) AppendList(list gotenresource.ParentReferenceList) gotenresource.ParentReferenceList
- func (l PlanAssignmentRequestParentReferenceList) At(idx int) gotenresource.Reference
- func (l PlanAssignmentRequestParentReferenceList) Length() int
- func (l PlanAssignmentRequestParentReferenceList) Set(idx int, ref gotenresource.Reference)
- func (l PlanAssignmentRequestParentReferenceList) Slice(first, second int) gotenresource.ParentReferenceList
- type PlanAssignmentRequestPathSelectorApprover
- func (PlanAssignmentRequestPathSelectorApprover) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (s PlanAssignmentRequestPathSelectorApprover) WithArrayOfValues(values []*iam_organization.Reference) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorApprover) WithValue(value *iam_organization.Reference) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorMetadata
- func (PlanAssignmentRequestPathSelectorMetadata) Annotations() PlanAssignmentRequestPathSelectorMetadataAnnotations
- func (PlanAssignmentRequestPathSelectorMetadata) CreateTime() PlanAssignmentRequestPathSelectorMetadataCreateTime
- func (PlanAssignmentRequestPathSelectorMetadata) DeleteTime() PlanAssignmentRequestPathSelectorMetadataDeleteTime
- func (PlanAssignmentRequestPathSelectorMetadata) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (PlanAssignmentRequestPathSelectorMetadata) Generation() PlanAssignmentRequestPathSelectorMetadataGeneration
- func (PlanAssignmentRequestPathSelectorMetadata) Labels() PlanAssignmentRequestPathSelectorMetadataLabels
- func (PlanAssignmentRequestPathSelectorMetadata) Lifecycle() PlanAssignmentRequestPathSelectorMetadataLifecycle
- func (PlanAssignmentRequestPathSelectorMetadata) OwnerReferences() PlanAssignmentRequestPathSelectorMetadataOwnerReferences
- func (PlanAssignmentRequestPathSelectorMetadata) ResourceVersion() PlanAssignmentRequestPathSelectorMetadataResourceVersion
- func (PlanAssignmentRequestPathSelectorMetadata) Services() PlanAssignmentRequestPathSelectorMetadataServices
- func (PlanAssignmentRequestPathSelectorMetadata) Shards() PlanAssignmentRequestPathSelectorMetadataShards
- func (PlanAssignmentRequestPathSelectorMetadata) Syncing() PlanAssignmentRequestPathSelectorMetadataSyncing
- func (PlanAssignmentRequestPathSelectorMetadata) Tags() PlanAssignmentRequestPathSelectorMetadataTags
- func (PlanAssignmentRequestPathSelectorMetadata) UpdateTime() PlanAssignmentRequestPathSelectorMetadataUpdateTime
- func (PlanAssignmentRequestPathSelectorMetadata) Uuid() PlanAssignmentRequestPathSelectorMetadataUuid
- func (s PlanAssignmentRequestPathSelectorMetadata) WithArrayOfValues(values []*meta.Meta) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadata) WithSubArrayItemValue(subPathArrayItemValue meta.Meta_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorMetadata) WithSubArrayOfValues(subPathArrayOfValues meta.Meta_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorMetadata) WithSubPath(subPath meta.Meta_FieldPath) *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadata) WithSubValue(subPathValue meta.Meta_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
- func (s PlanAssignmentRequestPathSelectorMetadata) WithValue(value *meta.Meta) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorMetadataAnnotations
- func (PlanAssignmentRequestPathSelectorMetadataAnnotations) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataAnnotations) WithArrayOfValues(values []map[string]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithKey(key string) PlanAssignmentRequestMapPathSelectorMetadataAnnotations
- func (s PlanAssignmentRequestPathSelectorMetadataAnnotations) WithValue(value map[string]string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataCreateTime
- func (PlanAssignmentRequestPathSelectorMetadataCreateTime) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataCreateTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataCreateTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataDeleteTime
- func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataGeneration
- func (PlanAssignmentRequestPathSelectorMetadataGeneration) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataGeneration) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataGeneration) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataLabels
- func (PlanAssignmentRequestPathSelectorMetadataLabels) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataLabels) WithArrayOfValues(values []map[string]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorMetadataLabels) WithKey(key string) PlanAssignmentRequestMapPathSelectorMetadataLabels
- func (s PlanAssignmentRequestPathSelectorMetadataLabels) WithValue(value map[string]string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataLifecycle
- func (PlanAssignmentRequestPathSelectorMetadataLifecycle) BlockDeletion() PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion
- func (PlanAssignmentRequestPathSelectorMetadataLifecycle) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorMetadataLifecycle) State() PlanAssignmentRequestPathSelectorMetadataLifecycleState
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycle) WithArrayOfValues(values []*meta.Lifecycle) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycle) WithValue(value *meta.Lifecycle) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion
- func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithValue(value bool) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataLifecycleState
- func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithArrayOfValues(values []meta.Lifecycle_State) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithValue(value meta.Lifecycle_State) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferences
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Controller() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Kind() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Name() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Region() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) RequiresOwnerReference() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Version() PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithArrayOfValues(values [][]*meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithItemValue(value *meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithValue(value []*meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithValue(value bool) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue(value bool) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion
- func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataResourceVersion
- func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataServices
- func (PlanAssignmentRequestPathSelectorMetadataServices) AllowedServices() PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices
- func (PlanAssignmentRequestPathSelectorMetadataServices) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorMetadataServices) OwningService() PlanAssignmentRequestPathSelectorMetadataServicesOwningService
- func (s PlanAssignmentRequestPathSelectorMetadataServices) WithArrayOfValues(values []*meta.ServicesInfo) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataServices) WithValue(value *meta.ServicesInfo) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices
- func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataServicesOwningService
- func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataShards
- func (PlanAssignmentRequestPathSelectorMetadataShards) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataShards) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorMetadataShards) WithKey(key string) PlanAssignmentRequestMapPathSelectorMetadataShards
- func (s PlanAssignmentRequestPathSelectorMetadataShards) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataSyncing
- func (PlanAssignmentRequestPathSelectorMetadataSyncing) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorMetadataSyncing) OwningRegion() PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion
- func (PlanAssignmentRequestPathSelectorMetadataSyncing) Regions() PlanAssignmentRequestPathSelectorMetadataSyncingRegions
- func (s PlanAssignmentRequestPathSelectorMetadataSyncing) WithArrayOfValues(values []*meta.SyncingMeta) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataSyncing) WithValue(value *meta.SyncingMeta) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion
- func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataSyncingRegions
- func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataTags
- func (PlanAssignmentRequestPathSelectorMetadataTags) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataTags) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataTags) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorMetadataTags) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataUpdateTime
- func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorMetadataUuid
- func (PlanAssignmentRequestPathSelectorMetadataUuid) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorMetadataUuid) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorMetadataUuid) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorName
- func (PlanAssignmentRequestPathSelectorName) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (s PlanAssignmentRequestPathSelectorName) WithArrayOfValues(values []*Name) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorName) WithValue(value *Name) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorRequest
- func (PlanAssignmentRequestPathSelectorRequest) Assign() PlanAssignmentRequestPathSelectorRequestAssign
- func (PlanAssignmentRequestPathSelectorRequest) Extend() PlanAssignmentRequestPathSelectorRequestExtend
- func (PlanAssignmentRequestPathSelectorRequest) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (PlanAssignmentRequestPathSelectorRequest) Redistribute() PlanAssignmentRequestPathSelectorRequestRedistribute
- func (PlanAssignmentRequestPathSelectorRequest) Unassign() PlanAssignmentRequestPathSelectorRequestUnassign
- func (s PlanAssignmentRequestPathSelectorRequest) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequest) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestType_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequest) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestType_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorRequest) WithSubPath(subPath PlanAssignmentRequestRequestType_FieldPath) *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequest) WithSubValue(subPathValue PlanAssignmentRequestRequestType_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
- func (s PlanAssignmentRequestPathSelectorRequest) WithValue(value *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorRequestAssign
- func (PlanAssignmentRequestPathSelectorRequestAssign) Extensions() PlanAssignmentRequestPathSelectorRequestAssignExtensions
- func (PlanAssignmentRequestPathSelectorRequestAssign) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestAssign) Plan() PlanAssignmentRequestPathSelectorRequestAssignPlan
- func (PlanAssignmentRequestPathSelectorRequestAssign) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions
- func (s PlanAssignmentRequestPathSelectorRequestAssign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssign) WithValue(value *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignExtensions
- func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) Resource() PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource
- func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) Value() PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithItemValue(value *common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithValue(value []*common.Allowance) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource
- func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue
- func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignPlan
- func (PlanAssignmentRequestPathSelectorRequestAssignPlan) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestAssignPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignPlan) WithValue(value *plan.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) Resource() PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource
- func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtend
- func (PlanAssignmentRequestPathSelectorRequestExtend) Additions() PlanAssignmentRequestPathSelectorRequestExtendAdditions
- func (PlanAssignmentRequestPathSelectorRequestExtend) Assignment() PlanAssignmentRequestPathSelectorRequestExtendAssignment
- func (PlanAssignmentRequestPathSelectorRequestExtend) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestExtend) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions
- func (s PlanAssignmentRequestPathSelectorRequestExtend) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtend) WithValue(value *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendAdditions
- func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) Resource() PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource
- func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) Value() PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithItemValue(value *common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithValue(value []*common.Allowance) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource
- func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue
- func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendAssignment
- func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) Resource() PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource
- func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestRedistribute
- func (PlanAssignmentRequestPathSelectorRequestRedistribute) Assignment() PlanAssignmentRequestPathSelectorRequestRedistributeAssignment
- func (PlanAssignmentRequestPathSelectorRequestRedistribute) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestRedistribute) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions
- func (s PlanAssignmentRequestPathSelectorRequestRedistribute) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestRedistribute) WithValue(value *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestRedistributeAssignment
- func (PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource
- func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestUnassign
- func (PlanAssignmentRequestPathSelectorRequestUnassign) Assignment() PlanAssignmentRequestPathSelectorRequestUnassignAssignment
- func (PlanAssignmentRequestPathSelectorRequestUnassign) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestUnassign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestUnassign) WithValue(value *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorRequestUnassignAssignment
- func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorService
- func (PlanAssignmentRequestPathSelectorService) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (s PlanAssignmentRequestPathSelectorService) WithArrayOfValues(values []*meta_service.Reference) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorService) WithValue(value *meta_service.Reference) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorStatus
- func (PlanAssignmentRequestPathSelectorStatus) Conclusion() PlanAssignmentRequestPathSelectorStatusConclusion
- func (PlanAssignmentRequestPathSelectorStatus) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
- func (PlanAssignmentRequestPathSelectorStatus) Reason() PlanAssignmentRequestPathSelectorStatusReason
- func (s PlanAssignmentRequestPathSelectorStatus) WithArrayOfValues(values []*PlanAssignmentRequest_Status) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorStatus) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestStatus_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequestPathSelectorStatus) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestStatus_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (PlanAssignmentRequestPathSelectorStatus) WithSubPath(subPath PlanAssignmentRequestStatus_FieldPath) *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorStatus) WithSubValue(subPathValue PlanAssignmentRequestStatus_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
- func (s PlanAssignmentRequestPathSelectorStatus) WithValue(value *PlanAssignmentRequest_Status) *PlanAssignmentRequest_FieldTerminalPathValue
- type PlanAssignmentRequestPathSelectorStatusConclusion
- func (PlanAssignmentRequestPathSelectorStatusConclusion) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorStatusConclusion) WithArrayOfValues(values []PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorStatusConclusion) WithValue(value PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestPathSelectorStatusReason
- func (PlanAssignmentRequestPathSelectorStatusReason) FieldPath() *PlanAssignmentRequest_FieldSubPath
- func (s PlanAssignmentRequestPathSelectorStatusReason) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequestPathSelectorStatusReason) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
- type PlanAssignmentRequestReferenceList
- func (l PlanAssignmentRequestReferenceList) Append(ref gotenresource.Reference) gotenresource.ReferenceList
- func (l PlanAssignmentRequestReferenceList) AppendList(list gotenresource.ReferenceList) gotenresource.ReferenceList
- func (l PlanAssignmentRequestReferenceList) At(idx int) gotenresource.Reference
- func (l PlanAssignmentRequestReferenceList) Length() int
- func (l PlanAssignmentRequestReferenceList) Set(idx int, ref gotenresource.Reference)
- func (l PlanAssignmentRequestReferenceList) Slice(first, second int) gotenresource.ReferenceList
- type PlanAssignmentRequestRequestTypeAssignFieldPathBuilder
- func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) Extensions() PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions
- func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) Plan() PlanAssignmentRequest_RequestType_AssignPathSelectorPlan
- func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) RegionalDistributions() PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions
- type PlanAssignmentRequestRequestTypeAssign_FieldPath
- func BuildPlanAssignmentRequestRequestTypeAssign_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeAssign_FieldPath, error)
- func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPath(rawField string) PlanAssignmentRequestRequestTypeAssign_FieldPath
- func ParsePlanAssignmentRequestRequestTypeAssign_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeAssign_FieldPath, error)
- type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
- func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
- func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue, error)
- type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
- func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
- func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues, error)
- type PlanAssignmentRequestRequestTypeAssign_FieldPathSelector
- type PlanAssignmentRequestRequestTypeAssign_FieldPathValue
- func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
- func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathValue, error)
- type PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsExtensionsSubPath() (common.Allowance_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Assign)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Assign) (values []interface{})
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetDefault() interface{}
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) IsLeaf() bool
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) JSONString() string
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Selector() PlanAssignmentRequestRequestTypeAssign_FieldPathSelector
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) String() string
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue
- func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsExtensionsPathItemValue() (common.Allowance_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Assign) bool
- func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsExtensionsPathArrayOfValues() (common.Allowance_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsExtensionsPathValue() (common.Allowance_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Assign) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Assign)
- func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Assign)
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Assign) (values []interface{})
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Selector() PlanAssignmentRequestRequestTypeAssign_FieldPathSelector
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsExtensionsItemValue() (*common.Allowance, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Assign) bool
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsExtensionsArrayOfValues() ([][]*common.Allowance, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsPlanArrayOfValues() ([]*plan.Reference, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsExtensionsValue() ([]*common.Allowance, bool)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsPlanValue() (*plan.Reference, bool)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Assign) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Assign)
- func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeExtendFieldPathBuilder
- func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) Additions() PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions
- func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) Assignment() PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment
- func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) RegionalDistributions() PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions
- type PlanAssignmentRequestRequestTypeExtend_FieldPath
- func BuildPlanAssignmentRequestRequestTypeExtend_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeExtend_FieldPath, error)
- func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPath(rawField string) PlanAssignmentRequestRequestTypeExtend_FieldPath
- func ParsePlanAssignmentRequestRequestTypeExtend_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeExtend_FieldPath, error)
- type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
- func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
- func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue, error)
- type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
- func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
- func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues, error)
- type PlanAssignmentRequestRequestTypeExtend_FieldPathSelector
- type PlanAssignmentRequestRequestTypeExtend_FieldPathValue
- func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
- func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathValue, error)
- type PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsAdditionsSubPath() (common.Allowance_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Extend)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Extend) (values []interface{})
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetDefault() interface{}
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) IsLeaf() bool
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) JSONString() string
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Selector() PlanAssignmentRequestRequestTypeExtend_FieldPathSelector
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) String() string
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue
- func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsAdditionsPathItemValue() (common.Allowance_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Extend) bool
- func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsAdditionsPathArrayOfValues() (common.Allowance_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsAdditionsPathValue() (common.Allowance_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Extend) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Extend)
- func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Extend)
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Extend) (values []interface{})
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Selector() PlanAssignmentRequestRequestTypeExtend_FieldPathSelector
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsAdditionsItemValue() (*common.Allowance, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Extend) bool
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAdditionsArrayOfValues() ([][]*common.Allowance, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues() ([]*plan_assignment.Reference, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAdditionsValue() ([]*common.Allowance, bool)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Extend) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Extend)
- func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeFieldPathBuilder
- func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Assign() PlanAssignmentRequest_RequestTypePathSelectorAssign
- func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Extend() PlanAssignmentRequest_RequestTypePathSelectorExtend
- func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Redistribute() PlanAssignmentRequest_RequestTypePathSelectorRedistribute
- func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Unassign() PlanAssignmentRequest_RequestTypePathSelectorUnassign
- type PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder
- type PlanAssignmentRequestRequestTypeRedistribute_FieldPath
- func BuildPlanAssignmentRequestRequestTypeRedistribute_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, error)
- func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath(rawField string) PlanAssignmentRequestRequestTypeRedistribute_FieldPath
- func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, error)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
- func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
- func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue, error)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
- func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
- func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues, error)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector
- type PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
- func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
- func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue, error)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Redistribute)
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Redistribute) (values []interface{})
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetDefault() interface{}
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) IsLeaf() bool
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) JSONString() string
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Selector() PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) String() string
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue
- func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Redistribute) bool
- func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
- func (fpsaov *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Redistribute) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Redistribute)
- func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Redistribute)
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Redistribute) (values []interface{})
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Selector() PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Redistribute) bool
- func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues() ([]*plan_assignment.Reference, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
- func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Redistribute) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Redistribute)
- func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestTypeUnassignFieldPathBuilder
- type PlanAssignmentRequestRequestTypeUnassign_FieldPath
- func BuildPlanAssignmentRequestRequestTypeUnassign_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeUnassign_FieldPath, error)
- func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPath(rawField string) PlanAssignmentRequestRequestTypeUnassign_FieldPath
- func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeUnassign_FieldPath, error)
- type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue
- func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue
- func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue, error)
- type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues
- func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues
- func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues, error)
- type PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector
- type PlanAssignmentRequestRequestTypeUnassign_FieldPathValue
- func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathValue
- func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathValue, error)
- type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Unassign)
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Unassign) (values []interface{})
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Unassign) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Selector() PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathValue
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Unassign) bool
- func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Unassign) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues
- type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Unassign) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Unassign)
- func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestType_FieldPath
- func BuildPlanAssignmentRequestRequestType_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestType_FieldPath, error)
- func MustParsePlanAssignmentRequestRequestType_FieldPath(rawField string) PlanAssignmentRequestRequestType_FieldPath
- func ParsePlanAssignmentRequestRequestType_FieldPath(rawField string) (PlanAssignmentRequestRequestType_FieldPath, error)
- type PlanAssignmentRequestRequestType_FieldPathArrayItemValue
- func MustParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
- func ParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestType_FieldPathArrayItemValue, error)
- type PlanAssignmentRequestRequestType_FieldPathArrayOfValues
- func MustParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
- func ParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestType_FieldPathArrayOfValues, error)
- type PlanAssignmentRequestRequestType_FieldPathSelector
- type PlanAssignmentRequestRequestType_FieldPathValue
- type PlanAssignmentRequestRequestType_FieldSubPath
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsAssignSubPath() (PlanAssignmentRequestRequestTypeAssign_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsExtendSubPath() (PlanAssignmentRequestRequestTypeExtend_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsRedistributeSubPath() (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsUnassignSubPath() (PlanAssignmentRequestRequestTypeUnassign_FieldPath, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType) (values []interface{})
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetDefault() interface{}
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) IsLeaf() bool
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) JSONString() string
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) Selector() PlanAssignmentRequestRequestType_FieldPathSelector
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) String() string
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathValue
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsAssignPathItemValue() (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsExtendPathItemValue() (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsRedistributePathItemValue() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsUnassignPathItemValue() (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType) bool
- func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsAssignPathArrayOfValues() (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsExtendPathArrayOfValues() (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsRedistributePathArrayOfValues() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsUnassignPathArrayOfValues() (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PlanAssignmentRequestRequestType_FieldSubPathValue
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsAssignPathValue() (PlanAssignmentRequestRequestTypeAssign_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsExtendPathValue() (PlanAssignmentRequestRequestTypeExtend_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsRedistributePathValue() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsUnassignPathValue() (PlanAssignmentRequestRequestTypeUnassign_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType)
- func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestRequestType_FieldTerminalPath
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType)
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType) (values []interface{})
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) Selector() PlanAssignmentRequestRequestType_FieldPathSelector
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathValue
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType) bool
- func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsAssignArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Assign, bool)
- func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsExtendArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Extend, bool)
- func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsRedistributeArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Redistribute, bool)
- func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsUnassignArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Unassign, bool)
- func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequestRequestType_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsAssignValue() (*PlanAssignmentRequest_RequestType_Assign, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsExtendValue() (*PlanAssignmentRequest_RequestType_Extend, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsRedistributeValue() (*PlanAssignmentRequest_RequestType_Redistribute, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsUnassignValue() (*PlanAssignmentRequest_RequestType_Unassign, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType) (int, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType)
- func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequestStatusFieldPathBuilder
- type PlanAssignmentRequestStatus_FieldPath
- func BuildPlanAssignmentRequestStatus_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestStatus_FieldPath, error)
- func MustParsePlanAssignmentRequestStatus_FieldPath(rawField string) PlanAssignmentRequestStatus_FieldPath
- func ParsePlanAssignmentRequestStatus_FieldPath(rawField string) (PlanAssignmentRequestStatus_FieldPath, error)
- type PlanAssignmentRequestStatus_FieldPathArrayItemValue
- type PlanAssignmentRequestStatus_FieldPathArrayOfValues
- type PlanAssignmentRequestStatus_FieldPathSelector
- type PlanAssignmentRequestStatus_FieldPathValue
- type PlanAssignmentRequestStatus_FieldTerminalPath
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_Status)
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) Get(source *PlanAssignmentRequest_Status) (values []interface{})
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_Status) (interface{}, bool)
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) Selector() PlanAssignmentRequestStatus_FieldPathSelector
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestStatus_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestStatus_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestStatus_FieldPathValue
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_Status) bool
- func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_Status) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsConclusionArrayOfValues() ([]PlanAssignmentRequest_Status_Conclusion, bool)
- func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
- func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequestStatus_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) AsConclusionValue() (PlanAssignmentRequest_Status_Conclusion, bool)
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) AsReasonValue() (string, bool)
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_Status) (int, bool)
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_Status)
- func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequest_FieldMask
- func (fieldMask *PlanAssignmentRequest_FieldMask) AppendPath(path PlanAssignmentRequest_FieldPath)
- func (fieldMask *PlanAssignmentRequest_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_FieldMask) FilterInputFields() *PlanAssignmentRequest_FieldMask
- func (fieldMask *PlanAssignmentRequest_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_FieldMask) GetPaths() []PlanAssignmentRequest_FieldPath
- func (fieldMask *PlanAssignmentRequest_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_FieldMask) Project(source *PlanAssignmentRequest) *PlanAssignmentRequest
- func (fieldMask *PlanAssignmentRequest_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_FieldMask) Set(target, source *PlanAssignmentRequest)
- func (fieldMask *PlanAssignmentRequest_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_FieldMask) Subtract(other *PlanAssignmentRequest_FieldMask) *PlanAssignmentRequest_FieldMask
- func (fieldMask *PlanAssignmentRequest_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_FieldPath
- func BuildPlanAssignmentRequest_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequest_FieldPath, error)
- func MustParsePlanAssignmentRequest_FieldPath(rawField string) PlanAssignmentRequest_FieldPath
- func ParsePlanAssignmentRequest_FieldPath(rawField string) (PlanAssignmentRequest_FieldPath, error)
- type PlanAssignmentRequest_FieldPathArrayItemValue
- type PlanAssignmentRequest_FieldPathArrayOfValues
- type PlanAssignmentRequest_FieldPathSelector
- type PlanAssignmentRequest_FieldPathValue
- type PlanAssignmentRequest_FieldSubPath
- func (fps *PlanAssignmentRequest_FieldSubPath) AsMetadataSubPath() (meta.Meta_FieldPath, bool)
- func (fps *PlanAssignmentRequest_FieldSubPath) AsRequestSubPath() (PlanAssignmentRequestRequestType_FieldPath, bool)
- func (fps *PlanAssignmentRequest_FieldSubPath) AsStatusSubPath() (PlanAssignmentRequestStatus_FieldPath, bool)
- func (fps *PlanAssignmentRequest_FieldSubPath) ClearValue(item *PlanAssignmentRequest)
- func (fps *PlanAssignmentRequest_FieldSubPath) ClearValueRaw(item proto.Message)
- func (fps *PlanAssignmentRequest_FieldSubPath) Get(source *PlanAssignmentRequest) (values []interface{})
- func (fps *PlanAssignmentRequest_FieldSubPath) GetDefault() interface{}
- func (fps *PlanAssignmentRequest_FieldSubPath) GetRaw(source proto.Message) []interface{}
- func (fps *PlanAssignmentRequest_FieldSubPath) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
- func (fps *PlanAssignmentRequest_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fps *PlanAssignmentRequest_FieldSubPath) IsLeaf() bool
- func (fps *PlanAssignmentRequest_FieldSubPath) JSONString() string
- func (fps *PlanAssignmentRequest_FieldSubPath) Selector() PlanAssignmentRequest_FieldPathSelector
- func (fps *PlanAssignmentRequest_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fps *PlanAssignmentRequest_FieldSubPath) String() string
- func (fps *PlanAssignmentRequest_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequest_FieldPathArrayItemValue
- func (fps *PlanAssignmentRequest_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequest_FieldPathArrayOfValues
- func (fps *PlanAssignmentRequest_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequest_FieldPathValue
- func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequest_FieldSubPathArrayItemValue
- func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsMetadataPathItemValue() (meta.Meta_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsRequestPathItemValue() (PlanAssignmentRequestRequestType_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsStatusPathItemValue() (PlanAssignmentRequestStatus_FieldPathArrayItemValue, bool)
- func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest) bool
- func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
- type PlanAssignmentRequest_FieldSubPathArrayOfValues
- func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (meta.Meta_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsRequestPathArrayOfValues() (PlanAssignmentRequestRequestType_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues() (PlanAssignmentRequestStatus_FieldPathArrayOfValues, bool)
- func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) GetRawValues() []interface{}
- type PlanAssignmentRequest_FieldSubPathValue
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsMetadataPathValue() (meta.Meta_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsRequestPathValue() (PlanAssignmentRequestRequestType_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsStatusPathValue() (PlanAssignmentRequestStatus_FieldPathValue, bool)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest) (int, bool)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) GetRawValue() interface{}
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) SetTo(target **PlanAssignmentRequest)
- func (fpvs *PlanAssignmentRequest_FieldSubPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequest_FieldTerminalPath
- func (fp *PlanAssignmentRequest_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest)
- func (fp *PlanAssignmentRequest_FieldTerminalPath) ClearValueRaw(item proto.Message)
- func (fp *PlanAssignmentRequest_FieldTerminalPath) Get(source *PlanAssignmentRequest) (values []interface{})
- func (fp *PlanAssignmentRequest_FieldTerminalPath) GetDefault() interface{}
- func (fp *PlanAssignmentRequest_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
- func (fp *PlanAssignmentRequest_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
- func (fp *PlanAssignmentRequest_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
- func (fp *PlanAssignmentRequest_FieldTerminalPath) IsLeaf() bool
- func (fp *PlanAssignmentRequest_FieldTerminalPath) JSONString() string
- func (fp *PlanAssignmentRequest_FieldTerminalPath) Selector() PlanAssignmentRequest_FieldPathSelector
- func (fp *PlanAssignmentRequest_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
- func (fp *PlanAssignmentRequest_FieldTerminalPath) String() string
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequest_FieldPathArrayItemValue
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequest_FieldPathArrayOfValues
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequest_FieldPathValue
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
- func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
- type PlanAssignmentRequest_FieldTerminalPathArrayItemValue
- func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest) bool
- func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
- func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
- func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
- type PlanAssignmentRequest_FieldTerminalPathArrayOfValues
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsApproverArrayOfValues() ([]*iam_organization.Reference, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*meta.Meta, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]*Name, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsRequestArrayOfValues() ([]*PlanAssignmentRequest_RequestType, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsServiceArrayOfValues() ([]*meta_service.Reference, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*PlanAssignmentRequest_Status, bool)
- func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
- type PlanAssignmentRequest_FieldTerminalPathValue
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsApproverValue() (*iam_organization.Reference, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsMetadataValue() (*meta.Meta, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsNameValue() (*Name, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsRequestValue() (*PlanAssignmentRequest_RequestType, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsServiceValue() (*meta_service.Reference, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsStatusValue() (*PlanAssignmentRequest_Status, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest) (int, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) GetRawValue() interface{}
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest)
- func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) SetToRaw(target proto.Message)
- type PlanAssignmentRequest_RequestType
- func (o *PlanAssignmentRequest_RequestType) Clone() *PlanAssignmentRequest_RequestType
- func (o *PlanAssignmentRequest_RequestType) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_RequestType) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_RequestType) GetAssign() *PlanAssignmentRequest_RequestType_Assign
- func (m *PlanAssignmentRequest_RequestType) GetExtend() *PlanAssignmentRequest_RequestType_Extend
- func (m *PlanAssignmentRequest_RequestType) GetRedistribute() *PlanAssignmentRequest_RequestType_Redistribute
- func (m *PlanAssignmentRequest_RequestType) GetRequest() isPlanAssignmentRequest_RequestType_Request
- func (m *PlanAssignmentRequest_RequestType) GetUnassign() *PlanAssignmentRequest_RequestType_Unassign
- func (*PlanAssignmentRequest_RequestType) GotenMessage()
- func (o *PlanAssignmentRequest_RequestType) GotenObjectExt()
- func (obj *PlanAssignmentRequest_RequestType) GotenValidate() error
- func (o *PlanAssignmentRequest_RequestType) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_RequestType_FieldMask
- func (o *PlanAssignmentRequest_RequestType) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_FieldMask
- func (o *PlanAssignmentRequest_RequestType) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_RequestType) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_RequestType) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_RequestType) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_RequestType) Merge(source *PlanAssignmentRequest_RequestType)
- func (o *PlanAssignmentRequest_RequestType) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_RequestType) ProtoMessage()
- func (m *PlanAssignmentRequest_RequestType) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_RequestType) Reset()
- func (m *PlanAssignmentRequest_RequestType) SetAssign(fv *PlanAssignmentRequest_RequestType_Assign)
- func (m *PlanAssignmentRequest_RequestType) SetExtend(fv *PlanAssignmentRequest_RequestType_Extend)
- func (m *PlanAssignmentRequest_RequestType) SetRedistribute(fv *PlanAssignmentRequest_RequestType_Redistribute)
- func (m *PlanAssignmentRequest_RequestType) SetRequest(ofv isPlanAssignmentRequest_RequestType_Request)
- func (m *PlanAssignmentRequest_RequestType) SetUnassign(fv *PlanAssignmentRequest_RequestType_Unassign)
- func (m *PlanAssignmentRequest_RequestType) String() string
- func (m *PlanAssignmentRequest_RequestType) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_RequestType) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssign
- func (PlanAssignmentRequest_RequestTypePathSelectorAssign) Extensions() PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions
- func (PlanAssignmentRequest_RequestTypePathSelectorAssign) FieldPath() *PlanAssignmentRequestRequestType_FieldTerminalPath
- func (PlanAssignmentRequest_RequestTypePathSelectorAssign) Plan() PlanAssignmentRequest_RequestTypePathSelectorAssignPlan
- func (PlanAssignmentRequest_RequestTypePathSelectorAssign) RegionalDistributions() PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayItemValue(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayOfValues(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubPath(subPath PlanAssignmentRequestRequestTypeAssign_FieldPath) *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeAssign_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithValue(value *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequestRequestType_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) Resource() PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) Value() PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) WithValue(value int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignPlan
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithValue(value *plan.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtend
- func (PlanAssignmentRequest_RequestTypePathSelectorExtend) Additions() PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions
- func (PlanAssignmentRequest_RequestTypePathSelectorExtend) Assignment() PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorExtend) FieldPath() *PlanAssignmentRequestRequestType_FieldTerminalPath
- func (PlanAssignmentRequest_RequestTypePathSelectorExtend) RegionalDistributions() PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayItemValue(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayOfValues(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubPath(subPath PlanAssignmentRequestRequestTypeExtend_FieldPath) *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeExtend_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithValue(value *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequestRequestType_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) Resource() PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) Value() PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) WithValue(value int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorRedistribute
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) Assignment() PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) FieldPath() *PlanAssignmentRequestRequestType_FieldTerminalPath
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) RegionalDistributions() PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayItemValue(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayOfValues(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubPath(subPath PlanAssignmentRequestRequestTypeRedistribute_FieldPath) *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithValue(value *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequestRequestType_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorUnassign
- func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) Assignment() PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) FieldPath() *PlanAssignmentRequestRequestType_FieldTerminalPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayItemValue(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayOfValues(...) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubPath(subPath PlanAssignmentRequestRequestTypeUnassign_FieldPath) *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeUnassign_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithValue(value *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequestRequestType_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment
- func (PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) FieldPath() *PlanAssignmentRequestRequestType_FieldSubPath
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_Assign
- func (o *PlanAssignmentRequest_RequestType_Assign) Clone() *PlanAssignmentRequest_RequestType_Assign
- func (o *PlanAssignmentRequest_RequestType_Assign) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_RequestType_Assign) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_RequestType_Assign) GetExtensions() []*common.Allowance
- func (m *PlanAssignmentRequest_RequestType_Assign) GetPlan() *plan.Reference
- func (m *PlanAssignmentRequest_RequestType_Assign) GetRegionalDistributions() []*common.RegionalDistribution
- func (*PlanAssignmentRequest_RequestType_Assign) GotenMessage()
- func (o *PlanAssignmentRequest_RequestType_Assign) GotenObjectExt()
- func (obj *PlanAssignmentRequest_RequestType_Assign) GotenValidate() error
- func (o *PlanAssignmentRequest_RequestType_Assign) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_RequestType_Assign_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Assign) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Assign_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Assign) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_RequestType_Assign) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_RequestType_Assign) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_RequestType_Assign) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_RequestType_Assign) Merge(source *PlanAssignmentRequest_RequestType_Assign)
- func (o *PlanAssignmentRequest_RequestType_Assign) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_RequestType_Assign) ProtoMessage()
- func (m *PlanAssignmentRequest_RequestType_Assign) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_RequestType_Assign) Reset()
- func (m *PlanAssignmentRequest_RequestType_Assign) SetExtensions(fv []*common.Allowance)
- func (m *PlanAssignmentRequest_RequestType_Assign) SetPlan(fv *plan.Reference)
- func (m *PlanAssignmentRequest_RequestType_Assign) SetRegionalDistributions(fv []*common.RegionalDistribution)
- func (m *PlanAssignmentRequest_RequestType_Assign) String() string
- func (m *PlanAssignmentRequest_RequestType_Assign) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_RequestType_Assign) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) Resource() PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) Value() PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayItemValue(subPathArrayItemValue common.Allowance_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayOfValues(subPathArrayOfValues common.Allowance_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubPath(subPath common.Allowance_FieldPath) *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubValue(subPathValue common.Allowance_FieldPathValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) WithValue(value int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorPlan
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithValue(value *plan.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubPath(subPath common.RegionalDistribution_FieldPath) *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubValue(subPathValue common.RegionalDistribution_FieldPathValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestTypeAssign_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_Assign_
- type PlanAssignmentRequest_RequestType_Assign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeAssign_FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Assign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeAssign_FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_RequestType_Assign_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_RequestType_Assign_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_RequestType_Assign
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Assign)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Assign_FieldMask) *PlanAssignmentRequest_RequestType_Assign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_Extend
- func (o *PlanAssignmentRequest_RequestType_Extend) Clone() *PlanAssignmentRequest_RequestType_Extend
- func (o *PlanAssignmentRequest_RequestType_Extend) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_RequestType_Extend) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_RequestType_Extend) GetAdditions() []*common.Allowance
- func (m *PlanAssignmentRequest_RequestType_Extend) GetAssignment() *plan_assignment.Reference
- func (m *PlanAssignmentRequest_RequestType_Extend) GetRegionalDistributions() []*common.RegionalDistribution
- func (*PlanAssignmentRequest_RequestType_Extend) GotenMessage()
- func (o *PlanAssignmentRequest_RequestType_Extend) GotenObjectExt()
- func (obj *PlanAssignmentRequest_RequestType_Extend) GotenValidate() error
- func (o *PlanAssignmentRequest_RequestType_Extend) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_RequestType_Extend_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Extend) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Extend_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Extend) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_RequestType_Extend) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_RequestType_Extend) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_RequestType_Extend) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_RequestType_Extend) Merge(source *PlanAssignmentRequest_RequestType_Extend)
- func (o *PlanAssignmentRequest_RequestType_Extend) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_RequestType_Extend) ProtoMessage()
- func (m *PlanAssignmentRequest_RequestType_Extend) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_RequestType_Extend) Reset()
- func (m *PlanAssignmentRequest_RequestType_Extend) SetAdditions(fv []*common.Allowance)
- func (m *PlanAssignmentRequest_RequestType_Extend) SetAssignment(fv *plan_assignment.Reference)
- func (m *PlanAssignmentRequest_RequestType_Extend) SetRegionalDistributions(fv []*common.RegionalDistribution)
- func (m *PlanAssignmentRequest_RequestType_Extend) String() string
- func (m *PlanAssignmentRequest_RequestType_Extend) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_RequestType_Extend) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) Resource() PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) Value() PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayItemValue(subPathArrayItemValue common.Allowance_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayOfValues(subPathArrayOfValues common.Allowance_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubPath(subPath common.Allowance_FieldPath) *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubValue(subPathValue common.Allowance_FieldPathValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) WithValue(value int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubPath(subPath common.RegionalDistribution_FieldPath) *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubValue(subPathValue common.RegionalDistribution_FieldPathValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestTypeExtend_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_Extend_
- type PlanAssignmentRequest_RequestType_Extend_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeExtend_FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Extend_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeExtend_FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_RequestType_Extend_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_RequestType_Extend_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_RequestType_Extend
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Extend)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Extend_FieldMask) *PlanAssignmentRequest_RequestType_Extend_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) AppendPath(path PlanAssignmentRequestRequestType_FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) GetPaths() []PlanAssignmentRequestRequestType_FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_RequestType_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_RequestType_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Project(source *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_RequestType
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_FieldMask) *PlanAssignmentRequest_RequestType_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_Redistribute
- func (o *PlanAssignmentRequest_RequestType_Redistribute) Clone() *PlanAssignmentRequest_RequestType_Redistribute
- func (o *PlanAssignmentRequest_RequestType_Redistribute) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_RequestType_Redistribute) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_RequestType_Redistribute) GetAssignment() *plan_assignment.Reference
- func (m *PlanAssignmentRequest_RequestType_Redistribute) GetRegionalDistributions() []*common.RegionalDistribution
- func (*PlanAssignmentRequest_RequestType_Redistribute) GotenMessage()
- func (o *PlanAssignmentRequest_RequestType_Redistribute) GotenObjectExt()
- func (obj *PlanAssignmentRequest_RequestType_Redistribute) GotenValidate() error
- func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_RequestType_Redistribute) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_RequestType_Redistribute) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_RequestType_Redistribute) Merge(source *PlanAssignmentRequest_RequestType_Redistribute)
- func (o *PlanAssignmentRequest_RequestType_Redistribute) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoMessage()
- func (m *PlanAssignmentRequest_RequestType_Redistribute) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_RequestType_Redistribute) Reset()
- func (m *PlanAssignmentRequest_RequestType_Redistribute) SetAssignment(fv *plan_assignment.Reference)
- func (m *PlanAssignmentRequest_RequestType_Redistribute) SetRegionalDistributions(fv []*common.RegionalDistribution)
- func (m *PlanAssignmentRequest_RequestType_Redistribute) String() string
- func (m *PlanAssignmentRequest_RequestType_Redistribute) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_RequestType_Redistribute) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion
- func (s PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue(value int64) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) FieldPath() *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) FieldPath() *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) LimitsByRegion() ...
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) Resource() ...
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithItemValue(value *common.RegionalDistribution) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubPath(subPath common.RegionalDistribution_FieldPath) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubValue(subPathValue common.RegionalDistribution_FieldPathValue) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) FieldPath() *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithKey(key string) ...
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource
- func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) FieldPath() *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue
- type PlanAssignmentRequest_RequestType_Redistribute_
- type PlanAssignmentRequest_RequestType_Redistribute_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeRedistribute_FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeRedistribute_FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_RequestType_Redistribute_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_RequestType_Redistribute
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Redistribute)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_Unassign
- func (o *PlanAssignmentRequest_RequestType_Unassign) Clone() *PlanAssignmentRequest_RequestType_Unassign
- func (o *PlanAssignmentRequest_RequestType_Unassign) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_RequestType_Unassign) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_RequestType_Unassign) GetAssignment() *plan_assignment.Reference
- func (*PlanAssignmentRequest_RequestType_Unassign) GotenMessage()
- func (o *PlanAssignmentRequest_RequestType_Unassign) GotenObjectExt()
- func (obj *PlanAssignmentRequest_RequestType_Unassign) GotenValidate() error
- func (o *PlanAssignmentRequest_RequestType_Unassign) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_RequestType_Unassign_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Unassign) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Unassign_FieldMask
- func (o *PlanAssignmentRequest_RequestType_Unassign) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_RequestType_Unassign) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_RequestType_Unassign) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_RequestType_Unassign) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_RequestType_Unassign) Merge(source *PlanAssignmentRequest_RequestType_Unassign)
- func (o *PlanAssignmentRequest_RequestType_Unassign) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_RequestType_Unassign) ProtoMessage()
- func (m *PlanAssignmentRequest_RequestType_Unassign) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_RequestType_Unassign) Reset()
- func (m *PlanAssignmentRequest_RequestType_Unassign) SetAssignment(fv *plan_assignment.Reference)
- func (m *PlanAssignmentRequest_RequestType_Unassign) String() string
- func (m *PlanAssignmentRequest_RequestType_Unassign) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_RequestType_Unassign) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment
- func (PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) FieldPath() *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath
- func (s PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue
- type PlanAssignmentRequest_RequestType_Unassign_
- type PlanAssignmentRequest_RequestType_Unassign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeUnassign_FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Unassign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeUnassign_FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_RequestType_Unassign_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_RequestType_Unassign_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_RequestType_Unassign
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Unassign)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Unassign_FieldMask) *PlanAssignmentRequest_RequestType_Unassign_FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_Status
- func (o *PlanAssignmentRequest_Status) Clone() *PlanAssignmentRequest_Status
- func (o *PlanAssignmentRequest_Status) CloneRaw() gotenobject.GotenObjectExt
- func (*PlanAssignmentRequest_Status) Descriptor() ([]byte, []int)
- func (m *PlanAssignmentRequest_Status) GetConclusion() PlanAssignmentRequest_Status_Conclusion
- func (m *PlanAssignmentRequest_Status) GetReason() string
- func (*PlanAssignmentRequest_Status) GotenMessage()
- func (o *PlanAssignmentRequest_Status) GotenObjectExt()
- func (obj *PlanAssignmentRequest_Status) GotenValidate() error
- func (o *PlanAssignmentRequest_Status) MakeDiffFieldMask(other *PlanAssignmentRequest_Status) *PlanAssignmentRequest_Status_FieldMask
- func (o *PlanAssignmentRequest_Status) MakeFullFieldMask() *PlanAssignmentRequest_Status_FieldMask
- func (o *PlanAssignmentRequest_Status) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
- func (o *PlanAssignmentRequest_Status) MakeRawFullFieldMask() gotenobject.FieldMask
- func (m *PlanAssignmentRequest_Status) Marshal() ([]byte, error)
- func (m *PlanAssignmentRequest_Status) MarshalJSON() ([]byte, error)
- func (o *PlanAssignmentRequest_Status) Merge(source *PlanAssignmentRequest_Status)
- func (o *PlanAssignmentRequest_Status) MergeRaw(source gotenobject.GotenObjectExt)
- func (*PlanAssignmentRequest_Status) ProtoMessage()
- func (m *PlanAssignmentRequest_Status) ProtoReflect() preflect.Message
- func (m *PlanAssignmentRequest_Status) Reset()
- func (m *PlanAssignmentRequest_Status) SetConclusion(fv PlanAssignmentRequest_Status_Conclusion)
- func (m *PlanAssignmentRequest_Status) SetReason(fv string)
- func (m *PlanAssignmentRequest_Status) String() string
- func (m *PlanAssignmentRequest_Status) Unmarshal(b []byte) error
- func (m *PlanAssignmentRequest_Status) UnmarshalJSON(data []byte) error
- type PlanAssignmentRequest_StatusPathSelectorConclusion
- func (PlanAssignmentRequest_StatusPathSelectorConclusion) FieldPath() *PlanAssignmentRequestStatus_FieldTerminalPath
- func (s PlanAssignmentRequest_StatusPathSelectorConclusion) WithArrayOfValues(values []PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_StatusPathSelectorConclusion) WithValue(value PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequestStatus_FieldTerminalPathValue
- type PlanAssignmentRequest_StatusPathSelectorReason
- func (PlanAssignmentRequest_StatusPathSelectorReason) FieldPath() *PlanAssignmentRequestStatus_FieldTerminalPath
- func (s PlanAssignmentRequest_StatusPathSelectorReason) WithArrayOfValues(values []string) *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues
- func (s PlanAssignmentRequest_StatusPathSelectorReason) WithValue(value string) *PlanAssignmentRequestStatus_FieldTerminalPathValue
- type PlanAssignmentRequest_Status_Conclusion
- func (PlanAssignmentRequest_Status_Conclusion) Descriptor() preflect.EnumDescriptor
- func (x PlanAssignmentRequest_Status_Conclusion) Enum() *PlanAssignmentRequest_Status_Conclusion
- func (PlanAssignmentRequest_Status_Conclusion) EnumDescriptor() ([]byte, []int)
- func (x PlanAssignmentRequest_Status_Conclusion) Number() preflect.EnumNumber
- func (x PlanAssignmentRequest_Status_Conclusion) String() string
- func (PlanAssignmentRequest_Status_Conclusion) Type() preflect.EnumType
- type PlanAssignmentRequest_Status_FieldMask
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) AppendPath(path PlanAssignmentRequestStatus_FieldPath)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) AppendRawPath(path gotenobject.FieldPath)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) FilterInputFields() *PlanAssignmentRequest_Status_FieldMask
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) GetPaths() []PlanAssignmentRequestStatus_FieldPath
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) GetRawPaths() []gotenobject.FieldPath
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) IsFull() bool
- func (fieldMask PlanAssignmentRequest_Status_FieldMask) Marshal() ([]byte, error)
- func (fieldMask PlanAssignmentRequest_Status_FieldMask) MarshalJSON() ([]byte, error)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) PathsCount() int
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Project(source *PlanAssignmentRequest_Status) *PlanAssignmentRequest_Status
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProtoMessage()
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProtoReflect() preflect.Message
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Reset()
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Set(target, source *PlanAssignmentRequest_Status)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SetFromCliFlag(raw string) error
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Size() int
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) String() string
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Subtract(other *PlanAssignmentRequest_Status_FieldMask) *PlanAssignmentRequest_Status_FieldMask
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Unmarshal(data []byte) error
- func (fieldMask *PlanAssignmentRequest_Status_FieldMask) UnmarshalJSON(data []byte) error
- 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) GetPlanAssignmentRequest() *PlanAssignmentRequest
- 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 *PlanAssignmentRequest)
- 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 = "projects/{project}/planAssignmentRequests/{plan_assignment_request}" NamePattern_Organization = "organizations/{organization}/planAssignmentRequests/{plan_assignment_request}" )
Variables ¶
var ( PlanAssignmentRequest_Status_Conclusion_name = map[int32]string{ 0: "UNDEFINED", 1: "PENDING", 2: "APPROVED", 3: "REJECTED", } PlanAssignmentRequest_Status_Conclusion_value = map[string]int32{ "UNDEFINED": 0, "PENDING": 1, "APPROVED": 2, "REJECTED": 3, } )
Functions ¶
func AsAnyCastAccess ¶
func AsAnyCastAccess(access PlanAssignmentRequestAccess) gotenresource.Access
Types ¶
type Descriptor ¶
type Descriptor struct {
// contains filtered or unexported fields
}
func GetDescriptor ¶
func GetDescriptor() *Descriptor
func (*Descriptor) CanBeParentless ¶ added in v1.0.21
func (d *Descriptor) CanBeParentless() bool
func (*Descriptor) GetNameDescriptor ¶
func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor
func (*Descriptor) GetParentResDescriptors ¶ added in v1.0.21
func (d *Descriptor) GetParentResDescriptors() []gotenresource.Descriptor
func (*Descriptor) GetResourceTypeName ¶
func (d *Descriptor) GetResourceTypeName() *gotenresource.TypeName
func (*Descriptor) NewGetQuery ¶
func (d *Descriptor) NewGetQuery() gotenresource.GetQuery
func (*Descriptor) NewListQuery ¶
func (d *Descriptor) NewListQuery() gotenresource.ListQuery
func (*Descriptor) NewNameList ¶
func (d *Descriptor) NewNameList(size, reserved int) gotenresource.NameList
func (*Descriptor) NewParentNameList ¶
func (d *Descriptor) NewParentNameList(size, reserved int) gotenresource.ParentNameList
func (*Descriptor) NewParentReferenceList ¶
func (d *Descriptor) NewParentReferenceList(size, reserved int) gotenresource.ParentReferenceList
func (*Descriptor) NewQueryResultChange ¶
func (d *Descriptor) NewQueryResultChange() gotenresource.QueryResultChange
func (*Descriptor) NewQueryResultSnapshot ¶
func (d *Descriptor) NewQueryResultSnapshot() gotenresource.QueryResultSnapshot
func (*Descriptor) NewReferenceList ¶
func (d *Descriptor) NewReferenceList(size, reserved int) gotenresource.ReferenceList
func (*Descriptor) NewResource ¶
func (d *Descriptor) NewResource() gotenresource.Resource
func (*Descriptor) NewResourceChange ¶
func (d *Descriptor) NewResourceChange() gotenresource.ResourceChange
func (*Descriptor) NewResourceChangeList ¶
func (d *Descriptor) NewResourceChangeList(size, reserved int) gotenresource.ResourceChangeList
func (*Descriptor) NewResourceChangeMap ¶
func (d *Descriptor) NewResourceChangeMap(reserved int) gotenresource.ResourceChangeMap
func (*Descriptor) NewResourceCursor ¶
func (d *Descriptor) NewResourceCursor() gotenresource.Cursor
func (*Descriptor) NewResourceFieldMask ¶
func (d *Descriptor) NewResourceFieldMask() gotenobject.FieldMask
func (*Descriptor) NewResourceFilter ¶
func (d *Descriptor) NewResourceFilter() gotenresource.Filter
func (*Descriptor) NewResourceList ¶
func (d *Descriptor) NewResourceList(size, reserved int) gotenresource.ResourceList
func (*Descriptor) NewResourceMap ¶
func (d *Descriptor) NewResourceMap(reserved int) gotenresource.ResourceMap
func (*Descriptor) NewResourceName ¶
func (d *Descriptor) NewResourceName() gotenresource.Name
func (*Descriptor) NewResourceOrderBy ¶
func (d *Descriptor) NewResourceOrderBy() gotenresource.OrderBy
func (*Descriptor) NewResourcePager ¶ 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)
func (*Descriptor) SupportsMetadata ¶ added in v1.0.21
func (d *Descriptor) SupportsMetadata() bool
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) Evaluate ¶
func (filter *Filter) Evaluate(res *PlanAssignmentRequest) bool
Evaluate is a wrapper on FilterCondition, which also handles nil pointer
func (*Filter) EvaluateRaw ¶
func (filter *Filter) EvaluateRaw(res gotenresource.Resource) bool
func (*Filter) FilterSlice ¶
func (filter *Filter) FilterSlice(in []*PlanAssignmentRequest) (out []*PlanAssignmentRequest)
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 PlanAssignmentRequest_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 *PlanAssignmentRequest) bool // Whether this condition is at least as specific as other. // When true, any PlanAssignmentRequest 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 PlanAssignmentRequest_FieldPath) bool // contains filtered or unexported methods }
func AndFilterConditions ¶
func AndFilterConditions(conds ...FilterCondition) FilterCondition
type FilterConditionCompare ¶
type FilterConditionCompare struct { Operator filterParser.CompareOperator PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 PlanAssignmentRequest_FieldPath Value PlanAssignmentRequest_FieldPathArrayItemValue Values []PlanAssignmentRequest_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 *PlanAssignmentRequest) bool
func (*FilterConditionContains) EvaluateRaw ¶
func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool
func (*FilterConditionContains) GetFieldPath ¶
func (cond *FilterConditionContains) GetFieldPath() PlanAssignmentRequest_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 PlanAssignmentRequest_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 {
PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 {
PlanAssignmentRequest_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 *PlanAssignmentRequest) 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 PlanAssignmentRequest_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 *PlanAssignmentRequest_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 *PlanAssignmentRequest_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 PlanAssignmentRequestId string `firestore:"planAssignmentRequestId"` }
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) GetOrganizationName ¶
func (name *Name) GetOrganizationName() *iam_organization.Name
func (*Name) GetPattern ¶
func (name *Name) GetPattern() gotenresource.NamePattern
func (*Name) GetProjectName ¶
func (name *Name) GetProjectName() *iam_project.Name
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) SetOrganization ¶
func (b *NameBuilder) SetOrganization(parent *iam_organization.Name) *NameBuilder
func (*NameBuilder) SetOrganizationId ¶
func (b *NameBuilder) SetOrganizationId(id string) *NameBuilder
func (*NameBuilder) SetProject ¶
func (b *NameBuilder) SetProject(parent *iam_project.Name) *NameBuilder
func (*NameBuilder) SetProjectId ¶
func (b *NameBuilder) SetProjectId(id string) *NameBuilder
type NamePattern ¶
type NamePattern struct {
Pattern gotenresource.NamePattern `firestore:"pattern"`
}
type OrderBy ¶
type OrderBy struct {
OrderByFields []OrderByField
}
OrderBy Is string encoded Custom Protobuf type, which handles "order_by" field order_by consists of coma delimited OrderBy specs, which denote ordering priority, e.g. "state.value asc, state.capacity desc"
func (*OrderBy) Compare ¶
func (orderBy *OrderBy) Compare(left, right *PlanAssignmentRequest) int
func (*OrderBy) CompareRaw ¶
func (orderBy *OrderBy) CompareRaw(left, right gotenresource.Resource) int
func (*OrderBy) GetFieldMask ¶
func (orderBy *OrderBy) GetFieldMask() *PlanAssignmentRequest_FieldMask
func (*OrderBy) GetOrderByFields ¶
func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField
func (*OrderBy) GetRawFieldMask ¶
func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask
func (*OrderBy) InsertSorted ¶
func (orderBy *OrderBy) InsertSorted(sorted PlanAssignmentRequestList, elem *PlanAssignmentRequest) (PlanAssignmentRequestList, int)
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) Sort ¶
func (orderBy *OrderBy) Sort(results PlanAssignmentRequestList)
func (*OrderBy) SortRaw ¶
func (orderBy *OrderBy) SortRaw(results gotenresource.ResourceList)
type OrderByField ¶
type OrderByField struct { FieldPath PlanAssignmentRequest_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 *PlanAssignmentRequest) 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"` OrganizationId string `firestore:"organizationId"` }
func MustParseParentName ¶
func MustParseParentName(name string) *ParentName
func ParseParentName ¶
func ParseParentName(name string) (*ParentName, error)
func (*ParentName) AsRawReference ¶
func (name *ParentName) AsRawReference() gotenresource.Reference
func (*ParentName) AsReference ¶
func (name *ParentName) AsReference() *ParentReference
func (*ParentName) ConvertToNative ¶ added in v1.0.21
func (name *ParentName) ConvertToNative(typeDesc reflect.Type) (interface{}, error)
func (*ParentName) ConvertToType ¶ added in v1.0.21
func (name *ParentName) ConvertToType(typeVal ref.Type) ref.Val
func (*ParentName) DescendsFrom ¶
func (name *ParentName) DescendsFrom(ancestor string) bool
func (*ParentName) 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) GetOrganizationName ¶
func (name *ParentName) GetOrganizationName() *iam_organization.Name
func (*ParentName) GetPattern ¶
func (name *ParentName) GetPattern() gotenresource.NamePattern
func (*ParentName) GetProjectName ¶
func (name *ParentName) GetProjectName() *iam_project.Name
func (*ParentName) GetResourceDescriptor ¶
func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor
func (*ParentName) GetSegments ¶
func (name *ParentName) GetSegments() gotenresource.NameSegments
func (*ParentName) GotenEqual ¶
func (name *ParentName) GotenEqual(other interface{}) bool
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*ParentName) HasTrait ¶ added in v1.0.21
func (name *ParentName) HasTrait(trait int) bool
func (*ParentName) IsFullyQualified ¶
func (name *ParentName) IsFullyQualified() bool
func (*ParentName) IsSpecified ¶
func (name *ParentName) IsSpecified() bool
func (*ParentName) 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
func (*ParentName) Type ¶ added in v1.0.21
func (name *ParentName) Type() ref.Type
func (*ParentName) TypeName ¶ added in v1.0.21
func (name *ParentName) TypeName() string
func (*ParentName) Value ¶ added in v1.0.21
func (name *ParentName) Value() interface{}
type ParentReference ¶
type ParentReference struct { ParentName // contains filtered or unexported fields }
func MakeParentReference ¶
func MakeParentReference(name *ParentName) (*ParentReference, error)
func MustParseParentReference ¶
func MustParseParentReference(name string) *ParentReference
func ParseParentReference ¶
func ParseParentReference(name string) (*ParentReference, error)
func (*ParentReference) ClearCached ¶
func (ref *ParentReference) ClearCached()
func (*ParentReference) GetIParentName ¶ 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) GetOrganization ¶
func (ref *ParentReference) GetOrganization() *iam_organization.Organization
func (*ParentReference) GetOrganizationReference ¶
func (ref *ParentReference) GetOrganizationReference() *iam_organization.Reference
func (*ParentReference) GetPattern ¶
func (ref *ParentReference) GetPattern() gotenresource.NamePattern
func (*ParentReference) GetProject ¶
func (ref *ParentReference) GetProject() *iam_project.Project
func (*ParentReference) GetProjectReference ¶
func (ref *ParentReference) GetProjectReference() *iam_project.Reference
func (*ParentReference) GetRawResource ¶
func (ref *ParentReference) GetRawResource() gotenresource.Resource
func (*ParentReference) GetResourceDescriptor ¶
func (ref *ParentReference) GetResourceDescriptor() gotenresource.Descriptor
func (*ParentReference) GetSegments ¶
func (ref *ParentReference) GetSegments() gotenresource.NameSegments
func (*ParentReference) GetUnderlyingReference ¶
func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference
func (*ParentReference) GotenEqual ¶
func (ref *ParentReference) GotenEqual(other interface{}) bool
GotenEqual returns true if other is of same type and paths are equal (implements goten.Equaler interface)
func (*ParentReference) IsFullyQualified ¶
func (ref *ParentReference) IsFullyQualified() bool
func (*ParentReference) IsSpecified ¶
func (ref *ParentReference) IsSpecified() bool
func (*ParentReference) Matches ¶
func (name *ParentReference) Matches(other interface{}) bool
Matches is same as GotenEqual, but also will accept "other" if name is wildcard.
func (*ParentReference) ParseProtoString ¶
func (ref *ParentReference) ParseProtoString(data string) error
func (*ParentReference) ProtoString ¶
func (ref *ParentReference) ProtoString() (string, error)
func (*ParentReference) ResolveRaw ¶
func (ref *ParentReference) ResolveRaw(res gotenresource.Resource) error
func (*ParentReference) Resolved ¶
func (ref *ParentReference) Resolved() bool
func (*ParentReference) SetFromCliFlag ¶
func (ref *ParentReference) SetFromCliFlag(raw string) error
implement CustomTypeCliValue method
func (*ParentReference) String ¶
func (ref *ParentReference) String() string
type PlanAssignmentRequest ¶
type PlanAssignmentRequest struct { // Name of PlanAssignmentRequest // 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"` // Purpose of this request Request *PlanAssignmentRequest_RequestType `protobuf:"bytes,2,opt,name=request,proto3" json:"request,omitempty" firestore:"request"` // Service associated with this request. Service *meta_service.Reference `protobuf:"bytes,3,opt,customtype=Reference,name=service,proto3" json:"service,omitempty" firestore:"service"` // Approver Approver *iam_organization.Reference `protobuf:"bytes,4,opt,customtype=Reference,name=approver,proto3" json:"approver,omitempty" firestore:"approver"` Status *PlanAssignmentRequest_Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty" firestore:"status"` // Metadata Metadata *meta.Meta `protobuf:"bytes,6,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"` // contains filtered or unexported fields }
PlanAssignmentRequest gives administrator a way to modify their PlanAssignment instances in a safe way, with respect to parent organization/system limits. PlanAssignmentRequest can be used to: * Assign/Reassign new plan for specific service * Extend specific resource limits for existing PlanAssignment * Redistribute limits across regions (available for project PlanAssignments) * Unassign existing PlanAssignment Certain requests may be automatically approved by system (for example, if they would result in lowering limits), other require higher administrator consent. User creating request should check status field after operation to check if request was automatically approved.
func (*PlanAssignmentRequest) Clone ¶
func (o *PlanAssignmentRequest) Clone() *PlanAssignmentRequest
func (*PlanAssignmentRequest) CloneRaw ¶
func (o *PlanAssignmentRequest) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest) Descriptor ¶
func (*PlanAssignmentRequest) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest) EnsureMetadata ¶ added in v1.0.21
func (r *PlanAssignmentRequest) EnsureMetadata() *meta.Meta
func (*PlanAssignmentRequest) GetApprover ¶
func (m *PlanAssignmentRequest) GetApprover() *iam_organization.Reference
func (*PlanAssignmentRequest) GetMetadata ¶
func (m *PlanAssignmentRequest) GetMetadata() *meta.Meta
func (*PlanAssignmentRequest) GetName ¶
func (m *PlanAssignmentRequest) GetName() *Name
func (*PlanAssignmentRequest) GetRawName ¶
func (r *PlanAssignmentRequest) GetRawName() gotenresource.Name
func (*PlanAssignmentRequest) GetRequest ¶
func (m *PlanAssignmentRequest) GetRequest() *PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequest) GetResourceDescriptor ¶
func (r *PlanAssignmentRequest) GetResourceDescriptor() gotenresource.Descriptor
func (*PlanAssignmentRequest) GetService ¶
func (m *PlanAssignmentRequest) GetService() *meta_service.Reference
func (*PlanAssignmentRequest) GetStatus ¶
func (m *PlanAssignmentRequest) GetStatus() *PlanAssignmentRequest_Status
func (*PlanAssignmentRequest) GotenMessage ¶
func (*PlanAssignmentRequest) GotenMessage()
func (*PlanAssignmentRequest) GotenObjectExt ¶
func (o *PlanAssignmentRequest) GotenObjectExt()
func (*PlanAssignmentRequest) GotenValidate ¶
func (obj *PlanAssignmentRequest) GotenValidate() error
func (*PlanAssignmentRequest) MakeDiffFieldMask ¶
func (o *PlanAssignmentRequest) MakeDiffFieldMask(other *PlanAssignmentRequest) *PlanAssignmentRequest_FieldMask
func (*PlanAssignmentRequest) MakeFullFieldMask ¶
func (o *PlanAssignmentRequest) MakeFullFieldMask() *PlanAssignmentRequest_FieldMask
func (*PlanAssignmentRequest) MakeRawDiffFieldMask ¶
func (o *PlanAssignmentRequest) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest) MakeRawFullFieldMask ¶
func (o *PlanAssignmentRequest) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest) Marshal ¶
func (m *PlanAssignmentRequest) Marshal() ([]byte, error)
func (*PlanAssignmentRequest) MarshalJSON ¶
func (m *PlanAssignmentRequest) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest) MaybePopulateDefaults ¶
func (r *PlanAssignmentRequest) MaybePopulateDefaults() error
func (*PlanAssignmentRequest) Merge ¶
func (o *PlanAssignmentRequest) Merge(source *PlanAssignmentRequest)
func (*PlanAssignmentRequest) MergeRaw ¶
func (o *PlanAssignmentRequest) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest) ProtoMessage ¶
func (*PlanAssignmentRequest) ProtoMessage()
func (*PlanAssignmentRequest) ProtoReflect ¶
func (m *PlanAssignmentRequest) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest) Reset ¶
func (m *PlanAssignmentRequest) Reset()
func (*PlanAssignmentRequest) SetApprover ¶
func (m *PlanAssignmentRequest) SetApprover(fv *iam_organization.Reference)
func (*PlanAssignmentRequest) SetMetadata ¶
func (m *PlanAssignmentRequest) SetMetadata(fv *meta.Meta)
func (*PlanAssignmentRequest) SetName ¶
func (m *PlanAssignmentRequest) SetName(fv *Name)
func (*PlanAssignmentRequest) SetRequest ¶
func (m *PlanAssignmentRequest) SetRequest(fv *PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequest) SetService ¶
func (m *PlanAssignmentRequest) SetService(fv *meta_service.Reference)
func (*PlanAssignmentRequest) SetStatus ¶
func (m *PlanAssignmentRequest) SetStatus(fv *PlanAssignmentRequest_Status)
func (*PlanAssignmentRequest) String ¶
func (m *PlanAssignmentRequest) String() string
func (*PlanAssignmentRequest) Unmarshal ¶
func (m *PlanAssignmentRequest) Unmarshal(b []byte) error
func (*PlanAssignmentRequest) UnmarshalJSON ¶
func (m *PlanAssignmentRequest) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestAccess ¶
type PlanAssignmentRequestAccess interface { GetPlanAssignmentRequest(context.Context, *GetQuery) (*PlanAssignmentRequest, error) BatchGetPlanAssignmentRequests(context.Context, []*Reference, ...gotenresource.BatchGetOption) error QueryPlanAssignmentRequests(context.Context, *ListQuery) (*QueryResultSnapshot, error) WatchPlanAssignmentRequest(context.Context, *GetQuery, func(*PlanAssignmentRequestChange) error) error WatchPlanAssignmentRequests(context.Context, *WatchQuery, func(*QueryResultChange) error) error SavePlanAssignmentRequest(context.Context, *PlanAssignmentRequest, ...gotenresource.SaveOption) error DeletePlanAssignmentRequest(context.Context, *Reference, ...gotenresource.DeleteOption) error }
type PlanAssignmentRequestChange ¶
type PlanAssignmentRequestChange struct { // PlanAssignmentRequest change // // Types that are valid to be assigned to ChangeType: // *PlanAssignmentRequestChange_Added_ // *PlanAssignmentRequestChange_Modified_ // *PlanAssignmentRequestChange_Current_ // *PlanAssignmentRequestChange_Removed_ ChangeType isPlanAssignmentRequestChange_ChangeType `protobuf_oneof:"change_type"` // contains filtered or unexported fields }
PlanAssignmentRequestChange is used by Watch notifications Responses to describe change of single PlanAssignmentRequest One of Added, Modified, Removed
func (*PlanAssignmentRequestChange) Descriptor ¶
func (*PlanAssignmentRequestChange) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequestChange.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequestChange) GetAdded ¶
func (m *PlanAssignmentRequestChange) GetAdded() *PlanAssignmentRequestChange_Added
func (*PlanAssignmentRequestChange) GetChangeType ¶
func (m *PlanAssignmentRequestChange) GetChangeType() isPlanAssignmentRequestChange_ChangeType
func (*PlanAssignmentRequestChange) GetCurrent ¶
func (m *PlanAssignmentRequestChange) GetCurrent() *PlanAssignmentRequestChange_Current
func (*PlanAssignmentRequestChange) GetCurrentViewIndex ¶
func (c *PlanAssignmentRequestChange) GetCurrentViewIndex() int32
func (*PlanAssignmentRequestChange) GetModified ¶
func (m *PlanAssignmentRequestChange) GetModified() *PlanAssignmentRequestChange_Modified
func (*PlanAssignmentRequestChange) GetPlanAssignmentRequest ¶
func (c *PlanAssignmentRequestChange) GetPlanAssignmentRequest() *PlanAssignmentRequest
func (*PlanAssignmentRequestChange) GetPlanAssignmentRequestName ¶
func (c *PlanAssignmentRequestChange) GetPlanAssignmentRequestName() *Name
func (*PlanAssignmentRequestChange) GetPreviousViewIndex ¶
func (c *PlanAssignmentRequestChange) GetPreviousViewIndex() int32
func (*PlanAssignmentRequestChange) GetRawName ¶
func (c *PlanAssignmentRequestChange) GetRawName() gotenresource.Name
func (*PlanAssignmentRequestChange) GetRawResource ¶
func (c *PlanAssignmentRequestChange) GetRawResource() gotenresource.Resource
func (*PlanAssignmentRequestChange) GetRemoved ¶
func (m *PlanAssignmentRequestChange) GetRemoved() *PlanAssignmentRequestChange_Removed
func (*PlanAssignmentRequestChange) GotenMessage ¶
func (*PlanAssignmentRequestChange) GotenMessage()
func (*PlanAssignmentRequestChange) GotenValidate ¶
func (obj *PlanAssignmentRequestChange) GotenValidate() error
func (*PlanAssignmentRequestChange) IsAdd ¶
func (c *PlanAssignmentRequestChange) IsAdd() bool
func (*PlanAssignmentRequestChange) IsCurrent ¶
func (c *PlanAssignmentRequestChange) IsCurrent() bool
func (*PlanAssignmentRequestChange) IsDelete ¶
func (c *PlanAssignmentRequestChange) IsDelete() bool
func (*PlanAssignmentRequestChange) IsModify ¶
func (c *PlanAssignmentRequestChange) IsModify() bool
func (*PlanAssignmentRequestChange) Marshal ¶
func (m *PlanAssignmentRequestChange) Marshal() ([]byte, error)
func (*PlanAssignmentRequestChange) MarshalJSON ¶
func (m *PlanAssignmentRequestChange) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequestChange) ProtoMessage ¶
func (*PlanAssignmentRequestChange) ProtoMessage()
func (*PlanAssignmentRequestChange) ProtoReflect ¶
func (m *PlanAssignmentRequestChange) ProtoReflect() preflect.Message
func (*PlanAssignmentRequestChange) Reset ¶
func (m *PlanAssignmentRequestChange) Reset()
func (*PlanAssignmentRequestChange) SetAdded ¶
func (m *PlanAssignmentRequestChange) SetAdded(fv *PlanAssignmentRequestChange_Added)
func (*PlanAssignmentRequestChange) SetAddedRaw ¶
func (c *PlanAssignmentRequestChange) SetAddedRaw(snapshot gotenresource.Resource, idx int)
func (*PlanAssignmentRequestChange) SetChangeType ¶
func (m *PlanAssignmentRequestChange) SetChangeType(ofv isPlanAssignmentRequestChange_ChangeType)
func (*PlanAssignmentRequestChange) SetCurrent ¶
func (m *PlanAssignmentRequestChange) SetCurrent(fv *PlanAssignmentRequestChange_Current)
func (*PlanAssignmentRequestChange) SetCurrentRaw ¶
func (c *PlanAssignmentRequestChange) SetCurrentRaw(snapshot gotenresource.Resource)
func (*PlanAssignmentRequestChange) SetDeletedRaw ¶
func (c *PlanAssignmentRequestChange) SetDeletedRaw(name gotenresource.Name, idx int)
func (*PlanAssignmentRequestChange) SetModified ¶
func (m *PlanAssignmentRequestChange) SetModified(fv *PlanAssignmentRequestChange_Modified)
func (*PlanAssignmentRequestChange) SetModifiedRaw ¶
func (c *PlanAssignmentRequestChange) SetModifiedRaw(name gotenresource.Name, snapshot gotenresource.Resource, prevIdx int, newIdx int)
func (*PlanAssignmentRequestChange) SetRemoved ¶
func (m *PlanAssignmentRequestChange) SetRemoved(fv *PlanAssignmentRequestChange_Removed)
func (*PlanAssignmentRequestChange) String ¶
func (m *PlanAssignmentRequestChange) String() string
func (*PlanAssignmentRequestChange) Unmarshal ¶
func (m *PlanAssignmentRequestChange) Unmarshal(b []byte) error
func (*PlanAssignmentRequestChange) UnmarshalJSON ¶
func (m *PlanAssignmentRequestChange) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestChangeList ¶
type PlanAssignmentRequestChangeList []*PlanAssignmentRequestChange
func (PlanAssignmentRequestChangeList) Append ¶
func (l PlanAssignmentRequestChangeList) Append(item gotenresource.ResourceChange) gotenresource.ResourceChangeList
func (PlanAssignmentRequestChangeList) AppendList ¶
func (l PlanAssignmentRequestChangeList) AppendList(list gotenresource.ResourceChangeList) gotenresource.ResourceChangeList
func (PlanAssignmentRequestChangeList) At ¶
func (l PlanAssignmentRequestChangeList) At(idx int) gotenresource.ResourceChange
func (PlanAssignmentRequestChangeList) Length ¶
func (l PlanAssignmentRequestChangeList) Length() int
func (PlanAssignmentRequestChangeList) Set ¶
func (l PlanAssignmentRequestChangeList) Set(idx int, change gotenresource.ResourceChange)
func (PlanAssignmentRequestChangeList) Slice ¶
func (l PlanAssignmentRequestChangeList) Slice(first, second int) gotenresource.ResourceChangeList
type PlanAssignmentRequestChangeMap ¶
type PlanAssignmentRequestChangeMap map[Name]*PlanAssignmentRequestChange
func (PlanAssignmentRequestChangeMap) Delete ¶
func (m PlanAssignmentRequestChangeMap) Delete(name gotenresource.Name)
func (PlanAssignmentRequestChangeMap) ForEach ¶
func (m PlanAssignmentRequestChangeMap) ForEach(cb func(gotenresource.Name, gotenresource.ResourceChange) bool)
func (PlanAssignmentRequestChangeMap) Get ¶
func (m PlanAssignmentRequestChangeMap) Get(name gotenresource.Name) gotenresource.ResourceChange
func (PlanAssignmentRequestChangeMap) Length ¶
func (m PlanAssignmentRequestChangeMap) Length() int
func (PlanAssignmentRequestChangeMap) Set ¶
func (m PlanAssignmentRequestChangeMap) Set(change gotenresource.ResourceChange)
type PlanAssignmentRequestChange_Added ¶
type PlanAssignmentRequestChange_Added struct { PlanAssignmentRequest *PlanAssignmentRequest `` /* 160-byte string literal not displayed */ // Integer describing index of added PlanAssignmentRequest 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 }
PlanAssignmentRequest has been added to query view
func (*PlanAssignmentRequestChange_Added) Descriptor ¶
func (*PlanAssignmentRequestChange_Added) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequestChange_Added.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequestChange_Added) GetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Added) GetPlanAssignmentRequest() *PlanAssignmentRequest
func (*PlanAssignmentRequestChange_Added) GetViewIndex ¶
func (m *PlanAssignmentRequestChange_Added) GetViewIndex() int32
func (*PlanAssignmentRequestChange_Added) GotenMessage ¶
func (*PlanAssignmentRequestChange_Added) GotenMessage()
func (*PlanAssignmentRequestChange_Added) GotenValidate ¶
func (obj *PlanAssignmentRequestChange_Added) GotenValidate() error
func (*PlanAssignmentRequestChange_Added) Marshal ¶
func (m *PlanAssignmentRequestChange_Added) Marshal() ([]byte, error)
func (*PlanAssignmentRequestChange_Added) MarshalJSON ¶
func (m *PlanAssignmentRequestChange_Added) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequestChange_Added) ProtoMessage ¶
func (*PlanAssignmentRequestChange_Added) ProtoMessage()
func (*PlanAssignmentRequestChange_Added) ProtoReflect ¶
func (m *PlanAssignmentRequestChange_Added) ProtoReflect() preflect.Message
func (*PlanAssignmentRequestChange_Added) Reset ¶
func (m *PlanAssignmentRequestChange_Added) Reset()
func (*PlanAssignmentRequestChange_Added) SetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Added) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
func (*PlanAssignmentRequestChange_Added) SetViewIndex ¶
func (m *PlanAssignmentRequestChange_Added) SetViewIndex(fv int32)
func (*PlanAssignmentRequestChange_Added) String ¶
func (m *PlanAssignmentRequestChange_Added) String() string
func (*PlanAssignmentRequestChange_Added) Unmarshal ¶
func (m *PlanAssignmentRequestChange_Added) Unmarshal(b []byte) error
func (*PlanAssignmentRequestChange_Added) UnmarshalJSON ¶
func (m *PlanAssignmentRequestChange_Added) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestChange_Added_ ¶
type PlanAssignmentRequestChange_Added_ struct { // Added is returned when watched document is added, either created or // enters Query view Added *PlanAssignmentRequestChange_Added `protobuf:"bytes,1,opt,name=added,proto3,oneof" firestore:"added"` }
type PlanAssignmentRequestChange_Current ¶
type PlanAssignmentRequestChange_Current struct { PlanAssignmentRequest *PlanAssignmentRequest `` /* 160-byte string literal not displayed */ // contains filtered or unexported fields }
PlanAssignmentRequest has been added or modified in a query view. Version used for stateless watching
func (*PlanAssignmentRequestChange_Current) Descriptor ¶
func (*PlanAssignmentRequestChange_Current) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequestChange_Current.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequestChange_Current) GetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Current) GetPlanAssignmentRequest() *PlanAssignmentRequest
func (*PlanAssignmentRequestChange_Current) GotenMessage ¶
func (*PlanAssignmentRequestChange_Current) GotenMessage()
func (*PlanAssignmentRequestChange_Current) GotenValidate ¶
func (obj *PlanAssignmentRequestChange_Current) GotenValidate() error
func (*PlanAssignmentRequestChange_Current) Marshal ¶
func (m *PlanAssignmentRequestChange_Current) Marshal() ([]byte, error)
func (*PlanAssignmentRequestChange_Current) MarshalJSON ¶
func (m *PlanAssignmentRequestChange_Current) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequestChange_Current) ProtoMessage ¶
func (*PlanAssignmentRequestChange_Current) ProtoMessage()
func (*PlanAssignmentRequestChange_Current) ProtoReflect ¶
func (m *PlanAssignmentRequestChange_Current) ProtoReflect() preflect.Message
func (*PlanAssignmentRequestChange_Current) Reset ¶
func (m *PlanAssignmentRequestChange_Current) Reset()
func (*PlanAssignmentRequestChange_Current) SetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Current) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
func (*PlanAssignmentRequestChange_Current) String ¶
func (m *PlanAssignmentRequestChange_Current) String() string
func (*PlanAssignmentRequestChange_Current) Unmarshal ¶
func (m *PlanAssignmentRequestChange_Current) Unmarshal(b []byte) error
func (*PlanAssignmentRequestChange_Current) UnmarshalJSON ¶
func (m *PlanAssignmentRequestChange_Current) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestChange_Current_ ¶
type PlanAssignmentRequestChange_Current_ struct { // Current is returned in stateless watch when document enters query view or // is modified within. Current *PlanAssignmentRequestChange_Current `protobuf:"bytes,4,opt,name=current,proto3,oneof" firestore:"current"` }
type PlanAssignmentRequestChange_Modified ¶
type PlanAssignmentRequestChange_Modified struct { // Name of modified PlanAssignmentRequest Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"` // New version of PlanAssignmentRequest or masked difference, depending on // mask_changes instrumentation of issued // [WatchPlanAssignmentRequestRequest] or // [WatchPlanAssignmentRequestsRequest] PlanAssignmentRequest *PlanAssignmentRequest `` /* 160-byte string literal not displayed */ // Used when mask_changes is set, contains field paths of modified // properties. FieldMask *PlanAssignmentRequest_FieldMask `` /* 153-byte string literal not displayed */ // Previous view index specifies previous position of modified // PlanAssignmentRequest. When modification doesn't affect sorted order, // value will remain identical to [view_index]. PreviousViewIndex int32 `` /* 145-byte string literal not displayed */ // Integer specifying PlanAssignmentRequest 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 }
PlanAssignmentRequest changed some of it's fields - contains either full document or masked change
func (*PlanAssignmentRequestChange_Modified) Descriptor ¶
func (*PlanAssignmentRequestChange_Modified) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequestChange_Modified.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequestChange_Modified) GetFieldMask ¶
func (m *PlanAssignmentRequestChange_Modified) GetFieldMask() *PlanAssignmentRequest_FieldMask
func (*PlanAssignmentRequestChange_Modified) GetName ¶
func (m *PlanAssignmentRequestChange_Modified) GetName() *Name
func (*PlanAssignmentRequestChange_Modified) GetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Modified) GetPlanAssignmentRequest() *PlanAssignmentRequest
func (*PlanAssignmentRequestChange_Modified) GetPreviousViewIndex ¶
func (m *PlanAssignmentRequestChange_Modified) GetPreviousViewIndex() int32
func (*PlanAssignmentRequestChange_Modified) GetViewIndex ¶
func (m *PlanAssignmentRequestChange_Modified) GetViewIndex() int32
func (*PlanAssignmentRequestChange_Modified) GotenMessage ¶
func (*PlanAssignmentRequestChange_Modified) GotenMessage()
func (*PlanAssignmentRequestChange_Modified) GotenValidate ¶
func (obj *PlanAssignmentRequestChange_Modified) GotenValidate() error
func (*PlanAssignmentRequestChange_Modified) Marshal ¶
func (m *PlanAssignmentRequestChange_Modified) Marshal() ([]byte, error)
func (*PlanAssignmentRequestChange_Modified) MarshalJSON ¶
func (m *PlanAssignmentRequestChange_Modified) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequestChange_Modified) ProtoMessage ¶
func (*PlanAssignmentRequestChange_Modified) ProtoMessage()
func (*PlanAssignmentRequestChange_Modified) ProtoReflect ¶
func (m *PlanAssignmentRequestChange_Modified) ProtoReflect() preflect.Message
func (*PlanAssignmentRequestChange_Modified) Reset ¶
func (m *PlanAssignmentRequestChange_Modified) Reset()
func (*PlanAssignmentRequestChange_Modified) SetFieldMask ¶
func (m *PlanAssignmentRequestChange_Modified) SetFieldMask(fv *PlanAssignmentRequest_FieldMask)
func (*PlanAssignmentRequestChange_Modified) SetName ¶
func (m *PlanAssignmentRequestChange_Modified) SetName(fv *Name)
func (*PlanAssignmentRequestChange_Modified) SetPlanAssignmentRequest ¶
func (m *PlanAssignmentRequestChange_Modified) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)
func (*PlanAssignmentRequestChange_Modified) SetPreviousViewIndex ¶
func (m *PlanAssignmentRequestChange_Modified) SetPreviousViewIndex(fv int32)
func (*PlanAssignmentRequestChange_Modified) SetViewIndex ¶
func (m *PlanAssignmentRequestChange_Modified) SetViewIndex(fv int32)
func (*PlanAssignmentRequestChange_Modified) String ¶
func (m *PlanAssignmentRequestChange_Modified) String() string
func (*PlanAssignmentRequestChange_Modified) Unmarshal ¶
func (m *PlanAssignmentRequestChange_Modified) Unmarshal(b []byte) error
func (*PlanAssignmentRequestChange_Modified) UnmarshalJSON ¶
func (m *PlanAssignmentRequestChange_Modified) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestChange_Modified_ ¶
type PlanAssignmentRequestChange_Modified_ struct { // Modified is returned when watched document is modified Modified *PlanAssignmentRequestChange_Modified `protobuf:"bytes,2,opt,name=modified,proto3,oneof" firestore:"modified"` }
type PlanAssignmentRequestChange_Removed ¶
type PlanAssignmentRequestChange_Removed struct { Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"` // Integer specifying removed PlanAssignmentRequest 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 PlanAssignmentRequest is deleted or leaves Query view
func (*PlanAssignmentRequestChange_Removed) Descriptor ¶
func (*PlanAssignmentRequestChange_Removed) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequestChange_Removed.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequestChange_Removed) GetName ¶
func (m *PlanAssignmentRequestChange_Removed) GetName() *Name
func (*PlanAssignmentRequestChange_Removed) GetViewIndex ¶
func (m *PlanAssignmentRequestChange_Removed) GetViewIndex() int32
func (*PlanAssignmentRequestChange_Removed) GotenMessage ¶
func (*PlanAssignmentRequestChange_Removed) GotenMessage()
func (*PlanAssignmentRequestChange_Removed) GotenValidate ¶
func (obj *PlanAssignmentRequestChange_Removed) GotenValidate() error
func (*PlanAssignmentRequestChange_Removed) Marshal ¶
func (m *PlanAssignmentRequestChange_Removed) Marshal() ([]byte, error)
func (*PlanAssignmentRequestChange_Removed) MarshalJSON ¶
func (m *PlanAssignmentRequestChange_Removed) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequestChange_Removed) ProtoMessage ¶
func (*PlanAssignmentRequestChange_Removed) ProtoMessage()
func (*PlanAssignmentRequestChange_Removed) ProtoReflect ¶
func (m *PlanAssignmentRequestChange_Removed) ProtoReflect() preflect.Message
func (*PlanAssignmentRequestChange_Removed) Reset ¶
func (m *PlanAssignmentRequestChange_Removed) Reset()
func (*PlanAssignmentRequestChange_Removed) SetName ¶
func (m *PlanAssignmentRequestChange_Removed) SetName(fv *Name)
func (*PlanAssignmentRequestChange_Removed) SetViewIndex ¶
func (m *PlanAssignmentRequestChange_Removed) SetViewIndex(fv int32)
func (*PlanAssignmentRequestChange_Removed) String ¶
func (m *PlanAssignmentRequestChange_Removed) String() string
func (*PlanAssignmentRequestChange_Removed) Unmarshal ¶
func (m *PlanAssignmentRequestChange_Removed) Unmarshal(b []byte) error
func (*PlanAssignmentRequestChange_Removed) UnmarshalJSON ¶
func (m *PlanAssignmentRequestChange_Removed) UnmarshalJSON(data []byte) error
type PlanAssignmentRequestChange_Removed_ ¶
type PlanAssignmentRequestChange_Removed_ struct { // Removed is returned when PlanAssignmentRequest is deleted or leaves Query // view Removed *PlanAssignmentRequestChange_Removed `protobuf:"bytes,3,opt,name=removed,proto3,oneof" firestore:"removed"` }
type PlanAssignmentRequestFieldPathBuilder ¶
type PlanAssignmentRequestFieldPathBuilder struct{}
func NewPlanAssignmentRequestFieldPathBuilder ¶
func NewPlanAssignmentRequestFieldPathBuilder() PlanAssignmentRequestFieldPathBuilder
type PlanAssignmentRequestList ¶
type PlanAssignmentRequestList []*PlanAssignmentRequest
func (PlanAssignmentRequestList) Append ¶
func (l PlanAssignmentRequestList) Append(item gotenresource.Resource) gotenresource.ResourceList
func (PlanAssignmentRequestList) AppendList ¶
func (l PlanAssignmentRequestList) AppendList(list gotenresource.ResourceList) gotenresource.ResourceList
func (PlanAssignmentRequestList) At ¶
func (l PlanAssignmentRequestList) At(idx int) gotenresource.Resource
func (PlanAssignmentRequestList) Length ¶
func (l PlanAssignmentRequestList) Length() int
func (PlanAssignmentRequestList) Set ¶
func (l PlanAssignmentRequestList) Set(idx int, res gotenresource.Resource)
func (PlanAssignmentRequestList) Slice ¶
func (l PlanAssignmentRequestList) Slice(first, second int) gotenresource.ResourceList
type PlanAssignmentRequestMap ¶
type PlanAssignmentRequestMap map[Name]*PlanAssignmentRequest
func (PlanAssignmentRequestMap) Delete ¶
func (m PlanAssignmentRequestMap) Delete(name gotenresource.Name)
func (PlanAssignmentRequestMap) ForEach ¶
func (m PlanAssignmentRequestMap) ForEach(cb func(gotenresource.Name, gotenresource.Resource) bool)
func (PlanAssignmentRequestMap) Get ¶
func (m PlanAssignmentRequestMap) Get(name gotenresource.Name) gotenresource.Resource
func (PlanAssignmentRequestMap) Length ¶
func (m PlanAssignmentRequestMap) Length() int
func (PlanAssignmentRequestMap) Set ¶
func (m PlanAssignmentRequestMap) Set(res gotenresource.Resource)
type PlanAssignmentRequestMapPathSelectorMetadataAnnotations ¶
type PlanAssignmentRequestMapPathSelectorMetadataAnnotations struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) FieldPath ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithValue ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestMapPathSelectorMetadataLabels ¶
type PlanAssignmentRequestMapPathSelectorMetadataLabels struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorMetadataLabels) FieldPath ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestMapPathSelectorMetadataLabels) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestMapPathSelectorMetadataLabels) WithValue ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataLabels) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestMapPathSelectorMetadataShards ¶
type PlanAssignmentRequestMapPathSelectorMetadataShards struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorMetadataShards) FieldPath ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataShards) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestMapPathSelectorMetadataShards) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataShards) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestMapPathSelectorMetadataShards) WithValue ¶
func (s PlanAssignmentRequestMapPathSelectorMetadataShards) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestNameList ¶
type PlanAssignmentRequestNameList []*Name
func (PlanAssignmentRequestNameList) Append ¶
func (l PlanAssignmentRequestNameList) Append(name gotenresource.Name) gotenresource.NameList
func (PlanAssignmentRequestNameList) AppendList ¶
func (l PlanAssignmentRequestNameList) AppendList(list gotenresource.NameList) gotenresource.NameList
func (PlanAssignmentRequestNameList) At ¶
func (l PlanAssignmentRequestNameList) At(idx int) gotenresource.Name
func (PlanAssignmentRequestNameList) Length ¶
func (l PlanAssignmentRequestNameList) Length() int
func (PlanAssignmentRequestNameList) Set ¶
func (l PlanAssignmentRequestNameList) Set(idx int, name gotenresource.Name)
func (PlanAssignmentRequestNameList) Slice ¶
func (l PlanAssignmentRequestNameList) Slice(first, second int) gotenresource.NameList
type PlanAssignmentRequestParentNameList ¶
type PlanAssignmentRequestParentNameList []*ParentName
func (PlanAssignmentRequestParentNameList) Append ¶
func (l PlanAssignmentRequestParentNameList) Append(name gotenresource.Name) gotenresource.ParentNameList
func (PlanAssignmentRequestParentNameList) AppendList ¶
func (l PlanAssignmentRequestParentNameList) AppendList(list gotenresource.ParentNameList) gotenresource.ParentNameList
func (PlanAssignmentRequestParentNameList) At ¶
func (l PlanAssignmentRequestParentNameList) At(idx int) gotenresource.Name
func (PlanAssignmentRequestParentNameList) Length ¶
func (l PlanAssignmentRequestParentNameList) Length() int
func (PlanAssignmentRequestParentNameList) Set ¶
func (l PlanAssignmentRequestParentNameList) Set(idx int, name gotenresource.Name)
func (PlanAssignmentRequestParentNameList) Slice ¶
func (l PlanAssignmentRequestParentNameList) Slice(first, second int) gotenresource.ParentNameList
type PlanAssignmentRequestParentReferenceList ¶
type PlanAssignmentRequestParentReferenceList []*ParentReference
func (PlanAssignmentRequestParentReferenceList) Append ¶
func (l PlanAssignmentRequestParentReferenceList) Append(ref gotenresource.Reference) gotenresource.ParentReferenceList
func (PlanAssignmentRequestParentReferenceList) AppendList ¶
func (l PlanAssignmentRequestParentReferenceList) AppendList(list gotenresource.ParentReferenceList) gotenresource.ParentReferenceList
func (PlanAssignmentRequestParentReferenceList) At ¶
func (l PlanAssignmentRequestParentReferenceList) At(idx int) gotenresource.Reference
func (PlanAssignmentRequestParentReferenceList) Length ¶
func (l PlanAssignmentRequestParentReferenceList) Length() int
func (PlanAssignmentRequestParentReferenceList) Set ¶
func (l PlanAssignmentRequestParentReferenceList) Set(idx int, ref gotenresource.Reference)
func (PlanAssignmentRequestParentReferenceList) Slice ¶
func (l PlanAssignmentRequestParentReferenceList) Slice(first, second int) gotenresource.ParentReferenceList
type PlanAssignmentRequestPathSelectorApprover ¶
type PlanAssignmentRequestPathSelectorApprover struct{}
func (PlanAssignmentRequestPathSelectorApprover) FieldPath ¶
func (PlanAssignmentRequestPathSelectorApprover) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorApprover) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorApprover) WithArrayOfValues(values []*iam_organization.Reference) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorApprover) WithValue ¶
func (s PlanAssignmentRequestPathSelectorApprover) WithValue(value *iam_organization.Reference) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorMetadata ¶
type PlanAssignmentRequestPathSelectorMetadata struct{}
func (PlanAssignmentRequestPathSelectorMetadata) Annotations ¶
func (PlanAssignmentRequestPathSelectorMetadata) CreateTime ¶
func (PlanAssignmentRequestPathSelectorMetadata) DeleteTime ¶ added in v0.8.0
func (PlanAssignmentRequestPathSelectorMetadata) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadata) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorMetadata) Generation ¶
func (PlanAssignmentRequestPathSelectorMetadata) OwnerReferences ¶
func (PlanAssignmentRequestPathSelectorMetadata) OwnerReferences() PlanAssignmentRequestPathSelectorMetadataOwnerReferences
func (PlanAssignmentRequestPathSelectorMetadata) ResourceVersion ¶
func (PlanAssignmentRequestPathSelectorMetadata) ResourceVersion() PlanAssignmentRequestPathSelectorMetadataResourceVersion
func (PlanAssignmentRequestPathSelectorMetadata) UpdateTime ¶
func (PlanAssignmentRequestPathSelectorMetadata) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadata) WithArrayOfValues(values []*meta.Meta) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadata) WithSubArrayItemValue ¶
func (s PlanAssignmentRequestPathSelectorMetadata) WithSubArrayItemValue(subPathArrayItemValue meta.Meta_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorMetadata) WithSubArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadata) WithSubArrayOfValues(subPathArrayOfValues meta.Meta_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadata) WithSubPath ¶
func (PlanAssignmentRequestPathSelectorMetadata) WithSubPath(subPath meta.Meta_FieldPath) *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadata) WithSubValue ¶
func (s PlanAssignmentRequestPathSelectorMetadata) WithSubValue(subPathValue meta.Meta_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
func (PlanAssignmentRequestPathSelectorMetadata) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadata) WithValue(value *meta.Meta) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorMetadataAnnotations ¶
type PlanAssignmentRequestPathSelectorMetadataAnnotations struct{}
func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataAnnotations) WithArrayOfValues(values []map[string]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataAnnotations) WithValue(value map[string]string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataCreateTime ¶
type PlanAssignmentRequestPathSelectorMetadataCreateTime struct{}
func (PlanAssignmentRequestPathSelectorMetadataCreateTime) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataCreateTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataCreateTime) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataCreateTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataDeleteTime ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataDeleteTime struct{}
func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataGeneration ¶
type PlanAssignmentRequestPathSelectorMetadataGeneration struct{}
func (PlanAssignmentRequestPathSelectorMetadataGeneration) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataGeneration) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataGeneration) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataGeneration) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataLabels ¶
type PlanAssignmentRequestPathSelectorMetadataLabels struct{}
func (PlanAssignmentRequestPathSelectorMetadataLabels) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadataLabels) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataLabels) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataLabels) WithArrayOfValues(values []map[string]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataLabels) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataLabels) WithValue(value map[string]string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataLifecycle ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataLifecycle struct{}
func (PlanAssignmentRequestPathSelectorMetadataLifecycle) BlockDeletion ¶ added in v0.8.0
func (PlanAssignmentRequestPathSelectorMetadataLifecycle) FieldPath ¶ added in v0.8.0
func (PlanAssignmentRequestPathSelectorMetadataLifecycle) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataLifecycle) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycle) WithArrayOfValues(values []*meta.Lifecycle) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataLifecycle) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycle) WithValue(value *meta.Lifecycle) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion struct{}
func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithValue(value bool) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataLifecycleState ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataLifecycleState struct{}
func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithArrayOfValues(values []meta.Lifecycle_State) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithValue(value meta.Lifecycle_State) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferences ¶
type PlanAssignmentRequestPathSelectorMetadataOwnerReferences struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Controller ¶
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) RequiresOwnerReference ¶ added in v0.8.0
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithArrayOfValues(values [][]*meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithItemValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithItemValue(value *meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithValue(value []*meta.OwnerReference) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController ¶
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithValue(value bool) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind ¶
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName ¶
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath ¶ added in v0.8.0
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues(values []bool) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion ¶ added in v0.8.0
type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion struct{}
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithValue ¶ added in v0.8.0
func (s PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataResourceVersion ¶
type PlanAssignmentRequestPathSelectorMetadataResourceVersion struct{}
func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataServices ¶ added in v1.0.21
type PlanAssignmentRequestPathSelectorMetadataServices struct{}
func (PlanAssignmentRequestPathSelectorMetadataServices) AllowedServices ¶ added in v1.0.21
func (PlanAssignmentRequestPathSelectorMetadataServices) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequestPathSelectorMetadataServices) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataServices) OwningService ¶ added in v1.0.21
func (PlanAssignmentRequestPathSelectorMetadataServices) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServices) WithArrayOfValues(values []*meta.ServicesInfo) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataServices) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServices) WithValue(value *meta.ServicesInfo) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices ¶ added in v1.0.21
type PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices struct{}
func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataServicesOwningService ¶ added in v1.0.21
type PlanAssignmentRequestPathSelectorMetadataServicesOwningService struct{}
func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataShards ¶
type PlanAssignmentRequestPathSelectorMetadataShards struct{}
func (PlanAssignmentRequestPathSelectorMetadataShards) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadataShards) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataShards) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataShards) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataShards) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataShards) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataSyncing ¶
type PlanAssignmentRequestPathSelectorMetadataSyncing struct{}
func (PlanAssignmentRequestPathSelectorMetadataSyncing) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadataSyncing) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataSyncing) OwningRegion ¶
func (PlanAssignmentRequestPathSelectorMetadataSyncing) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncing) WithArrayOfValues(values []*meta.SyncingMeta) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataSyncing) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncing) WithValue(value *meta.SyncingMeta) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion ¶
type PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion struct{}
func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataSyncingRegions ¶
type PlanAssignmentRequestPathSelectorMetadataSyncingRegions struct{}
func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithItemValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataTags ¶
type PlanAssignmentRequestPathSelectorMetadataTags struct{}
func (PlanAssignmentRequestPathSelectorMetadataTags) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadataTags) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataTags) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataTags) WithArrayOfValues(values [][]string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataTags) WithItemValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataTags) WithItemValue(value string) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorMetadataTags) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataTags) WithValue(value []string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataUpdateTime ¶
type PlanAssignmentRequestPathSelectorMetadataUpdateTime struct{}
func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithArrayOfValues(values []*timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithValue(value *timestamppb.Timestamp) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorMetadataUuid ¶
type PlanAssignmentRequestPathSelectorMetadataUuid struct{}
func (PlanAssignmentRequestPathSelectorMetadataUuid) FieldPath ¶
func (PlanAssignmentRequestPathSelectorMetadataUuid) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorMetadataUuid) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorMetadataUuid) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorMetadataUuid) WithValue ¶
func (s PlanAssignmentRequestPathSelectorMetadataUuid) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorName ¶
type PlanAssignmentRequestPathSelectorName struct{}
func (PlanAssignmentRequestPathSelectorName) FieldPath ¶
func (PlanAssignmentRequestPathSelectorName) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorName) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorName) WithArrayOfValues(values []*Name) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorName) WithValue ¶
func (s PlanAssignmentRequestPathSelectorName) WithValue(value *Name) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorRequest ¶
type PlanAssignmentRequestPathSelectorRequest struct{}
func (PlanAssignmentRequestPathSelectorRequest) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequest) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorRequest) Redistribute ¶
func (PlanAssignmentRequestPathSelectorRequest) Redistribute() PlanAssignmentRequestPathSelectorRequestRedistribute
func (PlanAssignmentRequestPathSelectorRequest) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequest) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequest) WithSubArrayItemValue ¶
func (s PlanAssignmentRequestPathSelectorRequest) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestType_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorRequest) WithSubArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequest) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestType_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequest) WithSubPath ¶
func (PlanAssignmentRequestPathSelectorRequest) WithSubPath(subPath PlanAssignmentRequestRequestType_FieldPath) *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorRequest) WithSubValue ¶
func (s PlanAssignmentRequestPathSelectorRequest) WithSubValue(subPathValue PlanAssignmentRequestRequestType_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
func (PlanAssignmentRequestPathSelectorRequest) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequest) WithValue(value *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorRequestAssign ¶
type PlanAssignmentRequestPathSelectorRequestAssign struct{}
func (PlanAssignmentRequestPathSelectorRequestAssign) Extensions ¶
func (PlanAssignmentRequestPathSelectorRequestAssign) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestAssign) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorRequestAssign) RegionalDistributions ¶
func (PlanAssignmentRequestPathSelectorRequestAssign) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions
func (PlanAssignmentRequestPathSelectorRequestAssign) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestAssignExtensions ¶
type PlanAssignmentRequestPathSelectorRequestAssignExtensions struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithItemValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithItemValue(value *common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithValue(value []*common.Allowance) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource ¶
type PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue ¶
type PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestAssignPlan ¶
type PlanAssignmentRequestPathSelectorRequestAssignPlan struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignPlan) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestAssignPlan) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorRequestAssignPlan) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestAssignPlan) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignPlan) WithValue(value *plan.Reference) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions ¶
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) LimitsByRegion ¶
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithItemValue ¶
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource ¶
type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource struct{}
func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestExtend ¶
type PlanAssignmentRequestPathSelectorRequestExtend struct{}
func (PlanAssignmentRequestPathSelectorRequestExtend) Assignment ¶
func (PlanAssignmentRequestPathSelectorRequestExtend) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestExtend) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorRequestExtend) RegionalDistributions ¶
func (PlanAssignmentRequestPathSelectorRequestExtend) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions
func (PlanAssignmentRequestPathSelectorRequestExtend) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtend) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestExtendAdditions ¶
type PlanAssignmentRequestPathSelectorRequestExtendAdditions struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithItemValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithItemValue(value *common.Allowance) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithValue(value []*common.Allowance) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource ¶
type PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithValue(value *meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue ¶
type PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithValue(value int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendAssignment ¶
type PlanAssignmentRequestPathSelectorRequestExtendAssignment struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions ¶
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) LimitsByRegion ¶
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithItemValue ¶
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithValue(value []*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue(value map[string]int64) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource ¶
type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource struct{}
func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestRedistribute ¶
type PlanAssignmentRequestPathSelectorRequestRedistribute struct{}
func (PlanAssignmentRequestPathSelectorRequestRedistribute) Assignment ¶
func (PlanAssignmentRequestPathSelectorRequestRedistribute) RegionalDistributions ¶
func (PlanAssignmentRequestPathSelectorRequestRedistribute) RegionalDistributions() PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions
func (PlanAssignmentRequestPathSelectorRequestRedistribute) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestRedistribute) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestRedistributeAssignment ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeAssignment struct{}
func (PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions struct{}
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) LimitsByRegion ¶
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithItemValue ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithKey ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource ¶
type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource struct{}
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestUnassign ¶
type PlanAssignmentRequestPathSelectorRequestUnassign struct{}
func (PlanAssignmentRequestPathSelectorRequestUnassign) Assignment ¶
func (PlanAssignmentRequestPathSelectorRequestUnassign) FieldPath ¶
func (PlanAssignmentRequestPathSelectorRequestUnassign) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorRequestUnassign) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestUnassign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorRequestUnassignAssignment ¶
type PlanAssignmentRequestPathSelectorRequestUnassignAssignment struct{}
func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithValue ¶
func (s PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithValue(value *plan_assignment.Reference) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestPathSelectorService ¶
type PlanAssignmentRequestPathSelectorService struct{}
func (PlanAssignmentRequestPathSelectorService) FieldPath ¶
func (PlanAssignmentRequestPathSelectorService) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorService) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorService) WithArrayOfValues(values []*meta_service.Reference) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorService) WithValue ¶
func (s PlanAssignmentRequestPathSelectorService) WithValue(value *meta_service.Reference) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorStatus ¶
type PlanAssignmentRequestPathSelectorStatus struct{}
func (PlanAssignmentRequestPathSelectorStatus) Conclusion ¶
func (PlanAssignmentRequestPathSelectorStatus) FieldPath ¶
func (PlanAssignmentRequestPathSelectorStatus) FieldPath() *PlanAssignmentRequest_FieldTerminalPath
func (PlanAssignmentRequestPathSelectorStatus) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorStatus) WithArrayOfValues(values []*PlanAssignmentRequest_Status) *PlanAssignmentRequest_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequestPathSelectorStatus) WithSubArrayItemValue ¶
func (s PlanAssignmentRequestPathSelectorStatus) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestStatus_FieldPathArrayItemValue) *PlanAssignmentRequest_FieldSubPathArrayItemValue
func (PlanAssignmentRequestPathSelectorStatus) WithSubArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorStatus) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestStatus_FieldPathArrayOfValues) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorStatus) WithSubPath ¶
func (PlanAssignmentRequestPathSelectorStatus) WithSubPath(subPath PlanAssignmentRequestStatus_FieldPath) *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorStatus) WithSubValue ¶
func (s PlanAssignmentRequestPathSelectorStatus) WithSubValue(subPathValue PlanAssignmentRequestStatus_FieldPathValue) *PlanAssignmentRequest_FieldSubPathValue
func (PlanAssignmentRequestPathSelectorStatus) WithValue ¶
func (s PlanAssignmentRequestPathSelectorStatus) WithValue(value *PlanAssignmentRequest_Status) *PlanAssignmentRequest_FieldTerminalPathValue
type PlanAssignmentRequestPathSelectorStatusConclusion ¶
type PlanAssignmentRequestPathSelectorStatusConclusion struct{}
func (PlanAssignmentRequestPathSelectorStatusConclusion) FieldPath ¶
func (PlanAssignmentRequestPathSelectorStatusConclusion) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorStatusConclusion) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorStatusConclusion) WithArrayOfValues(values []PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequest_FieldSubPathArrayOfValues
type PlanAssignmentRequestPathSelectorStatusReason ¶
type PlanAssignmentRequestPathSelectorStatusReason struct{}
func (PlanAssignmentRequestPathSelectorStatusReason) FieldPath ¶
func (PlanAssignmentRequestPathSelectorStatusReason) FieldPath() *PlanAssignmentRequest_FieldSubPath
func (PlanAssignmentRequestPathSelectorStatusReason) WithArrayOfValues ¶
func (s PlanAssignmentRequestPathSelectorStatusReason) WithArrayOfValues(values []string) *PlanAssignmentRequest_FieldSubPathArrayOfValues
func (PlanAssignmentRequestPathSelectorStatusReason) WithValue ¶
func (s PlanAssignmentRequestPathSelectorStatusReason) WithValue(value string) *PlanAssignmentRequest_FieldSubPathValue
type PlanAssignmentRequestReferenceList ¶
type PlanAssignmentRequestReferenceList []*Reference
func (PlanAssignmentRequestReferenceList) Append ¶
func (l PlanAssignmentRequestReferenceList) Append(ref gotenresource.Reference) gotenresource.ReferenceList
func (PlanAssignmentRequestReferenceList) AppendList ¶
func (l PlanAssignmentRequestReferenceList) AppendList(list gotenresource.ReferenceList) gotenresource.ReferenceList
func (PlanAssignmentRequestReferenceList) At ¶
func (l PlanAssignmentRequestReferenceList) At(idx int) gotenresource.Reference
func (PlanAssignmentRequestReferenceList) Length ¶
func (l PlanAssignmentRequestReferenceList) Length() int
func (PlanAssignmentRequestReferenceList) Set ¶
func (l PlanAssignmentRequestReferenceList) Set(idx int, ref gotenresource.Reference)
func (PlanAssignmentRequestReferenceList) Slice ¶
func (l PlanAssignmentRequestReferenceList) Slice(first, second int) gotenresource.ReferenceList
type PlanAssignmentRequestRequestTypeAssignFieldPathBuilder ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssignFieldPathBuilder struct{}
func NewPlanAssignmentRequestRequestTypeAssignFieldPathBuilder ¶ added in v1.0.21
func NewPlanAssignmentRequestRequestTypeAssignFieldPathBuilder() PlanAssignmentRequestRequestTypeAssignFieldPathBuilder
func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) Extensions ¶ added in v1.0.21
func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) RegionalDistributions ¶ added in v1.0.21
func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) RegionalDistributions() PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions
type PlanAssignmentRequestRequestTypeAssign_FieldPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestRequestTypeAssign_FieldPathSelector Get(source *PlanAssignmentRequest_RequestType_Assign) []interface{} GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_RequestType_Assign) // Those methods build corresponding PlanAssignmentRequestRequestTypeAssign_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestRequestTypeAssign_FieldPath ¶ added in v1.0.21
func BuildPlanAssignmentRequestRequestTypeAssign_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeAssign_FieldPath, error)
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPath ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPath(rawField string) PlanAssignmentRequestRequestTypeAssign_FieldPath
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPath ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeAssign_FieldPath, error)
type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestRequestTypeAssign_FieldPath ContainsValue(*PlanAssignmentRequest_RequestType_Assign) bool }
PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue allows storing single item in Path-specific values for Assign according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestRequestTypeAssign_FieldPath }
PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues allows storing slice of values for Assign fields according to their type
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues, error)
type PlanAssignmentRequestRequestTypeAssign_FieldPathSelector ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldPathSelector int32
const ( PlanAssignmentRequestRequestTypeAssign_FieldPathSelectorPlan PlanAssignmentRequestRequestTypeAssign_FieldPathSelector = 0 PlanAssignmentRequestRequestTypeAssign_FieldPathSelectorExtensions PlanAssignmentRequestRequestTypeAssign_FieldPathSelector = 1 PlanAssignmentRequestRequestTypeAssign_FieldPathSelectorRegionalDistributions PlanAssignmentRequestRequestTypeAssign_FieldPathSelector = 2 )
func (PlanAssignmentRequestRequestTypeAssign_FieldPathSelector) String ¶ added in v1.0.21
func (s PlanAssignmentRequestRequestTypeAssign_FieldPathSelector) String() string
type PlanAssignmentRequestRequestTypeAssign_FieldPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldPathValue interface { PlanAssignmentRequestRequestTypeAssign_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_RequestType_Assign) CompareWith(*PlanAssignmentRequest_RequestType_Assign) (cmp int, comparable bool) }
PlanAssignmentRequestRequestTypeAssign_FieldPathValue allows storing values for Assign fields according to their type
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeAssign_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeAssign_FieldPathValue, error)
type PlanAssignmentRequestRequestTypeAssign_FieldSubPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsExtensionsSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsExtensionsSubPath() (common.Allowance_FieldPath, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsRegionalDistributionsSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValueRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Get ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Assign) (values []interface{})
Get returns all values pointed by selected field from source PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetDefault ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingle ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
GetSingle returns value of selected field from source PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingleRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) IsLeaf ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) JSONString ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) String ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue struct { PlanAssignmentRequestRequestTypeAssign_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsExtensionsPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsExtensionsPathItemValue() (common.Allowance_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Assign) bool
Contains returns a boolean indicating if value that is being held is present in given 'Assign'
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues struct { PlanAssignmentRequestRequestTypeAssign_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsExtensionsPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsExtensionsPathArrayOfValues() (common.Allowance_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue struct { PlanAssignmentRequestRequestTypeAssign_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsExtensionsPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsExtensionsPathValue() (common.Allowance_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsRegionalDistributionsPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWith ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Assign) (int, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) GetRawValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) GetRawValue() interface{}
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetTo ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetToRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValueRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Get ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Assign) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetDefault ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingle ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingleRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) IsLeaf ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) JSONString ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) String ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeAssign_FieldPathValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsExtensionsItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsExtensionsItemValue() (*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Assign) bool
Contains returns a boolean indicating if value that is being held is present in given 'Assign'
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_RequestType_Assign as interface{}
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingle ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Assign) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingleRaw ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsExtensionsArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsExtensionsArrayOfValues() ([][]*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsPlanArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsPlanArrayOfValues() ([]*plan.Reference, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue struct { PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsExtensionsValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsExtensionsValue() ([]*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsPlanValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsPlanValue() (*plan.Reference, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsRegionalDistributionsValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWith ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Assign) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_RequestType_Assign'.
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) GetRawValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Assign' as interface{}
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetTo ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Assign)
SetTo stores value for selected field for object Assign
func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetToRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeExtendFieldPathBuilder ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtendFieldPathBuilder struct{}
func NewPlanAssignmentRequestRequestTypeExtendFieldPathBuilder ¶ added in v1.0.21
func NewPlanAssignmentRequestRequestTypeExtendFieldPathBuilder() PlanAssignmentRequestRequestTypeExtendFieldPathBuilder
func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) Assignment ¶ added in v1.0.21
func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) RegionalDistributions ¶ added in v1.0.21
func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) RegionalDistributions() PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions
type PlanAssignmentRequestRequestTypeExtend_FieldPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestRequestTypeExtend_FieldPathSelector Get(source *PlanAssignmentRequest_RequestType_Extend) []interface{} GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_RequestType_Extend) // Those methods build corresponding PlanAssignmentRequestRequestTypeExtend_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestRequestTypeExtend_FieldPath ¶ added in v1.0.21
func BuildPlanAssignmentRequestRequestTypeExtend_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeExtend_FieldPath, error)
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPath ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPath(rawField string) PlanAssignmentRequestRequestTypeExtend_FieldPath
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPath ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeExtend_FieldPath, error)
type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestRequestTypeExtend_FieldPath ContainsValue(*PlanAssignmentRequest_RequestType_Extend) bool }
PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue allows storing single item in Path-specific values for Extend according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestRequestTypeExtend_FieldPath }
PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues allows storing slice of values for Extend fields according to their type
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues, error)
type PlanAssignmentRequestRequestTypeExtend_FieldPathSelector ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldPathSelector int32
const ( PlanAssignmentRequestRequestTypeExtend_FieldPathSelectorAssignment PlanAssignmentRequestRequestTypeExtend_FieldPathSelector = 0 PlanAssignmentRequestRequestTypeExtend_FieldPathSelectorAdditions PlanAssignmentRequestRequestTypeExtend_FieldPathSelector = 1 PlanAssignmentRequestRequestTypeExtend_FieldPathSelectorRegionalDistributions PlanAssignmentRequestRequestTypeExtend_FieldPathSelector = 2 )
func (PlanAssignmentRequestRequestTypeExtend_FieldPathSelector) String ¶ added in v1.0.21
func (s PlanAssignmentRequestRequestTypeExtend_FieldPathSelector) String() string
type PlanAssignmentRequestRequestTypeExtend_FieldPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldPathValue interface { PlanAssignmentRequestRequestTypeExtend_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_RequestType_Extend) CompareWith(*PlanAssignmentRequest_RequestType_Extend) (cmp int, comparable bool) }
PlanAssignmentRequestRequestTypeExtend_FieldPathValue allows storing values for Extend fields according to their type
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeExtend_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeExtend_FieldPathValue, error)
type PlanAssignmentRequestRequestTypeExtend_FieldSubPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsAdditionsSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsAdditionsSubPath() (common.Allowance_FieldPath, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsRegionalDistributionsSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValueRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Get ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Extend) (values []interface{})
Get returns all values pointed by selected field from source PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetDefault ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingle ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
GetSingle returns value of selected field from source PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingleRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) IsLeaf ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) JSONString ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) String ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue struct { PlanAssignmentRequestRequestTypeExtend_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsAdditionsPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsAdditionsPathItemValue() (common.Allowance_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Extend) bool
Contains returns a boolean indicating if value that is being held is present in given 'Extend'
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues struct { PlanAssignmentRequestRequestTypeExtend_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsAdditionsPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsAdditionsPathArrayOfValues() (common.Allowance_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue struct { PlanAssignmentRequestRequestTypeExtend_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsAdditionsPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsAdditionsPathValue() (common.Allowance_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsRegionalDistributionsPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWith ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Extend) (int, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) GetRawValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) GetRawValue() interface{}
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetTo ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetToRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValueRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Get ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Extend) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetDefault ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingle ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingleRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) IsLeaf ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) JSONString ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) String ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeExtend_FieldPathValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsAdditionsItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsAdditionsItemValue() (*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Extend) bool
Contains returns a boolean indicating if value that is being held is present in given 'Extend'
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_RequestType_Extend as interface{}
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingle ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Extend) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingleRaw ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAdditionsArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAdditionsArrayOfValues() ([][]*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues() ([]*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue struct { PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAdditionsValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAdditionsValue() ([]*common.Allowance, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAssignmentValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsRegionalDistributionsValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWith ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Extend) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_RequestType_Extend'.
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) GetRawValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Extend' as interface{}
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetTo ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Extend)
SetTo stores value for selected field for object Extend
func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetToRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeFieldPathBuilder ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeFieldPathBuilder struct{}
func NewPlanAssignmentRequestRequestTypeFieldPathBuilder ¶ added in v1.0.21
func NewPlanAssignmentRequestRequestTypeFieldPathBuilder() PlanAssignmentRequestRequestTypeFieldPathBuilder
func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Redistribute ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder struct{}
func NewPlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder ¶ added in v1.0.21
func NewPlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder() PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder
func (PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder) Assignment ¶ added in v1.0.21
func (PlanAssignmentRequestRequestTypeRedistributeFieldPathBuilder) RegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector Get(source *PlanAssignmentRequest_RequestType_Redistribute) []interface{} GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_RequestType_Redistribute) // Those methods build corresponding PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestRequestTypeRedistribute_FieldPath ¶ added in v1.0.21
func BuildPlanAssignmentRequestRequestTypeRedistribute_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, error)
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath(rawField string) PlanAssignmentRequestRequestTypeRedistribute_FieldPath
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, error)
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestRequestTypeRedistribute_FieldPath ContainsValue(*PlanAssignmentRequest_RequestType_Redistribute) bool }
PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue allows storing single item in Path-specific values for Redistribute according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestRequestTypeRedistribute_FieldPath }
PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues allows storing slice of values for Redistribute fields according to their type
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues, error)
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector int32
const ( PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelectorAssignment PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector = 0 PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelectorRegionalDistributions PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector = 1 )
func (PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector) String ¶ added in v1.0.21
func (s PlanAssignmentRequestRequestTypeRedistribute_FieldPathSelector) String() string
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue interface { PlanAssignmentRequestRequestTypeRedistribute_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_RequestType_Redistribute) CompareWith(*PlanAssignmentRequest_RequestType_Redistribute) (cmp int, comparable bool) }
PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue allows storing values for Redistribute fields according to their type
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeRedistribute_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue, error)
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) AsRegionalDistributionsSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) AsRegionalDistributionsSubPath() (common.RegionalDistribution_FieldPath, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValueRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Get ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType_Redistribute) (values []interface{})
Get returns all values pointed by selected field from source PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetDefault ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingle ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
GetSingle returns value of selected field from source PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingleRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) IsLeaf ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) JSONString ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) String ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue struct { PlanAssignmentRequestRequestTypeRedistribute_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue() (common.RegionalDistribution_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Redistribute) bool
Contains returns a boolean indicating if value that is being held is present in given 'Redistribute'
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues struct { PlanAssignmentRequestRequestTypeRedistribute_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues() (common.RegionalDistribution_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue struct { PlanAssignmentRequestRequestTypeRedistribute_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) AsRegionalDistributionsPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) AsRegionalDistributionsPathValue() (common.RegionalDistribution_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWith ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Redistribute) (int, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) GetRawValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) GetRawValue() interface{}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetTo ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetToRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValueRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Get ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Redistribute) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetDefault ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingle ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingleRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) IsLeaf ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) JSONString ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) String ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue() (*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Redistribute) bool
Contains returns a boolean indicating if value that is being held is present in given 'Redistribute'
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_RequestType_Redistribute as interface{}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingle ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Redistribute) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingleRaw ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues() ([]*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues() ([][]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue struct { PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsAssignmentValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsRegionalDistributionsValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsRegionalDistributionsValue() ([]*common.RegionalDistribution, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWith ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Redistribute) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_RequestType_Redistribute'.
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) GetRawValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Redistribute' as interface{}
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetTo ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Redistribute)
SetTo stores value for selected field for object Redistribute
func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetToRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestTypeUnassignFieldPathBuilder ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassignFieldPathBuilder struct{}
func NewPlanAssignmentRequestRequestTypeUnassignFieldPathBuilder ¶ added in v1.0.21
func NewPlanAssignmentRequestRequestTypeUnassignFieldPathBuilder() PlanAssignmentRequestRequestTypeUnassignFieldPathBuilder
func (PlanAssignmentRequestRequestTypeUnassignFieldPathBuilder) Assignment ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector Get(source *PlanAssignmentRequest_RequestType_Unassign) []interface{} GetSingle(source *PlanAssignmentRequest_RequestType_Unassign) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_RequestType_Unassign) // Those methods build corresponding PlanAssignmentRequestRequestTypeUnassign_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestRequestTypeUnassign_FieldPath ¶ added in v1.0.21
func BuildPlanAssignmentRequestRequestTypeUnassign_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestTypeUnassign_FieldPath, error)
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPath ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPath(rawField string) PlanAssignmentRequestRequestTypeUnassign_FieldPath
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPath ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPath(rawField string) (PlanAssignmentRequestRequestTypeUnassign_FieldPath, error)
type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestRequestTypeUnassign_FieldPath ContainsValue(*PlanAssignmentRequest_RequestType_Unassign) bool }
PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue allows storing single item in Path-specific values for Unassign according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestRequestTypeUnassign_FieldPath }
PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues allows storing slice of values for Unassign fields according to their type
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues, error)
type PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector int32
const (
PlanAssignmentRequestRequestTypeUnassign_FieldPathSelectorAssignment PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector = 0
)
func (PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector) String ¶ added in v1.0.21
func (s PlanAssignmentRequestRequestTypeUnassign_FieldPathSelector) String() string
type PlanAssignmentRequestRequestTypeUnassign_FieldPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldPathValue interface { PlanAssignmentRequestRequestTypeUnassign_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_RequestType_Unassign) CompareWith(*PlanAssignmentRequest_RequestType_Unassign) (cmp int, comparable bool) }
PlanAssignmentRequestRequestTypeUnassign_FieldPathValue allows storing values for Unassign fields according to their type
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestTypeUnassign_FieldPathValue
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestTypeUnassign_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestTypeUnassign_FieldPathValue, error)
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType_Unassign)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValueRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Get ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType_Unassign) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Unassign
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetDefault ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingle ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType_Unassign) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_RequestType_Unassign
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingleRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) IsLeaf ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) JSONString ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) String ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestTypeUnassign_FieldPathValue
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType_Unassign) bool
Contains returns a boolean indicating if value that is being held is present in given 'Unassign'
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_RequestType_Unassign as interface{}
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingle ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType_Unassign) (interface{}, bool)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingleRaw ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues() ([]*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue struct { PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) AsAssignmentValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) AsAssignmentValue() (*plan_assignment.Reference, bool)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWith ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType_Unassign) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_RequestType_Unassign'.
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) GetRawValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Unassign' as interface{}
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetTo ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType_Unassign)
SetTo stores value for selected field for object Unassign
func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetToRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestType_FieldPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestRequestType_FieldPathSelector Get(source *PlanAssignmentRequest_RequestType) []interface{} GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_RequestType) // Those methods build corresponding PlanAssignmentRequestRequestType_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestType_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestRequestType_FieldPath ¶ added in v1.0.21
func BuildPlanAssignmentRequestRequestType_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestRequestType_FieldPath, error)
func MustParsePlanAssignmentRequestRequestType_FieldPath ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestType_FieldPath(rawField string) PlanAssignmentRequestRequestType_FieldPath
func ParsePlanAssignmentRequestRequestType_FieldPath ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestType_FieldPath(rawField string) (PlanAssignmentRequestRequestType_FieldPath, error)
type PlanAssignmentRequestRequestType_FieldPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestRequestType_FieldPath ContainsValue(*PlanAssignmentRequest_RequestType) bool }
PlanAssignmentRequestRequestType_FieldPathArrayItemValue allows storing single item in Path-specific values for RequestType according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
func ParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestRequestType_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestRequestType_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestRequestType_FieldPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestRequestType_FieldPath }
PlanAssignmentRequestRequestType_FieldPathArrayOfValues allows storing slice of values for RequestType fields according to their type
func MustParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
func ParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestType_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestRequestType_FieldPathArrayOfValues, error)
type PlanAssignmentRequestRequestType_FieldPathSelector ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldPathSelector int32
const ( PlanAssignmentRequestRequestType_FieldPathSelectorAssign PlanAssignmentRequestRequestType_FieldPathSelector = 0 PlanAssignmentRequestRequestType_FieldPathSelectorExtend PlanAssignmentRequestRequestType_FieldPathSelector = 1 PlanAssignmentRequestRequestType_FieldPathSelectorRedistribute PlanAssignmentRequestRequestType_FieldPathSelector = 2 PlanAssignmentRequestRequestType_FieldPathSelectorUnassign PlanAssignmentRequestRequestType_FieldPathSelector = 3 )
func (PlanAssignmentRequestRequestType_FieldPathSelector) String ¶ added in v1.0.21
func (s PlanAssignmentRequestRequestType_FieldPathSelector) String() string
type PlanAssignmentRequestRequestType_FieldPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldPathValue interface { PlanAssignmentRequestRequestType_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_RequestType) CompareWith(*PlanAssignmentRequest_RequestType) (cmp int, comparable bool) }
PlanAssignmentRequestRequestType_FieldPathValue allows storing values for RequestType fields according to their type
func MustParsePlanAssignmentRequestRequestType_FieldPathValue ¶ added in v1.0.21
func MustParsePlanAssignmentRequestRequestType_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestRequestType_FieldPathValue
func ParsePlanAssignmentRequestRequestType_FieldPathValue ¶ added in v1.0.21
func ParsePlanAssignmentRequestRequestType_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestRequestType_FieldPathValue, error)
type PlanAssignmentRequestRequestType_FieldSubPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestType_FieldSubPath) AsAssignSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsAssignSubPath() (PlanAssignmentRequestRequestTypeAssign_FieldPath, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPath) AsExtendSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsExtendSubPath() (PlanAssignmentRequestRequestTypeExtend_FieldPath, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPath) AsRedistributeSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsRedistributeSubPath() (PlanAssignmentRequestRequestTypeRedistribute_FieldPath, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPath) AsUnassignSubPath ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) AsUnassignSubPath() (PlanAssignmentRequestRequestTypeUnassign_FieldPath, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPath) ClearValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) ClearValue(item *PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequestRequestType_FieldSubPath) ClearValueRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestType_FieldSubPath) Get ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) Get(source *PlanAssignmentRequest_RequestType) (values []interface{})
Get returns all values pointed by selected field from source PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequestRequestType_FieldSubPath) GetDefault ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestType_FieldSubPath) GetRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestType_FieldSubPath) GetSingle ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
GetSingle returns value of selected field from source PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequestRequestType_FieldSubPath) GetSingleRaw ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPath) IsLeaf ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestType_FieldSubPath) JSONString ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestType_FieldSubPath) Selector ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) Selector() PlanAssignmentRequestRequestType_FieldPathSelector
func (*PlanAssignmentRequestRequestType_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestType_FieldSubPath) String ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathValue
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestType_FieldSubPath) WithRawIValue ¶ added in v1.0.21
func (fps *PlanAssignmentRequestRequestType_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue struct { PlanAssignmentRequestRequestType_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsAssignPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsAssignPathItemValue() (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsExtendPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsExtendPathItemValue() (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsRedistributePathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsRedistributePathItemValue() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsUnassignPathItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsUnassignPathItemValue() (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType) bool
Contains returns a boolean indicating if value that is being held is present in given 'RequestType'
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaivs *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues struct { PlanAssignmentRequestRequestType_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsAssignPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsAssignPathArrayOfValues() (PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsExtendPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsExtendPathArrayOfValues() (PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsRedistributePathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsRedistributePathArrayOfValues() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsUnassignPathArrayOfValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsUnassignPathArrayOfValues() (PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpsaov *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PlanAssignmentRequestRequestType_FieldSubPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldSubPathValue struct { PlanAssignmentRequestRequestType_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsAssignPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsAssignPathValue() (PlanAssignmentRequestRequestTypeAssign_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsExtendPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsExtendPathValue() (PlanAssignmentRequestRequestTypeExtend_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsRedistributePathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsRedistributePathValue() (PlanAssignmentRequestRequestTypeRedistribute_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsUnassignPathValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) AsUnassignPathValue() (PlanAssignmentRequestRequestTypeUnassign_FieldPathValue, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWith ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest_RequestType) (int, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) GetRawValue ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) GetRawValue() interface{}
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) SetTo ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) SetTo(target **PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequestRequestType_FieldSubPathValue) SetToRaw ¶ added in v1.0.21
func (fpvs *PlanAssignmentRequestRequestType_FieldSubPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestRequestType_FieldTerminalPath ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValueRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) Get ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) Get(source *PlanAssignmentRequest_RequestType) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) GetDefault ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) GetRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingle ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingleRaw ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) IsLeaf ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) JSONString ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) String ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestRequestType_FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestRequestType_FieldPathValue
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayItemValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayOfValues ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIValue ¶ added in v1.0.21
func (fp *PlanAssignmentRequestRequestType_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestRequestType_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) ContainsValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_RequestType) bool
Contains returns a boolean indicating if value that is being held is present in given 'RequestType'
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetRawItemValue ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_RequestType as interface{}
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingle ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_RequestType) (interface{}, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingleRaw ¶ added in v1.0.21
func (fpaiv *PlanAssignmentRequestRequestType_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestRequestType_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsAssignArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsAssignArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Assign, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsExtendArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsExtendArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Extend, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsRedistributeArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsRedistributeArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Redistribute, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsUnassignArrayOfValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsUnassignArrayOfValues() ([]*PlanAssignmentRequest_RequestType_Unassign, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) GetRawValues ¶ added in v1.0.21
func (fpaov *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestRequestType_FieldTerminalPathValue ¶ added in v1.0.21
type PlanAssignmentRequestRequestType_FieldTerminalPathValue struct { PlanAssignmentRequestRequestType_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsAssignValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsAssignValue() (*PlanAssignmentRequest_RequestType_Assign, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsExtendValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsExtendValue() (*PlanAssignmentRequest_RequestType_Extend, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsRedistributeValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsRedistributeValue() (*PlanAssignmentRequest_RequestType_Redistribute, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsUnassignValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsUnassignValue() (*PlanAssignmentRequest_RequestType_Unassign, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWith ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_RequestType) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestRequestType_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_RequestType'.
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWithRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) GetRawValue ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'RequestType' as interface{}
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetTo ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_RequestType)
SetTo stores value for selected field for object RequestType
func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetToRaw ¶ added in v1.0.21
func (fpv *PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequestStatusFieldPathBuilder ¶
type PlanAssignmentRequestStatusFieldPathBuilder struct{}
func NewPlanAssignmentRequestStatusFieldPathBuilder ¶
func NewPlanAssignmentRequestStatusFieldPathBuilder() PlanAssignmentRequestStatusFieldPathBuilder
func (PlanAssignmentRequestStatusFieldPathBuilder) Conclusion ¶
type PlanAssignmentRequestStatus_FieldPath ¶
type PlanAssignmentRequestStatus_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequestStatus_FieldPathSelector Get(source *PlanAssignmentRequest_Status) []interface{} GetSingle(source *PlanAssignmentRequest_Status) (interface{}, bool) ClearValue(item *PlanAssignmentRequest_Status) // Those methods build corresponding PlanAssignmentRequestStatus_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequestStatus_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequestStatus_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequestStatus_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequestStatus_FieldPath ¶
func BuildPlanAssignmentRequestStatus_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequestStatus_FieldPath, error)
func MustParsePlanAssignmentRequestStatus_FieldPath ¶
func MustParsePlanAssignmentRequestStatus_FieldPath(rawField string) PlanAssignmentRequestStatus_FieldPath
func ParsePlanAssignmentRequestStatus_FieldPath ¶
func ParsePlanAssignmentRequestStatus_FieldPath(rawField string) (PlanAssignmentRequestStatus_FieldPath, error)
type PlanAssignmentRequestStatus_FieldPathArrayItemValue ¶
type PlanAssignmentRequestStatus_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequestStatus_FieldPath ContainsValue(*PlanAssignmentRequest_Status) bool }
PlanAssignmentRequestStatus_FieldPathArrayItemValue allows storing single item in Path-specific values for Status according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequestStatus_FieldPathArrayItemValue ¶
func MustParsePlanAssignmentRequestStatus_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequestStatus_FieldPathArrayItemValue
func ParsePlanAssignmentRequestStatus_FieldPathArrayItemValue ¶
func ParsePlanAssignmentRequestStatus_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequestStatus_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequestStatus_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequestStatus_FieldPathArrayOfValues ¶
type PlanAssignmentRequestStatus_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequestStatus_FieldPath }
PlanAssignmentRequestStatus_FieldPathArrayOfValues allows storing slice of values for Status fields according to their type
func MustParsePlanAssignmentRequestStatus_FieldPathArrayOfValues ¶
func MustParsePlanAssignmentRequestStatus_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequestStatus_FieldPathArrayOfValues
func ParsePlanAssignmentRequestStatus_FieldPathArrayOfValues ¶
func ParsePlanAssignmentRequestStatus_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequestStatus_FieldPathArrayOfValues, error)
type PlanAssignmentRequestStatus_FieldPathSelector ¶
type PlanAssignmentRequestStatus_FieldPathSelector int32
const ( PlanAssignmentRequestStatus_FieldPathSelectorConclusion PlanAssignmentRequestStatus_FieldPathSelector = 0 PlanAssignmentRequestStatus_FieldPathSelectorReason PlanAssignmentRequestStatus_FieldPathSelector = 1 )
func (PlanAssignmentRequestStatus_FieldPathSelector) String ¶
func (s PlanAssignmentRequestStatus_FieldPathSelector) String() string
type PlanAssignmentRequestStatus_FieldPathValue ¶
type PlanAssignmentRequestStatus_FieldPathValue interface { PlanAssignmentRequestStatus_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest_Status) CompareWith(*PlanAssignmentRequest_Status) (cmp int, comparable bool) }
PlanAssignmentRequestStatus_FieldPathValue allows storing values for Status fields according to their type
func MustParsePlanAssignmentRequestStatus_FieldPathValue ¶
func MustParsePlanAssignmentRequestStatus_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequestStatus_FieldPathValue
func ParsePlanAssignmentRequestStatus_FieldPathValue ¶
func ParsePlanAssignmentRequestStatus_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequestStatus_FieldPathValue, error)
type PlanAssignmentRequestStatus_FieldTerminalPath ¶
type PlanAssignmentRequestStatus_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequestStatus_FieldTerminalPath) ClearValue ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest_Status)
func (*PlanAssignmentRequestStatus_FieldTerminalPath) ClearValueRaw ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequestStatus_FieldTerminalPath) Get ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) Get(source *PlanAssignmentRequest_Status) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest_Status
func (*PlanAssignmentRequestStatus_FieldTerminalPath) GetDefault ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequestStatus_FieldTerminalPath) GetRaw ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequestStatus_FieldTerminalPath) GetSingle ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest_Status) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest_Status
func (*PlanAssignmentRequestStatus_FieldTerminalPath) GetSingleRaw ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPath) IsLeaf ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequestStatus_FieldTerminalPath) JSONString ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequestStatus_FieldTerminalPath) Selector ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) Selector() PlanAssignmentRequestStatus_FieldPathSelector
func (*PlanAssignmentRequestStatus_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequestStatus_FieldTerminalPath) String ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequestStatus_FieldPathArrayItemValue
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequestStatus_FieldPathArrayOfValues
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIValue ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequestStatus_FieldPathValue
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIValue ¶
func (fp *PlanAssignmentRequestStatus_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue ¶
type PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequestStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest_Status) bool
Contains returns a boolean indicating if value that is being held is present in given 'Status'
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest_Status as interface{}
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest_Status) (interface{}, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PlanAssignmentRequestStatus_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues ¶
type PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequestStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsConclusionArrayOfValues ¶
func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsConclusionArrayOfValues() ([]PlanAssignmentRequest_Status_Conclusion, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues ¶
func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) AsReasonArrayOfValues() ([]string, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequestStatus_FieldTerminalPathValue ¶
type PlanAssignmentRequestStatus_FieldTerminalPathValue struct { PlanAssignmentRequestStatus_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) AsConclusionValue ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) AsConclusionValue() (PlanAssignmentRequest_Status_Conclusion, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) AsReasonValue ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) AsReasonValue() (string, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWith ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest_Status) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequestStatus_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_Status'.
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'Status' as interface{}
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) SetTo ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest_Status)
SetTo stores value for selected field for object Status
func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PlanAssignmentRequestStatus_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequest_FieldMask ¶
type PlanAssignmentRequest_FieldMask struct {
Paths []PlanAssignmentRequest_FieldPath
}
func FullPlanAssignmentRequest_FieldMask ¶
func FullPlanAssignmentRequest_FieldMask() *PlanAssignmentRequest_FieldMask
func ResourceViewFieldMask ¶
func ResourceViewFieldMask(viewName view.View, extraMask *PlanAssignmentRequest_FieldMask) *PlanAssignmentRequest_FieldMask
func (*PlanAssignmentRequest_FieldMask) AppendPath ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) AppendPath(path PlanAssignmentRequest_FieldPath)
func (*PlanAssignmentRequest_FieldMask) AppendRawPath ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_FieldMask) DecodeFirestore ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_FieldMask) EncodeFirestore ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_FieldMask) FilterInputFields ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) FilterInputFields() *PlanAssignmentRequest_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_FieldMask) FromProtoFieldMask ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_FieldMask) GetPaths ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) GetPaths() []PlanAssignmentRequest_FieldPath
func (*PlanAssignmentRequest_FieldMask) GetRawPaths ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_FieldMask) IsFull ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) IsFull() bool
func (PlanAssignmentRequest_FieldMask) Marshal ¶
func (fieldMask PlanAssignmentRequest_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_FieldMask) MarshalJSON ¶
func (fieldMask PlanAssignmentRequest_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_FieldMask) PathsCount ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_FieldMask) Project ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Project(source *PlanAssignmentRequest) *PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldMask) ProjectRaw ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_FieldMask) ProtoMessage ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_FieldMask) ProtoReflect ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_FieldMask) Reset ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Reset()
func (*PlanAssignmentRequest_FieldMask) Set ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Set(target, source *PlanAssignmentRequest)
func (*PlanAssignmentRequest_FieldMask) SetFromCliFlag ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_FieldMask) SetRaw ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_FieldMask) Size ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Size() int
func (*PlanAssignmentRequest_FieldMask) String ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) String() string
func (*PlanAssignmentRequest_FieldMask) Subtract ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Subtract(other *PlanAssignmentRequest_FieldMask) *PlanAssignmentRequest_FieldMask
func (*PlanAssignmentRequest_FieldMask) SubtractRaw ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_FieldMask) ToProtoFieldMask ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_FieldMask) Unmarshal ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_FieldMask) UnmarshalJSON ¶
func (fieldMask *PlanAssignmentRequest_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_FieldPath ¶
type PlanAssignmentRequest_FieldPath interface { gotenobject.FieldPath Selector() PlanAssignmentRequest_FieldPathSelector Get(source *PlanAssignmentRequest) []interface{} GetSingle(source *PlanAssignmentRequest) (interface{}, bool) ClearValue(item *PlanAssignmentRequest) // Those methods build corresponding PlanAssignmentRequest_FieldPathValue // (or array of values) and holds passed value. Panics if injected type is incorrect. WithIValue(value interface{}) PlanAssignmentRequest_FieldPathValue WithIArrayOfValues(values interface{}) PlanAssignmentRequest_FieldPathArrayOfValues WithIArrayItemValue(value interface{}) PlanAssignmentRequest_FieldPathArrayItemValue }
FieldPath provides implementation to handle https://github.com/protocolbuffers/protobuf/blob/master/src/google/protobuf/field_mask.proto
func BuildPlanAssignmentRequest_FieldPath ¶
func BuildPlanAssignmentRequest_FieldPath(fp gotenobject.RawFieldPath) (PlanAssignmentRequest_FieldPath, error)
func MustParsePlanAssignmentRequest_FieldPath ¶
func MustParsePlanAssignmentRequest_FieldPath(rawField string) PlanAssignmentRequest_FieldPath
func ParsePlanAssignmentRequest_FieldPath ¶
func ParsePlanAssignmentRequest_FieldPath(rawField string) (PlanAssignmentRequest_FieldPath, error)
type PlanAssignmentRequest_FieldPathArrayItemValue ¶
type PlanAssignmentRequest_FieldPathArrayItemValue interface { gotenobject.FieldPathArrayItemValue PlanAssignmentRequest_FieldPath ContainsValue(*PlanAssignmentRequest) bool }
PlanAssignmentRequest_FieldPathArrayItemValue allows storing single item in Path-specific values for PlanAssignmentRequest according to their type Present only for array (repeated) types.
func MustParsePlanAssignmentRequest_FieldPathArrayItemValue ¶
func MustParsePlanAssignmentRequest_FieldPathArrayItemValue(pathStr, valueStr string) PlanAssignmentRequest_FieldPathArrayItemValue
func ParsePlanAssignmentRequest_FieldPathArrayItemValue ¶
func ParsePlanAssignmentRequest_FieldPathArrayItemValue(pathStr, valueStr string) (PlanAssignmentRequest_FieldPathArrayItemValue, error)
ParsePlanAssignmentRequest_FieldPathArrayItemValue parses string and JSON-encoded value to its Value
type PlanAssignmentRequest_FieldPathArrayOfValues ¶
type PlanAssignmentRequest_FieldPathArrayOfValues interface { gotenobject.FieldPathArrayOfValues PlanAssignmentRequest_FieldPath }
PlanAssignmentRequest_FieldPathArrayOfValues allows storing slice of values for PlanAssignmentRequest fields according to their type
func MustParsePlanAssignmentRequest_FieldPathArrayOfValues ¶
func MustParsePlanAssignmentRequest_FieldPathArrayOfValues(pathStr, valuesStr string) PlanAssignmentRequest_FieldPathArrayOfValues
func ParsePlanAssignmentRequest_FieldPathArrayOfValues ¶
func ParsePlanAssignmentRequest_FieldPathArrayOfValues(pathStr, valuesStr string) (PlanAssignmentRequest_FieldPathArrayOfValues, error)
type PlanAssignmentRequest_FieldPathSelector ¶
type PlanAssignmentRequest_FieldPathSelector int32
const ( PlanAssignmentRequest_FieldPathSelectorName PlanAssignmentRequest_FieldPathSelector = 0 PlanAssignmentRequest_FieldPathSelectorRequest PlanAssignmentRequest_FieldPathSelector = 1 PlanAssignmentRequest_FieldPathSelectorService PlanAssignmentRequest_FieldPathSelector = 2 PlanAssignmentRequest_FieldPathSelectorApprover PlanAssignmentRequest_FieldPathSelector = 3 PlanAssignmentRequest_FieldPathSelectorStatus PlanAssignmentRequest_FieldPathSelector = 4 PlanAssignmentRequest_FieldPathSelectorMetadata PlanAssignmentRequest_FieldPathSelector = 5 )
func (PlanAssignmentRequest_FieldPathSelector) String ¶
func (s PlanAssignmentRequest_FieldPathSelector) String() string
type PlanAssignmentRequest_FieldPathValue ¶
type PlanAssignmentRequest_FieldPathValue interface { PlanAssignmentRequest_FieldPath gotenobject.FieldPathValue SetTo(target **PlanAssignmentRequest) CompareWith(*PlanAssignmentRequest) (cmp int, comparable bool) }
PlanAssignmentRequest_FieldPathValue allows storing values for PlanAssignmentRequest fields according to their type
func MustParsePlanAssignmentRequest_FieldPathValue ¶
func MustParsePlanAssignmentRequest_FieldPathValue(pathStr, valueStr string) PlanAssignmentRequest_FieldPathValue
func ParsePlanAssignmentRequest_FieldPathValue ¶
func ParsePlanAssignmentRequest_FieldPathValue(pathStr, valueStr string) (PlanAssignmentRequest_FieldPathValue, error)
type PlanAssignmentRequest_FieldSubPath ¶
type PlanAssignmentRequest_FieldSubPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequest_FieldSubPath) AsMetadataSubPath ¶
func (fps *PlanAssignmentRequest_FieldSubPath) AsMetadataSubPath() (meta.Meta_FieldPath, bool)
func (*PlanAssignmentRequest_FieldSubPath) AsRequestSubPath ¶
func (fps *PlanAssignmentRequest_FieldSubPath) AsRequestSubPath() (PlanAssignmentRequestRequestType_FieldPath, bool)
func (*PlanAssignmentRequest_FieldSubPath) AsStatusSubPath ¶
func (fps *PlanAssignmentRequest_FieldSubPath) AsStatusSubPath() (PlanAssignmentRequestStatus_FieldPath, bool)
func (*PlanAssignmentRequest_FieldSubPath) ClearValue ¶
func (fps *PlanAssignmentRequest_FieldSubPath) ClearValue(item *PlanAssignmentRequest)
func (*PlanAssignmentRequest_FieldSubPath) ClearValueRaw ¶
func (fps *PlanAssignmentRequest_FieldSubPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequest_FieldSubPath) Get ¶
func (fps *PlanAssignmentRequest_FieldSubPath) Get(source *PlanAssignmentRequest) (values []interface{})
Get returns all values pointed by selected field from source PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldSubPath) GetDefault ¶
func (fps *PlanAssignmentRequest_FieldSubPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequest_FieldSubPath) GetRaw ¶
func (fps *PlanAssignmentRequest_FieldSubPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequest_FieldSubPath) GetSingle ¶
func (fps *PlanAssignmentRequest_FieldSubPath) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
GetSingle returns value of selected field from source PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldSubPath) GetSingleRaw ¶
func (fps *PlanAssignmentRequest_FieldSubPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequest_FieldSubPath) IsLeaf ¶
func (fps *PlanAssignmentRequest_FieldSubPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequest_FieldSubPath) JSONString ¶
func (fps *PlanAssignmentRequest_FieldSubPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequest_FieldSubPath) Selector ¶
func (fps *PlanAssignmentRequest_FieldSubPath) Selector() PlanAssignmentRequest_FieldPathSelector
func (*PlanAssignmentRequest_FieldSubPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fps *PlanAssignmentRequest_FieldSubPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_FieldSubPath) String ¶
func (fps *PlanAssignmentRequest_FieldSubPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequest_FieldSubPath) WithIArrayItemValue ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequest_FieldPathArrayItemValue
func (*PlanAssignmentRequest_FieldSubPath) WithIArrayOfValues ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequest_FieldPathArrayOfValues
func (*PlanAssignmentRequest_FieldSubPath) WithIValue ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithIValue(value interface{}) PlanAssignmentRequest_FieldPathValue
func (*PlanAssignmentRequest_FieldSubPath) WithRawIArrayItemValue ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequest_FieldSubPath) WithRawIArrayOfValues ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequest_FieldSubPath) WithRawIValue ¶
func (fps *PlanAssignmentRequest_FieldSubPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequest_FieldSubPathArrayItemValue ¶
type PlanAssignmentRequest_FieldSubPathArrayItemValue struct { PlanAssignmentRequest_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) AsMetadataPathItemValue ¶
func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsMetadataPathItemValue() (meta.Meta_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) AsRequestPathItemValue ¶
func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsRequestPathItemValue() (PlanAssignmentRequestRequestType_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) AsStatusPathItemValue ¶
func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) AsStatusPathItemValue() (PlanAssignmentRequestStatus_FieldPathArrayItemValue, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) ContainsValue ¶
func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest) bool
Contains returns a boolean indicating if value that is being held is present in given 'PlanAssignmentRequest'
func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) GetRawItemValue ¶
func (fpaivs *PlanAssignmentRequest_FieldSubPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored array item value
type PlanAssignmentRequest_FieldSubPathArrayOfValues ¶
type PlanAssignmentRequest_FieldSubPathArrayOfValues struct { PlanAssignmentRequest_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues ¶
func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues() (meta.Meta_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayOfValues) AsRequestPathArrayOfValues ¶
func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsRequestPathArrayOfValues() (PlanAssignmentRequestRequestType_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues ¶
func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues() (PlanAssignmentRequestStatus_FieldPathArrayOfValues, bool)
func (*PlanAssignmentRequest_FieldSubPathArrayOfValues) GetRawValues ¶
func (fpsaov *PlanAssignmentRequest_FieldSubPathArrayOfValues) GetRawValues() []interface{}
type PlanAssignmentRequest_FieldSubPathValue ¶
type PlanAssignmentRequest_FieldSubPathValue struct { PlanAssignmentRequest_FieldPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldSubPathValue) AsMetadataPathValue ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsMetadataPathValue() (meta.Meta_FieldPathValue, bool)
func (*PlanAssignmentRequest_FieldSubPathValue) AsRequestPathValue ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsRequestPathValue() (PlanAssignmentRequestRequestType_FieldPathValue, bool)
func (*PlanAssignmentRequest_FieldSubPathValue) AsStatusPathValue ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) AsStatusPathValue() (PlanAssignmentRequestStatus_FieldPathValue, bool)
func (*PlanAssignmentRequest_FieldSubPathValue) CompareWith ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) CompareWith(source *PlanAssignmentRequest) (int, bool)
func (*PlanAssignmentRequest_FieldSubPathValue) CompareWithRaw ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequest_FieldSubPathValue) GetRawValue ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) GetRawValue() interface{}
func (*PlanAssignmentRequest_FieldSubPathValue) SetTo ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) SetTo(target **PlanAssignmentRequest)
func (*PlanAssignmentRequest_FieldSubPathValue) SetToRaw ¶
func (fpvs *PlanAssignmentRequest_FieldSubPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequest_FieldTerminalPath ¶
type PlanAssignmentRequest_FieldTerminalPath struct {
// contains filtered or unexported fields
}
func (*PlanAssignmentRequest_FieldTerminalPath) ClearValue ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) ClearValue(item *PlanAssignmentRequest)
func (*PlanAssignmentRequest_FieldTerminalPath) ClearValueRaw ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) ClearValueRaw(item proto.Message)
func (*PlanAssignmentRequest_FieldTerminalPath) Get ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) Get(source *PlanAssignmentRequest) (values []interface{})
Get returns all values pointed by specific field from source PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldTerminalPath) GetDefault ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) GetDefault() interface{}
GetDefault returns a default value of the field type
func (*PlanAssignmentRequest_FieldTerminalPath) GetRaw ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) GetRaw(source proto.Message) []interface{}
func (*PlanAssignmentRequest_FieldTerminalPath) GetSingle ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
GetSingle returns value pointed by specific field of from source PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldTerminalPath) GetSingleRaw ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) GetSingleRaw(source proto.Message) (interface{}, bool)
func (*PlanAssignmentRequest_FieldTerminalPath) IsLeaf ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) IsLeaf() bool
IsLeaf - whether field path is holds simple value
func (*PlanAssignmentRequest_FieldTerminalPath) JSONString ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) JSONString() string
JSONString returns path representation is JSON convention
func (*PlanAssignmentRequest_FieldTerminalPath) Selector ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) Selector() PlanAssignmentRequest_FieldPathSelector
func (*PlanAssignmentRequest_FieldTerminalPath) SplitIntoTerminalIPaths ¶ added in v0.8.0
func (fp *PlanAssignmentRequest_FieldTerminalPath) SplitIntoTerminalIPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_FieldTerminalPath) String ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) String() string
String returns path representation in proto convention
func (*PlanAssignmentRequest_FieldTerminalPath) WithIArrayItemValue ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIArrayItemValue(value interface{}) PlanAssignmentRequest_FieldPathArrayItemValue
func (*PlanAssignmentRequest_FieldTerminalPath) WithIArrayOfValues ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIArrayOfValues(values interface{}) PlanAssignmentRequest_FieldPathArrayOfValues
func (*PlanAssignmentRequest_FieldTerminalPath) WithIValue ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithIValue(value interface{}) PlanAssignmentRequest_FieldPathValue
func (*PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayItemValue ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayItemValue(value interface{}) gotenobject.FieldPathArrayItemValue
func (*PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayOfValues ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIArrayOfValues(values interface{}) gotenobject.FieldPathArrayOfValues
func (*PlanAssignmentRequest_FieldTerminalPath) WithRawIValue ¶
func (fp *PlanAssignmentRequest_FieldTerminalPath) WithRawIValue(value interface{}) gotenobject.FieldPathValue
type PlanAssignmentRequest_FieldTerminalPathArrayItemValue ¶
type PlanAssignmentRequest_FieldTerminalPathArrayItemValue struct { PlanAssignmentRequest_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldTerminalPathArrayItemValue) ContainsValue ¶
func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) ContainsValue(source *PlanAssignmentRequest) bool
Contains returns a boolean indicating if value that is being held is present in given 'PlanAssignmentRequest'
func (*PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetRawItemValue ¶
func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetRawItemValue() interface{}
GetRawValue returns stored element value for array in object PlanAssignmentRequest as interface{}
func (*PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingle ¶
func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingle(source *PlanAssignmentRequest) (interface{}, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingleRaw ¶
func (fpaiv *PlanAssignmentRequest_FieldTerminalPathArrayItemValue) GetSingleRaw(source proto.Message) (interface{}, bool)
type PlanAssignmentRequest_FieldTerminalPathArrayOfValues ¶
type PlanAssignmentRequest_FieldTerminalPathArrayOfValues struct { PlanAssignmentRequest_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsApproverArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsApproverArrayOfValues() ([]*iam_organization.Reference, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues() ([]*meta.Meta, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsNameArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsNameArrayOfValues() ([]*Name, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsRequestArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsRequestArrayOfValues() ([]*PlanAssignmentRequest_RequestType, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsServiceArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsServiceArrayOfValues() ([]*meta_service.Reference, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues() ([]*PlanAssignmentRequest_Status, bool)
func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) GetRawValues ¶
func (fpaov *PlanAssignmentRequest_FieldTerminalPathArrayOfValues) GetRawValues() (values []interface{})
type PlanAssignmentRequest_FieldTerminalPathValue ¶
type PlanAssignmentRequest_FieldTerminalPathValue struct { PlanAssignmentRequest_FieldTerminalPath // contains filtered or unexported fields }
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsApproverValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsApproverValue() (*iam_organization.Reference, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsMetadataValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsMetadataValue() (*meta.Meta, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsNameValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsNameValue() (*Name, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsRequestValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsRequestValue() (*PlanAssignmentRequest_RequestType, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsServiceValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsServiceValue() (*meta_service.Reference, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) AsStatusValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) AsStatusValue() (*PlanAssignmentRequest_Status, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) CompareWith ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) CompareWith(source *PlanAssignmentRequest) (int, bool)
CompareWith compares value in the 'PlanAssignmentRequest_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest'.
func (*PlanAssignmentRequest_FieldTerminalPathValue) CompareWithRaw ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) CompareWithRaw(source proto.Message) (int, bool)
func (*PlanAssignmentRequest_FieldTerminalPathValue) GetRawValue ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) GetRawValue() interface{}
GetRawValue returns raw value stored under selected path for 'PlanAssignmentRequest' as interface{}
func (*PlanAssignmentRequest_FieldTerminalPathValue) SetTo ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) SetTo(target **PlanAssignmentRequest)
SetTo stores value for selected field for object PlanAssignmentRequest
func (*PlanAssignmentRequest_FieldTerminalPathValue) SetToRaw ¶
func (fpv *PlanAssignmentRequest_FieldTerminalPathValue) SetToRaw(target proto.Message)
type PlanAssignmentRequest_RequestType ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType struct { // Types that are valid to be assigned to Request: // *PlanAssignmentRequest_RequestType_Assign_ // *PlanAssignmentRequest_RequestType_Extend_ // *PlanAssignmentRequest_RequestType_Redistribute_ // *PlanAssignmentRequest_RequestType_Unassign_ Request isPlanAssignmentRequest_RequestType_Request `protobuf_oneof:"request"` // contains filtered or unexported fields }
RequestType describes what should change in existing PlanAssignment, optionally if new one should be created.
func (*PlanAssignmentRequest_RequestType) Clone ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) Clone() *PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequest_RequestType) CloneRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType) Descriptor ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_RequestType.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_RequestType) GetAssign ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) GetAssign() *PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequest_RequestType) GetExtend ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) GetExtend() *PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequest_RequestType) GetRedistribute ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) GetRedistribute() *PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequest_RequestType) GetRequest ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) GetRequest() isPlanAssignmentRequest_RequestType_Request
func (*PlanAssignmentRequest_RequestType) GetUnassign ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) GetUnassign() *PlanAssignmentRequest_RequestType_Unassign
func (*PlanAssignmentRequest_RequestType) GotenMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType) GotenMessage()
func (*PlanAssignmentRequest_RequestType) GotenObjectExt ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) GotenObjectExt()
func (*PlanAssignmentRequest_RequestType) GotenValidate ¶ added in v1.0.21
func (obj *PlanAssignmentRequest_RequestType) GotenValidate() error
func (*PlanAssignmentRequest_RequestType) MakeDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_RequestType_FieldMask
func (*PlanAssignmentRequest_RequestType) MakeFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_FieldMask
func (*PlanAssignmentRequest_RequestType) MakeRawDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType) MakeRawFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType) Marshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_RequestType) MarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType) Merge ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) Merge(source *PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequest_RequestType) MergeRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType) ProtoMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType) ProtoMessage()
func (*PlanAssignmentRequest_RequestType) ProtoReflect ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType) Reset ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) Reset()
func (*PlanAssignmentRequest_RequestType) SetAssign ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) SetAssign(fv *PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequest_RequestType) SetExtend ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) SetExtend(fv *PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequest_RequestType) SetRedistribute ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) SetRedistribute(fv *PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequest_RequestType) SetRequest ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) SetRequest(ofv isPlanAssignmentRequest_RequestType_Request)
func (*PlanAssignmentRequest_RequestType) SetUnassign ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) SetUnassign(fv *PlanAssignmentRequest_RequestType_Unassign)
func (*PlanAssignmentRequest_RequestType) String ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) String() string
func (*PlanAssignmentRequest_RequestType) Unmarshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_RequestType) UnmarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorAssign ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssign struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) Extensions ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) RegionalDistributions ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) RegionalDistributions() PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestTypeAssign_FieldPathArrayItemValue) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestTypeAssign_FieldPathArrayOfValues) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeAssign_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathValue
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorAssignPlan ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignPlan struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithValue(value *plan.Reference) *PlanAssignmentRequestRequestType_FieldSubPathValue
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithItemValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorExtend ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtend struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) Assignment ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) RegionalDistributions ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) RegionalDistributions() PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestTypeExtend_FieldPathArrayItemValue) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestTypeExtend_FieldPathArrayOfValues) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubValue(subPathValue PlanAssignmentRequestRequestTypeExtend_FieldPathValue) *PlanAssignmentRequestRequestType_FieldSubPathValue
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithItemValue(value *common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithValue(value []*common.Allowance) *PlanAssignmentRequestRequestType_FieldSubPathValue
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithItemValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorRedistribute ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistribute struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) Assignment ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) RegionalDistributions ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithArrayOfValues ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayItemValue) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestTypeRedistribute_FieldPathArrayOfValues) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithItemValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestTypePathSelectorUnassign ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorUnassign struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) Assignment ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithArrayOfValues(values []*PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayItemValue(subPathArrayItemValue PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayItemValue) *PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayOfValues(subPathArrayOfValues PlanAssignmentRequestRequestTypeUnassign_FieldPathArrayOfValues) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment struct{}
func (PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_Assign ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Assign struct { // Plan to apply Plan *plan.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=plan,proto3" json:"plan,omitempty" firestore:"plan"` // List of all extensions over basic plan Extensions []*common.Allowance `protobuf:"bytes,2,rep,name=extensions,proto3" json:"extensions,omitempty" firestore:"extensions"` // Optional list of distributions across regions. This field // can only be used for project plans only. // It may be provided fully or partially by user - system will // automatically distribute remaining limits equally across // all regions. RegionalDistributions []*common.RegionalDistribution `` /* 158-byte string literal not displayed */ // contains filtered or unexported fields }
Assign request requests for new PlanAssignment instance. If there already is a plan for same service, then previous record is overwritten. In other words, this request can also be used to upgrade/downgrade existing plan.
func (*PlanAssignmentRequest_RequestType_Assign) Clone ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) Clone() *PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequest_RequestType_Assign) CloneRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Assign) Descriptor ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Assign) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_RequestType_Assign.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_RequestType_Assign) GetExtensions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) GetExtensions() []*common.Allowance
func (*PlanAssignmentRequest_RequestType_Assign) GetPlan ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) GetPlan() *plan.Reference
func (*PlanAssignmentRequest_RequestType_Assign) GetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) GetRegionalDistributions() []*common.RegionalDistribution
func (*PlanAssignmentRequest_RequestType_Assign) GotenMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Assign) GotenMessage()
func (*PlanAssignmentRequest_RequestType_Assign) GotenObjectExt ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) GotenObjectExt()
func (*PlanAssignmentRequest_RequestType_Assign) GotenValidate ¶ added in v1.0.21
func (obj *PlanAssignmentRequest_RequestType_Assign) GotenValidate() error
func (*PlanAssignmentRequest_RequestType_Assign) MakeDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_RequestType_Assign_FieldMask
func (*PlanAssignmentRequest_RequestType_Assign) MakeFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Assign_FieldMask
func (*PlanAssignmentRequest_RequestType_Assign) MakeRawDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Assign) MakeRawFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Assign) Marshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Assign) MarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Assign) Merge ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) Merge(source *PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequest_RequestType_Assign) MergeRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Assign) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Assign) ProtoMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Assign) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Assign) ProtoReflect ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Assign) Reset ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) Reset()
func (*PlanAssignmentRequest_RequestType_Assign) SetExtensions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) SetExtensions(fv []*common.Allowance)
func (*PlanAssignmentRequest_RequestType_Assign) SetPlan ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) SetPlan(fv *plan.Reference)
func (*PlanAssignmentRequest_RequestType_Assign) SetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) SetRegionalDistributions(fv []*common.RegionalDistribution)
func (*PlanAssignmentRequest_RequestType_Assign) String ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) String() string
func (*PlanAssignmentRequest_RequestType_Assign) Unmarshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_RequestType_Assign) UnmarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Assign) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithItemValue ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayItemValue(subPathArrayItemValue common.Allowance_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayOfValues(subPathArrayOfValues common.Allowance_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubValue(subPathValue common.Allowance_FieldPathValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_AssignPathSelectorPlan ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorPlan struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithArrayOfValues(values []*plan.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithItemValue ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_Assign_ ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Assign_ struct { // Assign request Assign *PlanAssignmentRequest_RequestType_Assign `protobuf:"bytes,1,opt,name=assign,proto3,oneof" firestore:"assign"` }
type PlanAssignmentRequest_RequestType_Assign_FieldMask ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Assign_FieldMask struct {
Paths []PlanAssignmentRequestRequestTypeAssign_FieldPath
}
func FullPlanAssignmentRequest_RequestType_Assign_FieldMask ¶ added in v1.0.21
func FullPlanAssignmentRequest_RequestType_Assign_FieldMask() *PlanAssignmentRequest_RequestType_Assign_FieldMask
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeAssign_FieldPath)
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendRawPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) DecodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) EncodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) FilterInputFields ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Assign_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) FromProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) GetPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeAssign_FieldPath
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) GetRawPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) IsFull ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) IsFull() bool
func (PlanAssignmentRequest_RequestType_Assign_FieldMask) Marshal ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Assign_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_RequestType_Assign_FieldMask) MarshalJSON ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Assign_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) PathsCount ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Project ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Assign) *PlanAssignmentRequest_RequestType_Assign
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ProjectRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoMessage ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoReflect ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Reset ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Reset()
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Set ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Assign)
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) SetFromCliFlag ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) SetRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Size ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Size() int
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) String ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) String() string
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Subtract ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Assign_FieldMask) *PlanAssignmentRequest_RequestType_Assign_FieldMask
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) SubtractRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ToProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Unmarshal ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) UnmarshalJSON ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Assign_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_Extend ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Extend struct { // Reference to existing plan assignment Assignment *plan_assignment.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=assignment,proto3" json:"assignment,omitempty" firestore:"assignment"` // List of limits to merge within existing assignment Additions []*common.Allowance `protobuf:"bytes,2,rep,name=additions,proto3" json:"additions,omitempty" firestore:"additions"` // Distributions of NEW (only!) limits across regions. // It does not allow for redistribution of existing limits before. // It is optional, but can be provided only for project plans. // May be provided fully or partially, system will distribute // remaining limits on its own. RegionalDistributions []*common.RegionalDistribution `` /* 158-byte string literal not displayed */ // contains filtered or unexported fields }
Extend request should be used in order to increase (optionally decrease) limits from existing plan assignment.
func (*PlanAssignmentRequest_RequestType_Extend) Clone ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) Clone() *PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequest_RequestType_Extend) CloneRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Extend) Descriptor ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Extend) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_RequestType_Extend.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_RequestType_Extend) GetAdditions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) GetAdditions() []*common.Allowance
func (*PlanAssignmentRequest_RequestType_Extend) GetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) GetAssignment() *plan_assignment.Reference
func (*PlanAssignmentRequest_RequestType_Extend) GetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) GetRegionalDistributions() []*common.RegionalDistribution
func (*PlanAssignmentRequest_RequestType_Extend) GotenMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Extend) GotenMessage()
func (*PlanAssignmentRequest_RequestType_Extend) GotenObjectExt ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) GotenObjectExt()
func (*PlanAssignmentRequest_RequestType_Extend) GotenValidate ¶ added in v1.0.21
func (obj *PlanAssignmentRequest_RequestType_Extend) GotenValidate() error
func (*PlanAssignmentRequest_RequestType_Extend) MakeDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_RequestType_Extend_FieldMask
func (*PlanAssignmentRequest_RequestType_Extend) MakeFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Extend_FieldMask
func (*PlanAssignmentRequest_RequestType_Extend) MakeRawDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Extend) MakeRawFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Extend) Marshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Extend) MarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Extend) Merge ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) Merge(source *PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequest_RequestType_Extend) MergeRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Extend) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Extend) ProtoMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Extend) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Extend) ProtoReflect ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Extend) Reset ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) Reset()
func (*PlanAssignmentRequest_RequestType_Extend) SetAdditions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) SetAdditions(fv []*common.Allowance)
func (*PlanAssignmentRequest_RequestType_Extend) SetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) SetAssignment(fv *plan_assignment.Reference)
func (*PlanAssignmentRequest_RequestType_Extend) SetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) SetRegionalDistributions(fv []*common.RegionalDistribution)
func (*PlanAssignmentRequest_RequestType_Extend) String ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) String() string
func (*PlanAssignmentRequest_RequestType_Extend) Unmarshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_RequestType_Extend) UnmarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Extend) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithArrayOfValues(values [][]*common.Allowance) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithItemValue ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayItemValue(subPathArrayItemValue common.Allowance_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayOfValues(subPathArrayOfValues common.Allowance_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubValue(subPathValue common.Allowance_FieldPathValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) WithArrayOfValues(values []int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithArrayOfValues(values [][]*common.RegionalDistribution) *PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithItemValue ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) WithArrayOfValues(values []*meta_resource.Reference) *PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues
type PlanAssignmentRequest_RequestType_Extend_ ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Extend_ struct { // Extend request Extend *PlanAssignmentRequest_RequestType_Extend `protobuf:"bytes,2,opt,name=extend,proto3,oneof" firestore:"extend"` }
type PlanAssignmentRequest_RequestType_Extend_FieldMask ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Extend_FieldMask struct {
Paths []PlanAssignmentRequestRequestTypeExtend_FieldPath
}
func FullPlanAssignmentRequest_RequestType_Extend_FieldMask ¶ added in v1.0.21
func FullPlanAssignmentRequest_RequestType_Extend_FieldMask() *PlanAssignmentRequest_RequestType_Extend_FieldMask
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeExtend_FieldPath)
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendRawPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) DecodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) EncodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) FilterInputFields ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Extend_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) FromProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) GetPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeExtend_FieldPath
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) GetRawPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) IsFull ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) IsFull() bool
func (PlanAssignmentRequest_RequestType_Extend_FieldMask) Marshal ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Extend_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_RequestType_Extend_FieldMask) MarshalJSON ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Extend_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) PathsCount ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Project ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Extend) *PlanAssignmentRequest_RequestType_Extend
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ProjectRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoMessage ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoReflect ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Reset ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Reset()
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Set ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Extend)
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) SetFromCliFlag ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) SetRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Size ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Size() int
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) String ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) String() string
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Subtract ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_Extend_FieldMask) *PlanAssignmentRequest_RequestType_Extend_FieldMask
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) SubtractRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ToProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Unmarshal ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) UnmarshalJSON ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Extend_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_FieldMask ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_FieldMask struct {
Paths []PlanAssignmentRequestRequestType_FieldPath
}
func FullPlanAssignmentRequest_RequestType_FieldMask ¶ added in v1.0.21
func FullPlanAssignmentRequest_RequestType_FieldMask() *PlanAssignmentRequest_RequestType_FieldMask
func (*PlanAssignmentRequest_RequestType_FieldMask) AppendPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) AppendPath(path PlanAssignmentRequestRequestType_FieldPath)
func (*PlanAssignmentRequest_RequestType_FieldMask) AppendRawPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_RequestType_FieldMask) DecodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_RequestType_FieldMask) EncodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_RequestType_FieldMask) FilterInputFields ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_RequestType_FieldMask) FromProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_RequestType_FieldMask) GetPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) GetPaths() []PlanAssignmentRequestRequestType_FieldPath
func (*PlanAssignmentRequest_RequestType_FieldMask) GetRawPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_RequestType_FieldMask) IsFull ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) IsFull() bool
func (PlanAssignmentRequest_RequestType_FieldMask) Marshal ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_RequestType_FieldMask) MarshalJSON ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_FieldMask) PathsCount ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_RequestType_FieldMask) Project ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Project(source *PlanAssignmentRequest_RequestType) *PlanAssignmentRequest_RequestType
func (*PlanAssignmentRequest_RequestType_FieldMask) ProjectRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_FieldMask) ProtoMessage ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_FieldMask) ProtoReflect ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_FieldMask) Reset ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Reset()
func (*PlanAssignmentRequest_RequestType_FieldMask) Set ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType)
func (*PlanAssignmentRequest_RequestType_FieldMask) SetFromCliFlag ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_RequestType_FieldMask) SetRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_FieldMask) Size ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Size() int
func (*PlanAssignmentRequest_RequestType_FieldMask) String ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) String() string
func (*PlanAssignmentRequest_RequestType_FieldMask) Subtract ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Subtract(other *PlanAssignmentRequest_RequestType_FieldMask) *PlanAssignmentRequest_RequestType_FieldMask
func (*PlanAssignmentRequest_RequestType_FieldMask) SubtractRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_FieldMask) ToProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_RequestType_FieldMask) Unmarshal ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_RequestType_FieldMask) UnmarshalJSON ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_Redistribute ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Redistribute struct { // Reference to existing assignment Assignment *plan_assignment.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=assignment,proto3" json:"assignment,omitempty" firestore:"assignment"` // List of regional distributions. It should contain // only those regions where limits are moved from/to. RegionalDistributions []*common.RegionalDistribution `` /* 158-byte string literal not displayed */ // contains filtered or unexported fields }
Redistribute request is used to move existing limits across regions. It cannot change total values.
func (*PlanAssignmentRequest_RequestType_Redistribute) CloneRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Redistribute) Descriptor ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Redistribute) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_RequestType_Redistribute.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_RequestType_Redistribute) GetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) GetAssignment() *plan_assignment.Reference
func (*PlanAssignmentRequest_RequestType_Redistribute) GetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) GetRegionalDistributions() []*common.RegionalDistribution
func (*PlanAssignmentRequest_RequestType_Redistribute) GotenMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Redistribute) GotenMessage()
func (*PlanAssignmentRequest_RequestType_Redistribute) GotenObjectExt ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) GotenObjectExt()
func (*PlanAssignmentRequest_RequestType_Redistribute) GotenValidate ¶ added in v1.0.21
func (obj *PlanAssignmentRequest_RequestType_Redistribute) GotenValidate() error
func (*PlanAssignmentRequest_RequestType_Redistribute) MakeDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute) MakeFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute) MakeRawDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute) MakeRawFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute) Marshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Redistribute) MarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Redistribute) Merge ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) Merge(source *PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequest_RequestType_Redistribute) MergeRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Redistribute) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoReflect ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Redistribute) Reset ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) Reset()
func (*PlanAssignmentRequest_RequestType_Redistribute) SetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) SetAssignment(fv *plan_assignment.Reference)
func (*PlanAssignmentRequest_RequestType_Redistribute) SetRegionalDistributions ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) SetRegionalDistributions(fv []*common.RegionalDistribution)
func (*PlanAssignmentRequest_RequestType_Redistribute) String ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) String() string
func (*PlanAssignmentRequest_RequestType_Redistribute) Unmarshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_RequestType_Redistribute) UnmarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Redistribute) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion struct {
// contains filtered or unexported fields
}
func (PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment struct{}
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions struct{}
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) LimitsByRegion ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) Resource ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithArrayOfValues ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithItemValue ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayItemValue ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayItemValue(subPathArrayItemValue common.RegionalDistribution_FieldPathArrayItemValue) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayOfValues(subPathArrayOfValues common.RegionalDistribution_FieldPathArrayOfValues) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubValue ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion struct{}
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithArrayOfValues(values []map[string]int64) *PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithKey ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource struct{}
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) WithArrayOfValues ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Redistribute_ ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Redistribute_ struct { // Redistribute request Redistribute *PlanAssignmentRequest_RequestType_Redistribute `protobuf:"bytes,3,opt,name=redistribute,proto3,oneof" firestore:"redistribute"` }
type PlanAssignmentRequest_RequestType_Redistribute_FieldMask ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Redistribute_FieldMask struct {
Paths []PlanAssignmentRequestRequestTypeRedistribute_FieldPath
}
func FullPlanAssignmentRequest_RequestType_Redistribute_FieldMask ¶ added in v1.0.21
func FullPlanAssignmentRequest_RequestType_Redistribute_FieldMask() *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeRedistribute_FieldPath)
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendRawPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) DecodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) EncodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FilterInputFields ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Redistribute_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FromProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeRedistribute_FieldPath
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetRawPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) IsFull ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) IsFull() bool
func (PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Marshal ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_RequestType_Redistribute_FieldMask) MarshalJSON ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Redistribute_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) PathsCount ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Project ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Redistribute) *PlanAssignmentRequest_RequestType_Redistribute
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProjectRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoMessage ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoReflect ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Reset ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Reset()
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Set ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Redistribute)
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetFromCliFlag ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Size ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Size() int
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) String ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) String() string
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SubtractRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ToProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Unmarshal ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) UnmarshalJSON ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Redistribute_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_Unassign ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Unassign struct { Assignment *plan_assignment.Reference `protobuf:"bytes,1,opt,customtype=Reference,name=assignment,proto3" json:"assignment,omitempty" firestore:"assignment"` // contains filtered or unexported fields }
Unassign is used to remove existing PlanAssignment. This will always be automatically approved unless limits are in use by existing resources.
func (*PlanAssignmentRequest_RequestType_Unassign) CloneRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Unassign) Descriptor ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Unassign) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_RequestType_Unassign.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_RequestType_Unassign) GetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) GetAssignment() *plan_assignment.Reference
func (*PlanAssignmentRequest_RequestType_Unassign) GotenMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Unassign) GotenMessage()
func (*PlanAssignmentRequest_RequestType_Unassign) GotenObjectExt ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) GotenObjectExt()
func (*PlanAssignmentRequest_RequestType_Unassign) GotenValidate ¶ added in v1.0.21
func (obj *PlanAssignmentRequest_RequestType_Unassign) GotenValidate() error
func (*PlanAssignmentRequest_RequestType_Unassign) MakeDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) MakeDiffFieldMask(other *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_RequestType_Unassign_FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign) MakeFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) MakeFullFieldMask() *PlanAssignmentRequest_RequestType_Unassign_FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign) MakeRawDiffFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign) MakeRawFullFieldMask ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign) Marshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Unassign) MarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Unassign) Merge ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) Merge(source *PlanAssignmentRequest_RequestType_Unassign)
func (*PlanAssignmentRequest_RequestType_Unassign) MergeRaw ¶ added in v1.0.21
func (o *PlanAssignmentRequest_RequestType_Unassign) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Unassign) ProtoMessage ¶ added in v1.0.21
func (*PlanAssignmentRequest_RequestType_Unassign) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Unassign) ProtoReflect ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Unassign) Reset ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) Reset()
func (*PlanAssignmentRequest_RequestType_Unassign) SetAssignment ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) SetAssignment(fv *plan_assignment.Reference)
func (*PlanAssignmentRequest_RequestType_Unassign) String ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) String() string
func (*PlanAssignmentRequest_RequestType_Unassign) Unmarshal ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_RequestType_Unassign) UnmarshalJSON ¶ added in v1.0.21
func (m *PlanAssignmentRequest_RequestType_Unassign) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment struct{}
func (PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) FieldPath ¶ added in v1.0.21
func (PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) WithArrayOfValues ¶ added in v1.0.21
func (s PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) WithArrayOfValues(values []*plan_assignment.Reference) *PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayOfValues
type PlanAssignmentRequest_RequestType_Unassign_ ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Unassign_ struct { // Unassign request Unassign *PlanAssignmentRequest_RequestType_Unassign `protobuf:"bytes,4,opt,name=unassign,proto3,oneof" firestore:"unassign"` }
type PlanAssignmentRequest_RequestType_Unassign_FieldMask ¶ added in v1.0.21
type PlanAssignmentRequest_RequestType_Unassign_FieldMask struct {
Paths []PlanAssignmentRequestRequestTypeUnassign_FieldPath
}
func FullPlanAssignmentRequest_RequestType_Unassign_FieldMask ¶ added in v1.0.21
func FullPlanAssignmentRequest_RequestType_Unassign_FieldMask() *PlanAssignmentRequest_RequestType_Unassign_FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendPath(path PlanAssignmentRequestRequestTypeUnassign_FieldPath)
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendRawPath ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) DecodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) EncodeFirestore ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) FilterInputFields ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) FilterInputFields() *PlanAssignmentRequest_RequestType_Unassign_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) FromProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetPaths() []PlanAssignmentRequestRequestTypeUnassign_FieldPath
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetRawPaths ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) IsFull ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) IsFull() bool
func (PlanAssignmentRequest_RequestType_Unassign_FieldMask) Marshal ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Unassign_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_RequestType_Unassign_FieldMask) MarshalJSON ¶ added in v1.0.21
func (fieldMask PlanAssignmentRequest_RequestType_Unassign_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) PathsCount ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Project ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Project(source *PlanAssignmentRequest_RequestType_Unassign) *PlanAssignmentRequest_RequestType_Unassign
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProjectRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoMessage ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoReflect ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Reset ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Reset()
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Set ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Set(target, source *PlanAssignmentRequest_RequestType_Unassign)
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetFromCliFlag ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Size ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Size() int
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) String ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) String() string
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) SubtractRaw ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ToProtoFieldMask ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Unmarshal ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) UnmarshalJSON ¶ added in v1.0.21
func (fieldMask *PlanAssignmentRequest_RequestType_Unassign_FieldMask) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_Status ¶
type PlanAssignmentRequest_Status struct { // Conclusion Conclusion PlanAssignmentRequest_Status_Conclusion `` /* 162-byte string literal not displayed */ // Optional message with reason Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty" firestore:"reason"` // contains filtered or unexported fields }
Status
func (*PlanAssignmentRequest_Status) Clone ¶
func (o *PlanAssignmentRequest_Status) Clone() *PlanAssignmentRequest_Status
func (*PlanAssignmentRequest_Status) CloneRaw ¶
func (o *PlanAssignmentRequest_Status) CloneRaw() gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_Status) Descriptor ¶
func (*PlanAssignmentRequest_Status) Descriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_Status.ProtoReflect.Descriptor instead.
func (*PlanAssignmentRequest_Status) GetConclusion ¶
func (m *PlanAssignmentRequest_Status) GetConclusion() PlanAssignmentRequest_Status_Conclusion
func (*PlanAssignmentRequest_Status) GetReason ¶
func (m *PlanAssignmentRequest_Status) GetReason() string
func (*PlanAssignmentRequest_Status) GotenMessage ¶
func (*PlanAssignmentRequest_Status) GotenMessage()
func (*PlanAssignmentRequest_Status) GotenObjectExt ¶
func (o *PlanAssignmentRequest_Status) GotenObjectExt()
func (*PlanAssignmentRequest_Status) GotenValidate ¶
func (obj *PlanAssignmentRequest_Status) GotenValidate() error
func (*PlanAssignmentRequest_Status) MakeDiffFieldMask ¶
func (o *PlanAssignmentRequest_Status) MakeDiffFieldMask(other *PlanAssignmentRequest_Status) *PlanAssignmentRequest_Status_FieldMask
func (*PlanAssignmentRequest_Status) MakeFullFieldMask ¶
func (o *PlanAssignmentRequest_Status) MakeFullFieldMask() *PlanAssignmentRequest_Status_FieldMask
func (*PlanAssignmentRequest_Status) MakeRawDiffFieldMask ¶
func (o *PlanAssignmentRequest_Status) MakeRawDiffFieldMask(other gotenobject.GotenObjectExt) gotenobject.FieldMask
func (*PlanAssignmentRequest_Status) MakeRawFullFieldMask ¶
func (o *PlanAssignmentRequest_Status) MakeRawFullFieldMask() gotenobject.FieldMask
func (*PlanAssignmentRequest_Status) Marshal ¶
func (m *PlanAssignmentRequest_Status) Marshal() ([]byte, error)
func (*PlanAssignmentRequest_Status) MarshalJSON ¶
func (m *PlanAssignmentRequest_Status) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_Status) Merge ¶
func (o *PlanAssignmentRequest_Status) Merge(source *PlanAssignmentRequest_Status)
func (*PlanAssignmentRequest_Status) MergeRaw ¶
func (o *PlanAssignmentRequest_Status) MergeRaw(source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_Status) ProtoMessage ¶
func (*PlanAssignmentRequest_Status) ProtoMessage()
func (*PlanAssignmentRequest_Status) ProtoReflect ¶
func (m *PlanAssignmentRequest_Status) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_Status) Reset ¶
func (m *PlanAssignmentRequest_Status) Reset()
func (*PlanAssignmentRequest_Status) SetConclusion ¶
func (m *PlanAssignmentRequest_Status) SetConclusion(fv PlanAssignmentRequest_Status_Conclusion)
func (*PlanAssignmentRequest_Status) SetReason ¶
func (m *PlanAssignmentRequest_Status) SetReason(fv string)
func (*PlanAssignmentRequest_Status) String ¶
func (m *PlanAssignmentRequest_Status) String() string
func (*PlanAssignmentRequest_Status) Unmarshal ¶
func (m *PlanAssignmentRequest_Status) Unmarshal(b []byte) error
func (*PlanAssignmentRequest_Status) UnmarshalJSON ¶
func (m *PlanAssignmentRequest_Status) UnmarshalJSON(data []byte) error
type PlanAssignmentRequest_StatusPathSelectorConclusion ¶
type PlanAssignmentRequest_StatusPathSelectorConclusion struct{}
func (PlanAssignmentRequest_StatusPathSelectorConclusion) WithArrayOfValues ¶
func (s PlanAssignmentRequest_StatusPathSelectorConclusion) WithArrayOfValues(values []PlanAssignmentRequest_Status_Conclusion) *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues
type PlanAssignmentRequest_StatusPathSelectorReason ¶
type PlanAssignmentRequest_StatusPathSelectorReason struct{}
func (PlanAssignmentRequest_StatusPathSelectorReason) WithArrayOfValues ¶
func (s PlanAssignmentRequest_StatusPathSelectorReason) WithArrayOfValues(values []string) *PlanAssignmentRequestStatus_FieldTerminalPathArrayOfValues
func (PlanAssignmentRequest_StatusPathSelectorReason) WithValue ¶
func (s PlanAssignmentRequest_StatusPathSelectorReason) WithValue(value string) *PlanAssignmentRequestStatus_FieldTerminalPathValue
type PlanAssignmentRequest_Status_Conclusion ¶
type PlanAssignmentRequest_Status_Conclusion int32
const ( PlanAssignmentRequest_Status_UNDEFINED PlanAssignmentRequest_Status_Conclusion = 0 PlanAssignmentRequest_Status_PENDING PlanAssignmentRequest_Status_Conclusion = 1 PlanAssignmentRequest_Status_APPROVED PlanAssignmentRequest_Status_Conclusion = 2 PlanAssignmentRequest_Status_REJECTED PlanAssignmentRequest_Status_Conclusion = 3 )
func (PlanAssignmentRequest_Status_Conclusion) Descriptor ¶
func (PlanAssignmentRequest_Status_Conclusion) Descriptor() preflect.EnumDescriptor
func (PlanAssignmentRequest_Status_Conclusion) EnumDescriptor ¶
func (PlanAssignmentRequest_Status_Conclusion) EnumDescriptor() ([]byte, []int)
Deprecated, Use PlanAssignmentRequest_Status_Conclusion.ProtoReflect.Descriptor instead.
func (PlanAssignmentRequest_Status_Conclusion) Number ¶
func (x PlanAssignmentRequest_Status_Conclusion) Number() preflect.EnumNumber
func (PlanAssignmentRequest_Status_Conclusion) String ¶
func (x PlanAssignmentRequest_Status_Conclusion) String() string
func (PlanAssignmentRequest_Status_Conclusion) Type ¶
func (PlanAssignmentRequest_Status_Conclusion) Type() preflect.EnumType
type PlanAssignmentRequest_Status_FieldMask ¶
type PlanAssignmentRequest_Status_FieldMask struct {
Paths []PlanAssignmentRequestStatus_FieldPath
}
func FullPlanAssignmentRequest_Status_FieldMask ¶
func FullPlanAssignmentRequest_Status_FieldMask() *PlanAssignmentRequest_Status_FieldMask
func (*PlanAssignmentRequest_Status_FieldMask) AppendPath ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) AppendPath(path PlanAssignmentRequestStatus_FieldPath)
func (*PlanAssignmentRequest_Status_FieldMask) AppendRawPath ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) AppendRawPath(path gotenobject.FieldPath)
func (*PlanAssignmentRequest_Status_FieldMask) DecodeFirestore ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) DecodeFirestore(fpbv *firestorepb.Value) error
func (*PlanAssignmentRequest_Status_FieldMask) EncodeFirestore ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) EncodeFirestore() (*firestorepb.Value, error)
firestore encoding/decoding integration
func (*PlanAssignmentRequest_Status_FieldMask) FilterInputFields ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) FilterInputFields() *PlanAssignmentRequest_Status_FieldMask
FilterInputFields generates copy of field paths with output_only field paths removed
func (*PlanAssignmentRequest_Status_FieldMask) FromProtoFieldMask ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) FromProtoFieldMask(protoFieldMask *googlefieldmaskpb.FieldMask) error
func (*PlanAssignmentRequest_Status_FieldMask) GetPaths ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) GetPaths() []PlanAssignmentRequestStatus_FieldPath
func (*PlanAssignmentRequest_Status_FieldMask) GetRawPaths ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) GetRawPaths() []gotenobject.FieldPath
func (*PlanAssignmentRequest_Status_FieldMask) IsFull ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) IsFull() bool
func (PlanAssignmentRequest_Status_FieldMask) Marshal ¶
func (fieldMask PlanAssignmentRequest_Status_FieldMask) Marshal() ([]byte, error)
implement methods required by customType
func (PlanAssignmentRequest_Status_FieldMask) MarshalJSON ¶
func (fieldMask PlanAssignmentRequest_Status_FieldMask) MarshalJSON() ([]byte, error)
func (*PlanAssignmentRequest_Status_FieldMask) PathsCount ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) PathsCount() int
func (*PlanAssignmentRequest_Status_FieldMask) Project ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Project(source *PlanAssignmentRequest_Status) *PlanAssignmentRequest_Status
func (*PlanAssignmentRequest_Status_FieldMask) ProjectRaw ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProjectRaw(source gotenobject.GotenObjectExt) gotenobject.GotenObjectExt
func (*PlanAssignmentRequest_Status_FieldMask) ProtoMessage ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProtoMessage()
func (*PlanAssignmentRequest_Status_FieldMask) ProtoReflect ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ProtoReflect() preflect.Message
func (*PlanAssignmentRequest_Status_FieldMask) Reset ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Reset()
func (*PlanAssignmentRequest_Status_FieldMask) Set ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Set(target, source *PlanAssignmentRequest_Status)
func (*PlanAssignmentRequest_Status_FieldMask) SetFromCliFlag ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SetFromCliFlag(raw string) error
func (*PlanAssignmentRequest_Status_FieldMask) SetRaw ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SetRaw(target, source gotenobject.GotenObjectExt)
func (*PlanAssignmentRequest_Status_FieldMask) Size ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Size() int
func (*PlanAssignmentRequest_Status_FieldMask) String ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) String() string
func (*PlanAssignmentRequest_Status_FieldMask) Subtract ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Subtract(other *PlanAssignmentRequest_Status_FieldMask) *PlanAssignmentRequest_Status_FieldMask
func (*PlanAssignmentRequest_Status_FieldMask) SubtractRaw ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) SubtractRaw(other gotenobject.FieldMask) gotenobject.FieldMask
func (*PlanAssignmentRequest_Status_FieldMask) ToProtoFieldMask ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) ToProtoFieldMask() *googlefieldmaskpb.FieldMask
ToFieldMask is used for proto conversions
func (*PlanAssignmentRequest_Status_FieldMask) Unmarshal ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) Unmarshal(data []byte) error
func (*PlanAssignmentRequest_Status_FieldMask) UnmarshalJSON ¶
func (fieldMask *PlanAssignmentRequest_Status_FieldMask) UnmarshalJSON(data []byte) error
type QueryResultChange ¶
type QueryResultChange struct { Changes []*PlanAssignmentRequestChange 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 { PlanAssignmentRequests []*PlanAssignmentRequest 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 MakeReference ¶
func MakeReference(name *Name, planAssignmentRequest *PlanAssignmentRequest) (*Reference, error)
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) GetPlanAssignmentRequest ¶
func (ref *Reference) GetPlanAssignmentRequest() *PlanAssignmentRequest
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) Resolve ¶
func (ref *Reference) Resolve(resolved *PlanAssignmentRequest)
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 ¶
func (q *WatchQuery) String() string
Source Files ¶
- plan_assignment_request.pb.access.go
- plan_assignment_request.pb.collections.go
- plan_assignment_request.pb.descriptor.go
- plan_assignment_request.pb.fieldmask.go
- plan_assignment_request.pb.fieldpath.go
- plan_assignment_request.pb.fieldpathbuilder.go
- plan_assignment_request.pb.filter.go
- plan_assignment_request.pb.filterbuilder.go
- plan_assignment_request.pb.go
- plan_assignment_request.pb.name.go
- plan_assignment_request.pb.namebuilder.go
- plan_assignment_request.pb.object_ext.go
- plan_assignment_request.pb.pagination.go
- plan_assignment_request.pb.parentname.go
- plan_assignment_request.pb.query.go
- plan_assignment_request.pb.validate.go
- plan_assignment_request.pb.view.go
- plan_assignment_request_change.pb.change.go
- plan_assignment_request_change.pb.go
- plan_assignment_request_change.pb.validate.go