plan_assignment_request

package
v1.0.38 Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Project      = "projects/{project}/planAssignmentRequests/{plan_assignment_request}"
	NamePattern_Organization = "organizations/{organization}/planAssignmentRequests/{plan_assignment_request}"
)

Variables

View Source
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

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 *Filter) ConvertToNative(typeDesc reflect.Type) (interface{}, error)

func (*Filter) ConvertToType

func (filter *Filter) ConvertToType(typeVal ref.Type) ref.Val

func (*Filter) DecodeFirestore

func (filter *Filter) DecodeFirestore(fpbv *firestorepb.Value) error

func (*Filter) EncodeFirestore

func (filter *Filter) EncodeFirestore() (*firestorepb.Value, error)

firestore encoding/decoding integration

func (*Filter) Equal

func (filter *Filter) Equal(other ref.Val) ref.Val

func (*Filter) Evaluate

func (filter *Filter) Evaluate(res *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) HasTrait

func (filter *Filter) HasTrait(trait int) bool

func (*Filter) Match

func (filter *Filter) Match(pattern ref.Val) ref.Val

func (*Filter) ParseProtoString

func (filter *Filter) ParseProtoString(data string) error

func (*Filter) ProtoString

func (filter *Filter) ProtoString() (string, error)

func (*Filter) Receive

func (filter *Filter) Receive(function string, overload string, args []ref.Val) ref.Val

func (*Filter) SetFromCliFlag

func (filter *Filter) SetFromCliFlag(raw string) error

func (*Filter) String

func (filter *Filter) String() string

func (*Filter) Type

func (filter *Filter) Type() ref.Type

func (*Filter) TypeName

func (filter *Filter) TypeName() string

func (*Filter) Value

func (filter *Filter) Value() interface{}

type FilterBuilder

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

func NewAndFilterBuilder

func NewAndFilterBuilder() *FilterBuilder

func NewFilterBuilder

func NewFilterBuilder() *FilterBuilder

func NewOrFilterBuilder

func NewOrFilterBuilder() *FilterBuilder

func (*FilterBuilder) Filter

func (b *FilterBuilder) Filter() *Filter

func (*FilterBuilder) Where

func (b *FilterBuilder) Where(opts ...gotenfilter.FilterConditionOption) *filterCndBuilder

func (*FilterBuilder) WherePath

func (b *FilterBuilder) WherePath(fp PlanAssignmentRequest_FieldPath, opts ...gotenfilter.FilterConditionOption) *filterCndBuilderAnyPath

func (*FilterBuilder) With

type FilterBuilderOrCondition

type FilterBuilderOrCondition interface {
	// contains filtered or unexported methods
}

type FilterCondition

type FilterCondition interface {
	gotenresource.FilterCondition

	And(...FilterCondition) FilterCondition
	Evaluate(res *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 (*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 (*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 (*FilterConditionComposite) ConditionComposite

func (cond *FilterConditionComposite) ConditionComposite()

func (*FilterConditionComposite) Evaluate

func (*FilterConditionComposite) EvaluateRaw

func (cond *FilterConditionComposite) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionComposite) GetOperator

func (*FilterConditionComposite) GetSubConditions

func (cond *FilterConditionComposite) GetSubConditions() []gotenresource.FilterCondition

func (*FilterConditionComposite) Satisfies

func (cond *FilterConditionComposite) Satisfies(other FilterCondition) bool

func (*FilterConditionComposite) SatisfiesRaw

func (cond *FilterConditionComposite) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionComposite) SpecifiesFieldPath

func (cond *FilterConditionComposite) SpecifiesFieldPath(fp PlanAssignmentRequest_FieldPath) bool

func (*FilterConditionComposite) SpecifiesRawFieldPath

func (cond *FilterConditionComposite) SpecifiesRawFieldPath(fp gotenobject.FieldPath) bool

func (*FilterConditionComposite) String

func (cond *FilterConditionComposite) String() string

type FilterConditionContains

func (*FilterConditionContains) And

func (*FilterConditionContains) ConditionContains

func (cond *FilterConditionContains) ConditionContains()

func (*FilterConditionContains) ConditionContainsType

func (cond *FilterConditionContains) ConditionContainsType() gotenresource.ConditionContainsType

func (*FilterConditionContains) Evaluate

func (cond *FilterConditionContains) Evaluate(res *PlanAssignmentRequest) bool

func (*FilterConditionContains) EvaluateRaw

func (cond *FilterConditionContains) EvaluateRaw(res gotenresource.Resource) bool

func (*FilterConditionContains) GetFieldPath

func (*FilterConditionContains) GetRawFieldPath

func (cond *FilterConditionContains) GetRawFieldPath() gotenobject.FieldPath

func (*FilterConditionContains) GetRawFieldPathItemValue

func (cond *FilterConditionContains) GetRawFieldPathItemValue() gotenobject.FieldPathArrayItemValue

func (*FilterConditionContains) GetRawFieldPathItemValues

func (cond *FilterConditionContains) GetRawFieldPathItemValues() (res []gotenobject.FieldPathArrayItemValue)

func (*FilterConditionContains) Satisfies

func (cond *FilterConditionContains) Satisfies(other FilterCondition) bool

func (*FilterConditionContains) SatisfiesRaw

func (cond *FilterConditionContains) SatisfiesRaw(other gotenresource.FilterCondition) bool

func (*FilterConditionContains) SpecifiesFieldPath

func (cond *FilterConditionContains) SpecifiesFieldPath(fp 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 (*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 (*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 (*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 (*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 (*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)

func (*GetQuery) String

func (q *GetQuery) String() string

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 (q *ListQuery) GetWithPagingInfo() bool

func (*ListQuery) GotenQuery

func (q *ListQuery) GotenQuery()

func (*ListQuery) SetFieldMask

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

func (*ListQuery) SetFilter

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

func (*ListQuery) SetPager

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

func (*ListQuery) SetWithPagingInfo added in v0.10.1

func (q *ListQuery) SetWithPagingInfo(with bool)

func (*ListQuery) String

func (q *ListQuery) String() string

type Name

type Name struct {
	ParentName
	PlanAssignmentRequestId string `firestore:"planAssignmentRequestId"`
}

func MustParseName

func MustParseName(name string) *Name

func ParseName

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

func ParseNameOrId

func ParseNameOrId(nameOrId string) (*Name, error)

func (*Name) AsRawReference

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

func (*Name) AsReference

func (name *Name) AsReference() *Reference

func (*Name) ConvertToNative

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

func (*Name) ConvertToType

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

func (*Name) Equal

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

func (*Name) FullyQualifiedName

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

func (*Name) GetIParentName 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 *Name) GetIdParts() map[string]string

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

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

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

func (*Name) HasTrait

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

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Match

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

func (*Name) Matches

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

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

func (*Name) ParseProtoString

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

func (*Name) ProtoString

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

func (*Name) Receive

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

func (*Name) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Name) SetFromSegments

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

func (*Name) String

func (name *Name) String() string

func (*Name) Type

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

func (*Name) TypeName

func (name *Name) TypeName() string

func (*Name) Value

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

type NameBuilder

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

func NewNameBuilder

func NewNameBuilder() *NameBuilder

func (*NameBuilder) Name

func (b *NameBuilder) Name() *Name

func (*NameBuilder) Parent

func (b *NameBuilder) Parent() *ParentName

func (*NameBuilder) ParentReference

func (b *NameBuilder) ParentReference() *ParentReference

func (*NameBuilder) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

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

func (*NameBuilder) 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) InsertSortedRaw

func (orderBy *OrderBy) InsertSortedRaw(sorted gotenresource.ResourceList, elem gotenresource.Resource) (gotenresource.ResourceList, int)

func (*OrderBy) ParseProtoString

func (orderBy *OrderBy) ParseProtoString(data string) error

func (*OrderBy) ProtoString

func (orderBy *OrderBy) ProtoString() (string, error)

func (*OrderBy) SetFromCliFlag

func (orderBy *OrderBy) SetFromCliFlag(raw string) error

func (*OrderBy) Sort

func (orderBy *OrderBy) Sort(results PlanAssignmentRequestList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

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

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

func (*ParentName) FullyQualifiedName

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

func (*ParentName) GetIParentName 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) Match added in v1.0.21

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

func (*ParentName) Matches

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

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

func (*ParentName) ParseProtoString

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

func (*ParentName) ProtoString

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

func (*ParentName) Receive added in v1.0.21

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

func (*ParentName) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*ParentName) SetFromSegments

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

func (*ParentName) String

func (name *ParentName) String() string

func (*ParentName) Type added in v1.0.21

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

func (*ParentName) TypeName added in v1.0.21

func (name *ParentName) TypeName() string

func (*ParentName) Value added in v1.0.21

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

type ParentReference

type ParentReference struct {
	ParentName
	// contains filtered or unexported fields
}

func MakeParentReference

func MakeParentReference(name *ParentName) (*ParentReference, error)

func MustParseParentReference

func MustParseParentReference(name string) *ParentReference

func ParseParentReference

func ParseParentReference(name string) (*ParentReference, error)

func (*ParentReference) ClearCached

func (ref *ParentReference) ClearCached()

func (*ParentReference) GetIParentName 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 (*PlanAssignmentRequest) CloneRaw

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 (*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 (*PlanAssignmentRequest) GetResourceDescriptor

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

func (*PlanAssignmentRequest) GetService

func (m *PlanAssignmentRequest) GetService() *meta_service.Reference

func (*PlanAssignmentRequest) GetStatus

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 (*PlanAssignmentRequest) MakeFullFieldMask

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 (*PlanAssignmentRequest) SetService

func (m *PlanAssignmentRequest) SetService(fv *meta_service.Reference)

func (*PlanAssignmentRequest) SetStatus

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 (*PlanAssignmentRequestChange) GetChangeType

func (m *PlanAssignmentRequestChange) GetChangeType() isPlanAssignmentRequestChange_ChangeType

func (*PlanAssignmentRequestChange) GetCurrent

func (*PlanAssignmentRequestChange) GetCurrentViewIndex

func (c *PlanAssignmentRequestChange) GetCurrentViewIndex() int32

func (*PlanAssignmentRequestChange) GetModified

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 (*PlanAssignmentRequestChange) GetRawResource

func (*PlanAssignmentRequestChange) GetRemoved

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 (*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 (*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 (*PlanAssignmentRequestChange) SetModifiedRaw

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

func (*PlanAssignmentRequestChange) SetRemoved

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 (PlanAssignmentRequestChangeList) AppendList

func (PlanAssignmentRequestChangeList) At

func (PlanAssignmentRequestChangeList) Length

func (PlanAssignmentRequestChangeList) Set

func (PlanAssignmentRequestChangeList) Slice

type PlanAssignmentRequestChangeMap

type PlanAssignmentRequestChangeMap map[Name]*PlanAssignmentRequestChange

func (PlanAssignmentRequestChangeMap) Delete

func (PlanAssignmentRequestChangeMap) ForEach

func (PlanAssignmentRequestChangeMap) Get

func (PlanAssignmentRequestChangeMap) Length

func (PlanAssignmentRequestChangeMap) Set

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 (*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 (*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 (*PlanAssignmentRequestChange_Current) MarshalJSON

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

func (*PlanAssignmentRequestChange_Current) ProtoMessage

func (*PlanAssignmentRequestChange_Current) ProtoMessage()

func (*PlanAssignmentRequestChange_Current) ProtoReflect

func (*PlanAssignmentRequestChange_Current) Reset

func (*PlanAssignmentRequestChange_Current) SetPlanAssignmentRequest

func (m *PlanAssignmentRequestChange_Current) SetPlanAssignmentRequest(fv *PlanAssignmentRequest)

func (*PlanAssignmentRequestChange_Current) String

func (*PlanAssignmentRequestChange_Current) Unmarshal

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 (*PlanAssignmentRequestChange_Modified) GetName

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 (*PlanAssignmentRequestChange_Modified) MarshalJSON

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

func (*PlanAssignmentRequestChange_Modified) ProtoMessage

func (*PlanAssignmentRequestChange_Modified) ProtoMessage()

func (*PlanAssignmentRequestChange_Modified) ProtoReflect

func (*PlanAssignmentRequestChange_Modified) Reset

func (*PlanAssignmentRequestChange_Modified) SetFieldMask

func (*PlanAssignmentRequestChange_Modified) SetName

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 (*PlanAssignmentRequestChange_Modified) Unmarshal

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 (*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 (*PlanAssignmentRequestChange_Removed) MarshalJSON

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

func (*PlanAssignmentRequestChange_Removed) ProtoMessage

func (*PlanAssignmentRequestChange_Removed) ProtoMessage()

func (*PlanAssignmentRequestChange_Removed) ProtoReflect

func (*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 (*PlanAssignmentRequestChange_Removed) Unmarshal

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

func (PlanAssignmentRequestFieldPathBuilder) Approver

func (PlanAssignmentRequestFieldPathBuilder) Metadata

func (PlanAssignmentRequestFieldPathBuilder) Name

func (PlanAssignmentRequestFieldPathBuilder) Request

func (PlanAssignmentRequestFieldPathBuilder) Service

func (PlanAssignmentRequestFieldPathBuilder) Status

type PlanAssignmentRequestList

type PlanAssignmentRequestList []*PlanAssignmentRequest

func (PlanAssignmentRequestList) Append

func (PlanAssignmentRequestList) AppendList

func (PlanAssignmentRequestList) At

func (PlanAssignmentRequestList) Length

func (l PlanAssignmentRequestList) Length() int

func (PlanAssignmentRequestList) Set

func (PlanAssignmentRequestList) Slice

type PlanAssignmentRequestMap

type PlanAssignmentRequestMap map[Name]*PlanAssignmentRequest

func (PlanAssignmentRequestMap) Delete

func (PlanAssignmentRequestMap) ForEach

func (PlanAssignmentRequestMap) Get

func (PlanAssignmentRequestMap) Length

func (m PlanAssignmentRequestMap) Length() int

func (PlanAssignmentRequestMap) Set

type PlanAssignmentRequestMapPathSelectorMetadataAnnotations

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

func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) FieldPath

func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorMetadataAnnotations) WithValue

type PlanAssignmentRequestMapPathSelectorMetadataLabels

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

func (PlanAssignmentRequestMapPathSelectorMetadataLabels) FieldPath

func (PlanAssignmentRequestMapPathSelectorMetadataLabels) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorMetadataLabels) WithValue

type PlanAssignmentRequestMapPathSelectorMetadataShards

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

func (PlanAssignmentRequestMapPathSelectorMetadataShards) FieldPath

func (PlanAssignmentRequestMapPathSelectorMetadataShards) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorMetadataShards) WithValue

type PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion

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

func (PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion

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

func (PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion

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

func (PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestMapPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestNameList

type PlanAssignmentRequestNameList []*Name

func (PlanAssignmentRequestNameList) Append

func (PlanAssignmentRequestNameList) AppendList

func (PlanAssignmentRequestNameList) At

func (PlanAssignmentRequestNameList) Length

func (PlanAssignmentRequestNameList) Set

func (PlanAssignmentRequestNameList) Slice

type PlanAssignmentRequestParentNameList

type PlanAssignmentRequestParentNameList []*ParentName

func (PlanAssignmentRequestParentNameList) Append

func (PlanAssignmentRequestParentNameList) AppendList

func (PlanAssignmentRequestParentNameList) At

func (PlanAssignmentRequestParentNameList) Length

func (PlanAssignmentRequestParentNameList) Set

func (PlanAssignmentRequestParentNameList) Slice

type PlanAssignmentRequestParentReferenceList

type PlanAssignmentRequestParentReferenceList []*ParentReference

func (PlanAssignmentRequestParentReferenceList) Append

func (PlanAssignmentRequestParentReferenceList) AppendList

func (PlanAssignmentRequestParentReferenceList) At

func (PlanAssignmentRequestParentReferenceList) Length

func (PlanAssignmentRequestParentReferenceList) Set

func (PlanAssignmentRequestParentReferenceList) Slice

type PlanAssignmentRequestPathSelectorApprover

type PlanAssignmentRequestPathSelectorApprover struct{}

func (PlanAssignmentRequestPathSelectorApprover) FieldPath

func (PlanAssignmentRequestPathSelectorApprover) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorApprover) WithValue

type PlanAssignmentRequestPathSelectorMetadata

type PlanAssignmentRequestPathSelectorMetadata struct{}

func (PlanAssignmentRequestPathSelectorMetadata) Annotations

func (PlanAssignmentRequestPathSelectorMetadata) CreateTime

func (PlanAssignmentRequestPathSelectorMetadata) DeleteTime added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadata) FieldPath

func (PlanAssignmentRequestPathSelectorMetadata) Generation

func (PlanAssignmentRequestPathSelectorMetadata) Labels

func (PlanAssignmentRequestPathSelectorMetadata) Lifecycle added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadata) OwnerReferences

func (PlanAssignmentRequestPathSelectorMetadata) ResourceVersion

func (PlanAssignmentRequestPathSelectorMetadata) Services added in v1.0.21

func (PlanAssignmentRequestPathSelectorMetadata) Shards

func (PlanAssignmentRequestPathSelectorMetadata) Syncing

func (PlanAssignmentRequestPathSelectorMetadata) Tags

func (PlanAssignmentRequestPathSelectorMetadata) UpdateTime

func (PlanAssignmentRequestPathSelectorMetadata) Uuid

func (PlanAssignmentRequestPathSelectorMetadata) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadata) WithSubArrayItemValue

func (PlanAssignmentRequestPathSelectorMetadata) WithSubArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadata) WithSubPath

func (PlanAssignmentRequestPathSelectorMetadata) WithSubValue

func (PlanAssignmentRequestPathSelectorMetadata) WithValue

type PlanAssignmentRequestPathSelectorMetadataAnnotations

type PlanAssignmentRequestPathSelectorMetadataAnnotations struct{}

func (PlanAssignmentRequestPathSelectorMetadataAnnotations) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithKey

func (PlanAssignmentRequestPathSelectorMetadataAnnotations) WithValue

type PlanAssignmentRequestPathSelectorMetadataCreateTime

type PlanAssignmentRequestPathSelectorMetadataCreateTime struct{}

func (PlanAssignmentRequestPathSelectorMetadataCreateTime) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataCreateTime) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataCreateTime) WithValue

type PlanAssignmentRequestPathSelectorMetadataDeleteTime added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataDeleteTime struct{}

func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) FieldPath added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataDeleteTime) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataGeneration

type PlanAssignmentRequestPathSelectorMetadataGeneration struct{}

func (PlanAssignmentRequestPathSelectorMetadataGeneration) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataGeneration) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataGeneration) WithValue

type PlanAssignmentRequestPathSelectorMetadataLabels

type PlanAssignmentRequestPathSelectorMetadataLabels struct{}

func (PlanAssignmentRequestPathSelectorMetadataLabels) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataLabels) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataLabels) WithKey

func (PlanAssignmentRequestPathSelectorMetadataLabels) WithValue

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) State added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycle) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycle) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion struct{}

func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) FieldPath added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycleBlockDeletion) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataLifecycleState added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataLifecycleState struct{}

func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) FieldPath added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataLifecycleState) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataOwnerReferences

type PlanAssignmentRequestPathSelectorMetadataOwnerReferences struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Kind

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Name

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Region added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) RequiresOwnerReference added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) Version added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithItemValue

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferences) WithValue

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesController) WithValue

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesKind) WithValue

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesName) WithValue

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) FieldPath added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRegion) WithValue added in v0.8.0

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 (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion struct{}

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) FieldPath added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues added in v0.8.0

func (PlanAssignmentRequestPathSelectorMetadataOwnerReferencesVersion) WithValue added in v0.8.0

type PlanAssignmentRequestPathSelectorMetadataResourceVersion

type PlanAssignmentRequestPathSelectorMetadataResourceVersion struct{}

func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataResourceVersion) WithValue

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

func (PlanAssignmentRequestPathSelectorMetadataServices) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequestPathSelectorMetadataServices) WithValue added in v1.0.21

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 (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithItemValue added in v1.0.21

func (PlanAssignmentRequestPathSelectorMetadataServicesAllowedServices) WithValue added in v1.0.21

type PlanAssignmentRequestPathSelectorMetadataServicesOwningService added in v1.0.21

type PlanAssignmentRequestPathSelectorMetadataServicesOwningService struct{}

func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) FieldPath added in v1.0.21

func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequestPathSelectorMetadataServicesOwningService) WithValue added in v1.0.21

type PlanAssignmentRequestPathSelectorMetadataShards

type PlanAssignmentRequestPathSelectorMetadataShards struct{}

func (PlanAssignmentRequestPathSelectorMetadataShards) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataShards) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataShards) WithKey

func (PlanAssignmentRequestPathSelectorMetadataShards) WithValue

type PlanAssignmentRequestPathSelectorMetadataSyncing

type PlanAssignmentRequestPathSelectorMetadataSyncing struct{}

func (PlanAssignmentRequestPathSelectorMetadataSyncing) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataSyncing) OwningRegion

func (PlanAssignmentRequestPathSelectorMetadataSyncing) Regions

func (PlanAssignmentRequestPathSelectorMetadataSyncing) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataSyncing) WithValue

type PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion

type PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion struct{}

func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataSyncingOwningRegion) WithValue

type PlanAssignmentRequestPathSelectorMetadataSyncingRegions

type PlanAssignmentRequestPathSelectorMetadataSyncingRegions struct{}

func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithItemValue

func (PlanAssignmentRequestPathSelectorMetadataSyncingRegions) WithValue

type PlanAssignmentRequestPathSelectorMetadataTags

type PlanAssignmentRequestPathSelectorMetadataTags struct{}

func (PlanAssignmentRequestPathSelectorMetadataTags) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataTags) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataTags) WithItemValue

func (PlanAssignmentRequestPathSelectorMetadataTags) WithValue

type PlanAssignmentRequestPathSelectorMetadataUpdateTime

type PlanAssignmentRequestPathSelectorMetadataUpdateTime struct{}

func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataUpdateTime) WithValue

type PlanAssignmentRequestPathSelectorMetadataUuid

type PlanAssignmentRequestPathSelectorMetadataUuid struct{}

func (PlanAssignmentRequestPathSelectorMetadataUuid) FieldPath

func (PlanAssignmentRequestPathSelectorMetadataUuid) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorMetadataUuid) WithValue

type PlanAssignmentRequestPathSelectorName

type PlanAssignmentRequestPathSelectorName struct{}

func (PlanAssignmentRequestPathSelectorName) FieldPath

func (PlanAssignmentRequestPathSelectorName) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorName) WithValue

type PlanAssignmentRequestPathSelectorRequest

type PlanAssignmentRequestPathSelectorRequest struct{}

func (PlanAssignmentRequestPathSelectorRequest) Assign

func (PlanAssignmentRequestPathSelectorRequest) Extend

func (PlanAssignmentRequestPathSelectorRequest) FieldPath

func (PlanAssignmentRequestPathSelectorRequest) Redistribute

func (PlanAssignmentRequestPathSelectorRequest) Unassign

type PlanAssignmentRequestPathSelectorRequestAssign

type PlanAssignmentRequestPathSelectorRequestAssign struct{}

func (PlanAssignmentRequestPathSelectorRequestAssign) Extensions

func (PlanAssignmentRequestPathSelectorRequestAssign) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssign) Plan

type PlanAssignmentRequestPathSelectorRequestAssignExtensions

type PlanAssignmentRequestPathSelectorRequestAssignExtensions struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) Resource

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) Value

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithItemValue

func (PlanAssignmentRequestPathSelectorRequestAssignExtensions) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource

type PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsResource) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue

type PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignExtensionsValue) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignPlan

type PlanAssignmentRequestPathSelectorRequestAssignPlan struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignPlan) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignPlan) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignPlan) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithItemValue

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributions) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource

type PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource struct{}

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) FieldPath

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestAssignRegionalDistributionsResource) WithValue

type PlanAssignmentRequestPathSelectorRequestExtend

type PlanAssignmentRequestPathSelectorRequestExtend struct{}

func (PlanAssignmentRequestPathSelectorRequestExtend) Additions

func (PlanAssignmentRequestPathSelectorRequestExtend) Assignment

func (PlanAssignmentRequestPathSelectorRequestExtend) FieldPath

type PlanAssignmentRequestPathSelectorRequestExtendAdditions

type PlanAssignmentRequestPathSelectorRequestExtendAdditions struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) Resource

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) Value

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithItemValue

func (PlanAssignmentRequestPathSelectorRequestExtendAdditions) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource

type PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsResource) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue

type PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendAdditionsValue) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendAssignment

type PlanAssignmentRequestPathSelectorRequestExtendAssignment struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendAssignment) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithItemValue

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributions) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource

type PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource struct{}

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) FieldPath

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestExtendRegionalDistributionsResource) WithValue

type PlanAssignmentRequestPathSelectorRequestRedistribute

type PlanAssignmentRequestPathSelectorRequestRedistribute struct{}

func (PlanAssignmentRequestPathSelectorRequestRedistribute) Assignment

func (PlanAssignmentRequestPathSelectorRequestRedistribute) FieldPath

type PlanAssignmentRequestPathSelectorRequestRedistributeAssignment

type PlanAssignmentRequestPathSelectorRequestRedistributeAssignment struct{}

func (PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) FieldPath

func (PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestRedistributeAssignment) WithValue

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions struct{}

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) FieldPath

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithItemValue

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributions) WithValue

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion struct{}

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) FieldPath

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsLimitsByRegion) WithValue

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource

type PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource struct{}

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) FieldPath

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestRedistributeRegionalDistributionsResource) WithValue

type PlanAssignmentRequestPathSelectorRequestUnassign

type PlanAssignmentRequestPathSelectorRequestUnassign struct{}

func (PlanAssignmentRequestPathSelectorRequestUnassign) Assignment

func (PlanAssignmentRequestPathSelectorRequestUnassign) FieldPath

type PlanAssignmentRequestPathSelectorRequestUnassignAssignment

type PlanAssignmentRequestPathSelectorRequestUnassignAssignment struct{}

func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) FieldPath

func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorRequestUnassignAssignment) WithValue

type PlanAssignmentRequestPathSelectorService

type PlanAssignmentRequestPathSelectorService struct{}

func (PlanAssignmentRequestPathSelectorService) FieldPath

func (PlanAssignmentRequestPathSelectorService) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorService) WithValue

type PlanAssignmentRequestPathSelectorStatus

type PlanAssignmentRequestPathSelectorStatus struct{}

func (PlanAssignmentRequestPathSelectorStatus) Conclusion

func (PlanAssignmentRequestPathSelectorStatus) FieldPath

func (PlanAssignmentRequestPathSelectorStatus) Reason

func (PlanAssignmentRequestPathSelectorStatus) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorStatus) WithSubArrayItemValue

func (PlanAssignmentRequestPathSelectorStatus) WithSubArrayOfValues

func (PlanAssignmentRequestPathSelectorStatus) WithSubPath

func (PlanAssignmentRequestPathSelectorStatus) WithSubValue

type PlanAssignmentRequestPathSelectorStatusConclusion

type PlanAssignmentRequestPathSelectorStatusConclusion struct{}

func (PlanAssignmentRequestPathSelectorStatusConclusion) FieldPath

type PlanAssignmentRequestPathSelectorStatusReason

type PlanAssignmentRequestPathSelectorStatusReason struct{}

func (PlanAssignmentRequestPathSelectorStatusReason) FieldPath

func (PlanAssignmentRequestPathSelectorStatusReason) WithArrayOfValues

func (PlanAssignmentRequestPathSelectorStatusReason) WithValue

type PlanAssignmentRequestReferenceList

type PlanAssignmentRequestReferenceList []*Reference

func (PlanAssignmentRequestReferenceList) Append

func (PlanAssignmentRequestReferenceList) AppendList

func (PlanAssignmentRequestReferenceList) At

func (PlanAssignmentRequestReferenceList) Length

func (PlanAssignmentRequestReferenceList) Set

func (PlanAssignmentRequestReferenceList) Slice

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

func (PlanAssignmentRequestRequestTypeAssignFieldPathBuilder) RegionalDistributions added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) AsRegionalDistributionsSubPath added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Get added in v1.0.21

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

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPath) WithIValue added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayItemValue) ContainsValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) AsRegionalDistributionsPathValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWith added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) CompareWithRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldSubPathValue) SetToRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Get added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) GetSingle added in v1.0.21

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithIValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPath) WithRawIValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) ContainsValue added in v1.0.21

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

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

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingle added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayItemValue) GetSingleRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathArrayOfValues) AsPlanArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsPlanValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) AsRegionalDistributionsValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) CompareWith added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) GetRawValue added in v1.0.21

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

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetTo added in v1.0.21

SetTo stores value for selected field for object Assign

func (*PlanAssignmentRequestRequestTypeAssign_FieldTerminalPathValue) SetToRaw added in v1.0.21

type PlanAssignmentRequestRequestTypeExtendFieldPathBuilder added in v1.0.21

type PlanAssignmentRequestRequestTypeExtendFieldPathBuilder struct{}

func NewPlanAssignmentRequestRequestTypeExtendFieldPathBuilder added in v1.0.21

func NewPlanAssignmentRequestRequestTypeExtendFieldPathBuilder() PlanAssignmentRequestRequestTypeExtendFieldPathBuilder

func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) Additions added in v1.0.21

func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) Assignment added in v1.0.21

func (PlanAssignmentRequestRequestTypeExtendFieldPathBuilder) RegionalDistributions added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) AsRegionalDistributionsSubPath added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Get added in v1.0.21

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

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPath) WithIValue added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) AsRegionalDistributionsPathItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayItemValue) ContainsValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathArrayOfValues) AsRegionalDistributionsPathArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) AsRegionalDistributionsPathValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWith added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) CompareWithRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldSubPathValue) SetToRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Get added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) GetSingle added in v1.0.21

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithIValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPath) WithRawIValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) AsRegionalDistributionsItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) ContainsValue added in v1.0.21

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

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

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingle added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayItemValue) GetSingleRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathArrayOfValues) AsAssignmentArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsAssignmentValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) AsRegionalDistributionsValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) CompareWith added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) GetRawValue added in v1.0.21

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

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetTo added in v1.0.21

SetTo stores value for selected field for object Extend

func (*PlanAssignmentRequestRequestTypeExtend_FieldTerminalPathValue) SetToRaw added in v1.0.21

type PlanAssignmentRequestRequestTypeFieldPathBuilder added in v1.0.21

type PlanAssignmentRequestRequestTypeFieldPathBuilder struct{}

func NewPlanAssignmentRequestRequestTypeFieldPathBuilder added in v1.0.21

func NewPlanAssignmentRequestRequestTypeFieldPathBuilder() PlanAssignmentRequestRequestTypeFieldPathBuilder

func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Assign added in v1.0.21

func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Extend added in v1.0.21

func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Redistribute added in v1.0.21

func (PlanAssignmentRequestRequestTypeFieldPathBuilder) Unassign 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

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Get added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) GetSingle added in v1.0.21

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithIValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPath) WithRawIValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayItemValue) ContainsValue added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathArrayOfValues) GetRawValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWith added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) CompareWithRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) GetRawValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetTo added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldSubPathValue) SetToRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Get added in v1.0.21

Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Redistribute

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetDefault added in v1.0.21

GetDefault returns a default value of the field type

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) GetSingle added in v1.0.21

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithIValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPath) WithRawIValue added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) ContainsValue added in v1.0.21

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

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

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingle added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayItemValue) GetSingleRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathArrayOfValues) AsRegionalDistributionsArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) AsRegionalDistributionsValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) CompareWith added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) GetRawValue added in v1.0.21

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

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetTo added in v1.0.21

SetTo stores value for selected field for object Redistribute

func (*PlanAssignmentRequestRequestTypeRedistribute_FieldTerminalPathValue) SetToRaw added in v1.0.21

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

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 (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Get added in v1.0.21

Get returns all values pointed by specific field from source PlanAssignmentRequest_RequestType_Unassign

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetDefault added in v1.0.21

GetDefault returns a default value of the field type

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetRaw added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) GetSingle added in v1.0.21

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithIValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPath) WithRawIValue added in v1.0.21

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

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

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

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingle added in v1.0.21

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathArrayItemValue) GetSingleRaw added in v1.0.21

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 (*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 (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) CompareWith added in v1.0.21

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 (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) GetRawValue added in v1.0.21

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

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetTo added in v1.0.21

SetTo stores value for selected field for object Unassign

func (*PlanAssignmentRequestRequestTypeUnassign_FieldTerminalPathValue) SetToRaw added in v1.0.21

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

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 (*PlanAssignmentRequestRequestType_FieldSubPath) AsExtendSubPath added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) AsRedistributeSubPath added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) AsUnassignSubPath added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) ClearValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) Get added in v1.0.21

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

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestType_FieldSubPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestType_FieldSubPath) Selector added in v1.0.21

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

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPath) WithIValue added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsExtendPathItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsRedistributePathItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) AsUnassignPathItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathArrayItemValue) ContainsValue added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsExtendPathArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsRedistributePathArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathArrayOfValues) AsUnassignPathArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsExtendPathValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsRedistributePathValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathValue) AsUnassignPathValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWith added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldSubPathValue) CompareWithRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldSubPathValue) SetToRaw added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldTerminalPath) ClearValueRaw added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) Get added in v1.0.21

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

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) JSONString added in v1.0.21

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) Selector added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) SplitIntoTerminalIPaths added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) String added in v1.0.21

String returns path representation in proto convention

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayItemValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPath) WithIValue added in v1.0.21

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

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

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 (*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 (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsExtendArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsRedistributeArrayOfValues added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPathArrayOfValues) AsUnassignArrayOfValues added in v1.0.21

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 (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsExtendValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsRedistributeValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) AsUnassignValue added in v1.0.21

func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) CompareWith added in v1.0.21

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 (*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

SetTo stores value for selected field for object RequestType

func (*PlanAssignmentRequestRequestType_FieldTerminalPathValue) SetToRaw added in v1.0.21

type PlanAssignmentRequestStatusFieldPathBuilder

type PlanAssignmentRequestStatusFieldPathBuilder struct{}

func NewPlanAssignmentRequestStatusFieldPathBuilder

func NewPlanAssignmentRequestStatusFieldPathBuilder() PlanAssignmentRequestStatusFieldPathBuilder

func (PlanAssignmentRequestStatusFieldPathBuilder) Conclusion

func (PlanAssignmentRequestStatusFieldPathBuilder) Reason

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

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 (*PlanAssignmentRequestStatus_FieldTerminalPath) ClearValueRaw

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

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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequestStatus_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequestStatus_FieldTerminalPath) Selector

func (*PlanAssignmentRequestStatus_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.8.0

func (*PlanAssignmentRequestStatus_FieldTerminalPath) String

String returns path representation in proto convention

func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayItemValue

func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIArrayOfValues

func (*PlanAssignmentRequestStatus_FieldTerminalPath) WithIValue

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

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 (*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 (*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 (*PlanAssignmentRequestStatus_FieldTerminalPathValue) AsReasonValue

func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'PlanAssignmentRequestStatus_FieldTerminalPathValue' with the value under path in 'PlanAssignmentRequest_Status'.

func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) CompareWithRaw

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

SetTo stores value for selected field for object Status

func (*PlanAssignmentRequestStatus_FieldTerminalPathValue) SetToRaw

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 (*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 (*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 (*PlanAssignmentRequest_FieldMask) ProjectRaw

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 (*PlanAssignmentRequest_FieldMask) SubtractRaw

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

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 (*PlanAssignmentRequest_FieldSubPath) AsStatusSubPath

func (*PlanAssignmentRequest_FieldSubPath) ClearValue

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

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 (*PlanAssignmentRequest_FieldSubPath) SplitIntoTerminalIPaths added in v0.8.0

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

func (*PlanAssignmentRequest_FieldSubPath) 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 (*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 (*PlanAssignmentRequest_FieldSubPathArrayItemValue) AsRequestPathItemValue

func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) AsStatusPathItemValue

func (*PlanAssignmentRequest_FieldSubPathArrayItemValue) ContainsValue

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 (*PlanAssignmentRequest_FieldSubPathArrayOfValues) AsRequestPathArrayOfValues

func (*PlanAssignmentRequest_FieldSubPathArrayOfValues) AsStatusPathArrayOfValues

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 (*PlanAssignmentRequest_FieldSubPathValue) AsRequestPathValue

func (*PlanAssignmentRequest_FieldSubPathValue) AsStatusPathValue

func (*PlanAssignmentRequest_FieldSubPathValue) CompareWith

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 (*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 (*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

IsLeaf - whether field path is holds simple value

func (*PlanAssignmentRequest_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*PlanAssignmentRequest_FieldTerminalPath) Selector

func (*PlanAssignmentRequest_FieldTerminalPath) SplitIntoTerminalIPaths added in v0.8.0

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

func (*PlanAssignmentRequest_FieldTerminalPath) String

String returns path representation in proto convention

func (*PlanAssignmentRequest_FieldTerminalPath) WithIArrayItemValue

func (*PlanAssignmentRequest_FieldTerminalPath) WithIArrayOfValues

func (*PlanAssignmentRequest_FieldTerminalPath) WithIValue

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

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 (*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 (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsServiceArrayOfValues

func (*PlanAssignmentRequest_FieldTerminalPathArrayOfValues) AsStatusArrayOfValues

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 (*PlanAssignmentRequest_FieldTerminalPathValue) AsMetadataValue

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

func (*PlanAssignmentRequest_FieldTerminalPathValue) AsNameValue

func (*PlanAssignmentRequest_FieldTerminalPathValue) AsRequestValue

func (*PlanAssignmentRequest_FieldTerminalPathValue) AsServiceValue

func (*PlanAssignmentRequest_FieldTerminalPathValue) AsStatusValue

func (*PlanAssignmentRequest_FieldTerminalPathValue) CompareWith

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

SetTo stores value for selected field for object PlanAssignmentRequest

func (*PlanAssignmentRequest_FieldTerminalPathValue) SetToRaw

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 (*PlanAssignmentRequest_RequestType) CloneRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType) GetExtend added in v1.0.21

func (*PlanAssignmentRequest_RequestType) GetRedistribute added in v1.0.21

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 (*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 (*PlanAssignmentRequest_RequestType) MakeFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType) MakeRawDiffFieldMask added in v1.0.21

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 (*PlanAssignmentRequest_RequestType) MergeRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType) ProtoMessage()

func (*PlanAssignmentRequest_RequestType) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType) SetAssign added in v1.0.21

func (*PlanAssignmentRequest_RequestType) SetExtend added in v1.0.21

func (*PlanAssignmentRequest_RequestType) SetRedistribute added in v1.0.21

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 (*PlanAssignmentRequest_RequestType) String added in v1.0.21

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 (PlanAssignmentRequest_RequestTypeMapPathSelectorAssignRegionalDistributionsLimitsByRegion) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypeMapPathSelectorExtendRegionalDistributionsLimitsByRegion) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypeMapPathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssign added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssign struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) Extensions added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) Plan added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) RegionalDistributions added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssign) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) Resource added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) Value added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensions) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsResource) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorAssignExtensionsValue) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssignPlan added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorAssignPlan struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignPlan) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorAssignRegionalDistributionsResource) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtend added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtend struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) Additions added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) Assignment added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) RegionalDistributions added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtend) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) Resource added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) Value added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditions) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsResource) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorExtendAdditionsValue) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendAssignment) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorExtendRegionalDistributionsResource) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorRedistribute added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorRedistribute struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) Assignment added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) FieldPath 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 (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistribute) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorRedistributeAssignment) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestTypePathSelectorRedistributeRegionalDistributionsResource) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorUnassign added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorUnassign struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) Assignment added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassign) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment added in v1.0.21

type PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment struct{}

func (PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestTypePathSelectorUnassignAssignment) WithValue added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign) CloneRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign) GetPlan added in v1.0.21

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) 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 (*PlanAssignmentRequest_RequestType_Assign) MakeFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) MakeRawDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) MakeRawFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) Marshal added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign) MergeRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) SetExtensions added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign) SetPlan added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign) Unmarshal added in v1.0.21

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 (PlanAssignmentRequest_RequestType_AssignMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions added in v1.0.21

type PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions struct{}

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) Resource added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) Value added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensions) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsResource) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_AssignPathSelectorExtensionsValue) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestType_AssignPathSelectorPlan added in v1.0.21

type PlanAssignmentRequest_RequestType_AssignPathSelectorPlan struct{}

func (PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorPlan) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestType_AssignPathSelectorRegionalDistributionsResource) WithValue added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign_FieldMask) AppendRawPath added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) DecodeFirestore added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) EncodeFirestore added in v1.0.21

firestore encoding/decoding integration

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) FilterInputFields added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign_FieldMask) GetRawPaths added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) IsFull added in v1.0.21

func (PlanAssignmentRequest_RequestType_Assign_FieldMask) Marshal added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Project added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ProjectRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Set added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Size added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) Subtract added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) SubtractRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Assign_FieldMask) ToProtoFieldMask added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend) CloneRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend) GetAssignment added in v1.0.21

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) 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 (*PlanAssignmentRequest_RequestType_Extend) MakeFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) MakeRawDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) MakeRawFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) Marshal added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend) MergeRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) SetAdditions added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend) SetAssignment added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend) Unmarshal added in v1.0.21

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 (PlanAssignmentRequest_RequestType_ExtendMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions added in v1.0.21

type PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions struct{}

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) Resource added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) Value added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditions) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsResource) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_ExtendPathSelectorAdditionsValue) WithValue added in v1.0.21

type PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment added in v1.0.21

type PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment struct{}

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) FieldPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorAssignment) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayItemValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestType_ExtendPathSelectorRegionalDistributionsResource) WithValue added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend_FieldMask) AppendRawPath added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) DecodeFirestore added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) EncodeFirestore added in v1.0.21

firestore encoding/decoding integration

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) FilterInputFields added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend_FieldMask) GetRawPaths added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) IsFull added in v1.0.21

func (PlanAssignmentRequest_RequestType_Extend_FieldMask) Marshal added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Project added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ProjectRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Set added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Size added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) Subtract added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) SubtractRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Extend_FieldMask) ToProtoFieldMask added in v1.0.21

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 (*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

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 (*PlanAssignmentRequest_RequestType_FieldMask) GetRawPaths added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) IsFull added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_FieldMask) ProjectRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_FieldMask) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) Set added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_FieldMask) Size added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) Subtract added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) SubtractRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_FieldMask) ToProtoFieldMask added in v1.0.21

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

func (*PlanAssignmentRequest_RequestType_Redistribute) CloneRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) Descriptor added in v1.0.21

Deprecated, Use PlanAssignmentRequest_RequestType_Redistribute.ProtoReflect.Descriptor instead.

func (*PlanAssignmentRequest_RequestType_Redistribute) GetAssignment added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) GetRegionalDistributions added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) GotenMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) GotenObjectExt added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) GotenValidate added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MakeDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MakeFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MakeRawDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MakeRawFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) Marshal added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MarshalJSON added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) Merge added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) MergeRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) SetAssignment added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) SetRegionalDistributions added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) Unmarshal added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute) UnmarshalJSON added in v1.0.21

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

func (PlanAssignmentRequest_RequestType_RedistributeMapPathSelectorRegionalDistributionsLimitsByRegion) WithValue 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 (PlanAssignmentRequest_RequestType_RedistributePathSelectorAssignment) WithValue added in v1.0.21

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 (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubArrayOfValues added in v1.0.21

func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubPath added in v1.0.21

func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithSubValue added in v1.0.21

func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributions) WithValue 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 (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithKey added in v1.0.21

func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsLimitsByRegion) WithValue 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

func (PlanAssignmentRequest_RequestType_RedistributePathSelectorRegionalDistributionsResource) WithValue 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 (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) AppendRawPath added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) DecodeFirestore added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) EncodeFirestore added in v1.0.21

firestore encoding/decoding integration

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) FilterInputFields added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) GetRawPaths added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) IsFull added in v1.0.21

func (PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Marshal added in v1.0.21

implement methods required by customType

func (PlanAssignmentRequest_RequestType_Redistribute_FieldMask) MarshalJSON added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) PathsCount added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Project added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProjectRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Set added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetFromCliFlag added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SetRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Size added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Subtract added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) SubtractRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) ToProtoFieldMask added in v1.0.21

ToFieldMask is used for proto conversions

func (*PlanAssignmentRequest_RequestType_Redistribute_FieldMask) Unmarshal added in v1.0.21

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

func (*PlanAssignmentRequest_RequestType_Unassign) CloneRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) Descriptor added in v1.0.21

Deprecated, Use PlanAssignmentRequest_RequestType_Unassign.ProtoReflect.Descriptor instead.

func (*PlanAssignmentRequest_RequestType_Unassign) GetAssignment added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) GotenMessage added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Unassign) MakeDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) MakeFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) MakeRawDiffFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) MakeRawFullFieldMask added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) Marshal added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) MarshalJSON added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) Merge added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) MergeRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) ProtoMessage added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) ProtoReflect added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) SetAssignment added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign) Unmarshal added in v1.0.21

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 (PlanAssignmentRequest_RequestType_UnassignPathSelectorAssignment) WithValue added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) AppendRawPath added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) DecodeFirestore added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) EncodeFirestore added in v1.0.21

firestore encoding/decoding integration

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) FilterInputFields added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) GetRawPaths added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) IsFull added in v1.0.21

func (PlanAssignmentRequest_RequestType_Unassign_FieldMask) Marshal added in v1.0.21

implement methods required by customType

func (PlanAssignmentRequest_RequestType_Unassign_FieldMask) MarshalJSON added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) PathsCount added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Project added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ProjectRaw added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Reset added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Set added in v1.0.21

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 (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Size added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) String added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Subtract added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) SubtractRaw added in v1.0.21

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) ToProtoFieldMask added in v1.0.21

ToFieldMask is used for proto conversions

func (*PlanAssignmentRequest_RequestType_Unassign_FieldMask) Unmarshal added in v1.0.21

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 (*PlanAssignmentRequest_Status) CloneRaw

func (*PlanAssignmentRequest_Status) Descriptor

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

Deprecated, Use PlanAssignmentRequest_Status.ProtoReflect.Descriptor instead.

func (*PlanAssignmentRequest_Status) GetConclusion

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 (*PlanAssignmentRequest_Status) MakeFullFieldMask

func (*PlanAssignmentRequest_Status) MakeRawDiffFieldMask

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 (*PlanAssignmentRequest_Status) MergeRaw

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 (*PlanAssignmentRequest_Status) SetReason

func (m *PlanAssignmentRequest_Status) SetReason(fv string)

func (*PlanAssignmentRequest_Status) 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) FieldPath

type PlanAssignmentRequest_StatusPathSelectorReason

type PlanAssignmentRequest_StatusPathSelectorReason struct{}

func (PlanAssignmentRequest_StatusPathSelectorReason) FieldPath

func (PlanAssignmentRequest_StatusPathSelectorReason) WithArrayOfValues

func (PlanAssignmentRequest_StatusPathSelectorReason) WithValue

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

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 (PlanAssignmentRequest_Status_Conclusion) String

func (PlanAssignmentRequest_Status_Conclusion) Type

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 (*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

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 (*PlanAssignmentRequest_Status_FieldMask) GetRawPaths

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 (*PlanAssignmentRequest_Status_FieldMask) ProjectRaw

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 (*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 (*PlanAssignmentRequest_Status_FieldMask) SubtractRaw

func (*PlanAssignmentRequest_Status_FieldMask) ToProtoFieldMask

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 (*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 (*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 MustParseReference(name string) *Reference

func ParseReference

func ParseReference(name string) (*Reference, error)

func (*Reference) ClearCached

func (ref *Reference) ClearCached()

func (*Reference) FullyQualifiedName

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

func (*Reference) GetIParentName 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 (ref *Reference) GetIdParts() map[string]string

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

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

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

func (*Reference) IsFullyQualified

func (ref *Reference) IsFullyQualified() bool

func (*Reference) IsSpecified

func (ref *Reference) IsSpecified() bool

func (*Reference) Matches

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

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

func (*Reference) ParseProtoString

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

func (*Reference) ProtoString

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

func (*Reference) Resolve

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

func (*Reference) ResolveRaw

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

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type WatchQuery

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

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime 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

Jump to

Keyboard shortcuts

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