recovery_store_sharding_info

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

Documentation

Index

Constants

View Source
const (
	NamePattern_Region = "regions/{region}/recoveryStoreShardingInfos/{recovery_store_sharding_info}"
)

Variables

This section is empty.

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

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

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 RecoveryStoreShardingInfo_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 *RecoveryStoreShardingInfo) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	RecoveryStoreShardingInfo_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

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 (*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 (*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 (*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 (*FilterConditionContains) SpecifiesRawFieldPath

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

func (*FilterConditionContains) String

func (cond *FilterConditionContains) String() string

type FilterConditionIn

type FilterConditionIn struct {
	RecoveryStoreShardingInfo_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *RecoveryStoreShardingInfo) 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 RecoveryStoreShardingInfo_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 RecoveryStoreShardingInfo_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

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 RecoveryStoreShardingInfo_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 RecoveryStoreShardingInfo_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

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 RecoveryStoreShardingInfo_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 *RecoveryStoreShardingInfo) 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 RecoveryStoreShardingInfo_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 {
	RecoveryStoreShardingInfo_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

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 RecoveryStoreShardingInfo_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      *RecoveryStoreShardingInfo_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           *RecoveryStoreShardingInfo_FieldMask
	WithPagingInfo bool
}

func (*ListQuery) GetFieldMask

func (q *ListQuery) GetFieldMask() gotenobject.FieldMask

func (*ListQuery) GetFilter

func (q *ListQuery) GetFilter() gotenresource.Filter

func (*ListQuery) GetPager

func (q *ListQuery) GetPager() gotenresource.PagerQuery

func (*ListQuery) GetResourceDescriptor

func (q *ListQuery) GetResourceDescriptor() gotenresource.Descriptor

func (*ListQuery) GetWithPagingInfo

func (q *ListQuery) GetWithPagingInfo() bool

func (*ListQuery) GotenQuery

func (q *ListQuery) GotenQuery()

func (*ListQuery) SetFieldMask

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

func (*ListQuery) SetFilter

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

func (*ListQuery) SetPager

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

func (*ListQuery) SetWithPagingInfo

func (q *ListQuery) SetWithPagingInfo(with bool)

func (*ListQuery) String

func (q *ListQuery) String() string

type Name

type Name struct {
	ParentName
	RecoveryStoreShardingInfoId string `firestore:"recoveryStoreShardingInfoId"`
}

func MustParseName

func MustParseName(name string) *Name

func ParseName

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

func ParseNameOrId

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

func (*Name) AsRawReference

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

func (*Name) AsReference

func (name *Name) AsReference() *Reference

func (*Name) ConvertToNative

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

func (*Name) ConvertToType

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

func (*Name) Equal

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

func (*Name) FullyQualifiedName

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

func (*Name) GetIParentName

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

func (*Name) GetIUnderlyingParentName

func (name *Name) GetIUnderlyingParentName() gotenresource.Name

func (*Name) GetIdParts

func (name *Name) GetIdParts() map[string]string

func (*Name) GetPattern

func (name *Name) GetPattern() gotenresource.NamePattern

func (*Name) 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) SetRegionId

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

type NamePattern

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

type OrderBy

type OrderBy struct {
	OrderByFields []OrderByField
}

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

func (*OrderBy) Compare

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

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *RecoveryStoreShardingInfo_FieldMask

func (*OrderBy) GetOrderByFields

func (orderBy *OrderBy) GetOrderByFields() []gotenresource.OrderByField

func (*OrderBy) GetRawFieldMask

func (orderBy *OrderBy) GetRawFieldMask() gotenobject.FieldMask

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

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

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

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type PagerCursor

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

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

func (*PagerCursor) GetInclusion

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

func (*PagerCursor) GetPageDirection

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

func (*PagerCursor) GetValue

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

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

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

func (*PagerCursor) ProtoString

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

func (*PagerCursor) SetCursorValue

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

func (*PagerCursor) SetFromCliFlag

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

func (*PagerCursor) SetInclusion

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

func (*PagerCursor) SetPageDirection

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

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

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

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

func MakePagerQuery

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

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

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

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

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

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

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

func (*PagerQuery) PageDirection

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

func (*PagerQuery) SetCursor

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

func (*PagerQuery) SetLimit

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy

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

func (*PagerQuery) SetPageDirection

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

func (*PagerQuery) SetPeekForward

func (p *PagerQuery) SetPeekForward(peekForward bool)

type ParentName

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

func MustParseParentName

func MustParseParentName(name string) *ParentName

func ParseParentName

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

func (*ParentName) AsRawReference

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

func (*ParentName) AsReference

func (name *ParentName) AsReference() *ParentReference

func (*ParentName) ConvertToNative added in v1.0.21

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

func (*ParentName) ConvertToType added in v1.0.21

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

func (*ParentName) DescendsFrom

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

func (*ParentName) Equal added in v1.0.21

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

func (*ParentName) FullyQualifiedName

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

func (*ParentName) GetIParentName

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

func (*ParentName) GetIUnderlyingParentName

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

func (*ParentName) GetIdParts

func (name *ParentName) GetIdParts() map[string]string

func (*ParentName) GetPattern

func (name *ParentName) GetPattern() gotenresource.NamePattern

func (*ParentName) 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
}

func MakeParentReference

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

func MustParseParentReference

func MustParseParentReference(name string) *ParentReference

func ParseParentReference

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

func (*ParentReference) ClearCached

func (ref *ParentReference) ClearCached()

func (*ParentReference) GetIParentName

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

func (*ParentReference) GetIUnderlyingParentName

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

func (*ParentReference) GetIdParts

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

func (*ParentReference) GetPattern

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

func (*ParentReference) GetRawResource

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

func (*ParentReference) GetResourceDescriptor

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

func (*ParentReference) GetSegments

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

func (*ParentReference) GetUnderlyingReference

func (ref *ParentReference) GetUnderlyingReference() gotenresource.Reference

func (*ParentReference) GotenEqual

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

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

func (*ParentReference) IsFullyQualified

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

func (*ParentReference) Matches

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

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

func (*ParentReference) ParseProtoString

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

func (*ParentReference) ProtoString

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

func (*ParentReference) ResolveRaw

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

func (*ParentReference) Resolved

func (ref *ParentReference) Resolved() bool

func (*ParentReference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*ParentReference) String

func (ref *ParentReference) String() string

type QueryResultChange

type QueryResultChange struct {
	Changes        []*RecoveryStoreShardingInfoChange
	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 {
	RecoveryStoreShardingInfos []*RecoveryStoreShardingInfo
	PrevPageCursor             *PagerCursor
	NextPageCursor             *PagerCursor
	TotalResultsCount          int32
	CurrentOffset              int32
}

func (*QueryResultSnapshot) GetNextPageCursor

func (qr *QueryResultSnapshot) GetNextPageCursor() gotenresource.Cursor

func (*QueryResultSnapshot) GetPagingInfo

func (qr *QueryResultSnapshot) GetPagingInfo() (totalCount, offset int32)

func (*QueryResultSnapshot) GetPrevPageCursor

func (qr *QueryResultSnapshot) GetPrevPageCursor() gotenresource.Cursor

func (*QueryResultSnapshot) GetResults

func (*QueryResultSnapshot) SetCursors

func (qr *QueryResultSnapshot) SetCursors(nextPageCursor, prevPageCursor gotenresource.Cursor)

func (*QueryResultSnapshot) SetPagingInfo

func (qr *QueryResultSnapshot) SetPagingInfo(totalCount, offset int32)

func (*QueryResultSnapshot) SetResults

func (qr *QueryResultSnapshot) SetResults(results gotenresource.ResourceList)

type RecoveryStoreShardingInfo

type RecoveryStoreShardingInfo struct {

	// Name of RecoveryStoreShardingInfo
	// 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-zA-Z0-9_.-]{1,128}
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// Period during which this sharding spec is valid.
	ValidityPeriod *RecoveryStoreShardingInfo_ValidityPeriod `` /* 130-byte string literal not displayed */
	// Sharding spec for given validity period.
	Spec *RecoveryStoreShardingInfo_ShardingSpec `protobuf:"bytes,3,opt,name=spec,proto3" json:"spec,omitempty" firestore:"spec"`
	// metadata
	Metadata *meta.Meta `protobuf:"bytes,4,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	// contains filtered or unexported fields
}

RecoveryStoreShardingInfo Resource

func (*RecoveryStoreShardingInfo) Clone

func (*RecoveryStoreShardingInfo) CloneRaw

func (*RecoveryStoreShardingInfo) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfo.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfo) EnsureMetadata added in v1.0.21

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

func (*RecoveryStoreShardingInfo) GetMetadata

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

func (*RecoveryStoreShardingInfo) GetName

func (m *RecoveryStoreShardingInfo) GetName() *Name

func (*RecoveryStoreShardingInfo) GetRawName

func (*RecoveryStoreShardingInfo) GetResourceDescriptor

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

func (*RecoveryStoreShardingInfo) GetSpec

func (*RecoveryStoreShardingInfo) GetValidityPeriod

func (*RecoveryStoreShardingInfo) GotenMessage

func (*RecoveryStoreShardingInfo) GotenMessage()

func (*RecoveryStoreShardingInfo) GotenObjectExt

func (o *RecoveryStoreShardingInfo) GotenObjectExt()

func (*RecoveryStoreShardingInfo) GotenValidate

func (obj *RecoveryStoreShardingInfo) GotenValidate() error

func (*RecoveryStoreShardingInfo) MakeDiffFieldMask

func (*RecoveryStoreShardingInfo) MakeFullFieldMask

func (*RecoveryStoreShardingInfo) MakeRawDiffFieldMask

func (*RecoveryStoreShardingInfo) MakeRawFullFieldMask

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

func (*RecoveryStoreShardingInfo) Marshal

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

func (*RecoveryStoreShardingInfo) MarshalJSON

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

func (*RecoveryStoreShardingInfo) MaybePopulateDefaults

func (r *RecoveryStoreShardingInfo) MaybePopulateDefaults() error

func (*RecoveryStoreShardingInfo) Merge

func (*RecoveryStoreShardingInfo) MergeRaw

func (*RecoveryStoreShardingInfo) ProtoMessage

func (*RecoveryStoreShardingInfo) ProtoMessage()

func (*RecoveryStoreShardingInfo) ProtoReflect

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

func (*RecoveryStoreShardingInfo) Reset

func (m *RecoveryStoreShardingInfo) Reset()

func (*RecoveryStoreShardingInfo) SetMetadata

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

func (*RecoveryStoreShardingInfo) SetName

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

func (*RecoveryStoreShardingInfo) SetSpec

func (*RecoveryStoreShardingInfo) SetValidityPeriod

func (*RecoveryStoreShardingInfo) String

func (m *RecoveryStoreShardingInfo) String() string

func (*RecoveryStoreShardingInfo) Unmarshal

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

func (*RecoveryStoreShardingInfo) UnmarshalJSON

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

type RecoveryStoreShardingInfoAccess

type RecoveryStoreShardingInfoAccess interface {
	GetRecoveryStoreShardingInfo(context.Context, *GetQuery) (*RecoveryStoreShardingInfo, error)
	BatchGetRecoveryStoreShardingInfos(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryRecoveryStoreShardingInfos(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchRecoveryStoreShardingInfo(context.Context, *GetQuery, func(*RecoveryStoreShardingInfoChange) error) error
	WatchRecoveryStoreShardingInfos(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveRecoveryStoreShardingInfo(context.Context, *RecoveryStoreShardingInfo, ...gotenresource.SaveOption) error
	DeleteRecoveryStoreShardingInfo(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type RecoveryStoreShardingInfoChange

type RecoveryStoreShardingInfoChange struct {

	// RecoveryStoreShardingInfo change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*RecoveryStoreShardingInfoChange_Added_
	//	*RecoveryStoreShardingInfoChange_Modified_
	//	*RecoveryStoreShardingInfoChange_Current_
	//	*RecoveryStoreShardingInfoChange_Removed_
	ChangeType isRecoveryStoreShardingInfoChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*RecoveryStoreShardingInfoChange) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfoChange.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfoChange) GetAdded

func (*RecoveryStoreShardingInfoChange) GetChangeType

func (m *RecoveryStoreShardingInfoChange) GetChangeType() isRecoveryStoreShardingInfoChange_ChangeType

func (*RecoveryStoreShardingInfoChange) GetCurrent

func (*RecoveryStoreShardingInfoChange) GetCurrentViewIndex

func (c *RecoveryStoreShardingInfoChange) GetCurrentViewIndex() int32

func (*RecoveryStoreShardingInfoChange) GetModified

func (*RecoveryStoreShardingInfoChange) GetPreviousViewIndex

func (c *RecoveryStoreShardingInfoChange) GetPreviousViewIndex() int32

func (*RecoveryStoreShardingInfoChange) GetRawName

func (*RecoveryStoreShardingInfoChange) GetRawResource

func (*RecoveryStoreShardingInfoChange) GetRecoveryStoreShardingInfo

func (c *RecoveryStoreShardingInfoChange) GetRecoveryStoreShardingInfo() *RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfoChange) GetRecoveryStoreShardingInfoName

func (c *RecoveryStoreShardingInfoChange) GetRecoveryStoreShardingInfoName() *Name

func (*RecoveryStoreShardingInfoChange) GetRemoved

func (*RecoveryStoreShardingInfoChange) GotenMessage

func (*RecoveryStoreShardingInfoChange) GotenMessage()

func (*RecoveryStoreShardingInfoChange) GotenValidate

func (obj *RecoveryStoreShardingInfoChange) GotenValidate() error

func (*RecoveryStoreShardingInfoChange) IsAdd

func (*RecoveryStoreShardingInfoChange) IsCurrent

func (c *RecoveryStoreShardingInfoChange) IsCurrent() bool

func (*RecoveryStoreShardingInfoChange) IsDelete

func (c *RecoveryStoreShardingInfoChange) IsDelete() bool

func (*RecoveryStoreShardingInfoChange) IsModify

func (c *RecoveryStoreShardingInfoChange) IsModify() bool

func (*RecoveryStoreShardingInfoChange) Marshal

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

func (*RecoveryStoreShardingInfoChange) MarshalJSON

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

func (*RecoveryStoreShardingInfoChange) ProtoMessage

func (*RecoveryStoreShardingInfoChange) ProtoMessage()

func (*RecoveryStoreShardingInfoChange) ProtoReflect

func (*RecoveryStoreShardingInfoChange) Reset

func (*RecoveryStoreShardingInfoChange) SetAdded

func (*RecoveryStoreShardingInfoChange) SetAddedRaw

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

func (*RecoveryStoreShardingInfoChange) SetChangeType

func (m *RecoveryStoreShardingInfoChange) SetChangeType(ofv isRecoveryStoreShardingInfoChange_ChangeType)

func (*RecoveryStoreShardingInfoChange) SetCurrent

func (*RecoveryStoreShardingInfoChange) SetCurrentRaw

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

func (*RecoveryStoreShardingInfoChange) SetDeletedRaw

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

func (*RecoveryStoreShardingInfoChange) SetModified

func (*RecoveryStoreShardingInfoChange) SetModifiedRaw

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

func (*RecoveryStoreShardingInfoChange) SetRemoved

func (*RecoveryStoreShardingInfoChange) String

func (*RecoveryStoreShardingInfoChange) Unmarshal

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

func (*RecoveryStoreShardingInfoChange) UnmarshalJSON

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

type RecoveryStoreShardingInfoChangeList

type RecoveryStoreShardingInfoChangeList []*RecoveryStoreShardingInfoChange

func (RecoveryStoreShardingInfoChangeList) Append

func (RecoveryStoreShardingInfoChangeList) AppendList

func (RecoveryStoreShardingInfoChangeList) At

func (RecoveryStoreShardingInfoChangeList) Length

func (RecoveryStoreShardingInfoChangeList) Set

func (RecoveryStoreShardingInfoChangeList) Slice

type RecoveryStoreShardingInfoChangeMap

type RecoveryStoreShardingInfoChangeMap map[Name]*RecoveryStoreShardingInfoChange

func (RecoveryStoreShardingInfoChangeMap) Delete

func (RecoveryStoreShardingInfoChangeMap) ForEach

func (RecoveryStoreShardingInfoChangeMap) Get

func (RecoveryStoreShardingInfoChangeMap) Length

func (RecoveryStoreShardingInfoChangeMap) Set

type RecoveryStoreShardingInfoChange_Added

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

RecoveryStoreShardingInfo has been added to query view

func (*RecoveryStoreShardingInfoChange_Added) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfoChange_Added.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfoChange_Added) GetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Added) GetRecoveryStoreShardingInfo() *RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfoChange_Added) GetViewIndex

func (m *RecoveryStoreShardingInfoChange_Added) GetViewIndex() int32

func (*RecoveryStoreShardingInfoChange_Added) GotenMessage

func (*RecoveryStoreShardingInfoChange_Added) GotenMessage()

func (*RecoveryStoreShardingInfoChange_Added) GotenValidate

func (obj *RecoveryStoreShardingInfoChange_Added) GotenValidate() error

func (*RecoveryStoreShardingInfoChange_Added) Marshal

func (*RecoveryStoreShardingInfoChange_Added) MarshalJSON

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

func (*RecoveryStoreShardingInfoChange_Added) ProtoMessage

func (*RecoveryStoreShardingInfoChange_Added) ProtoMessage()

func (*RecoveryStoreShardingInfoChange_Added) ProtoReflect

func (*RecoveryStoreShardingInfoChange_Added) Reset

func (*RecoveryStoreShardingInfoChange_Added) SetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Added) SetRecoveryStoreShardingInfo(fv *RecoveryStoreShardingInfo)

func (*RecoveryStoreShardingInfoChange_Added) SetViewIndex

func (m *RecoveryStoreShardingInfoChange_Added) SetViewIndex(fv int32)

func (*RecoveryStoreShardingInfoChange_Added) String

func (*RecoveryStoreShardingInfoChange_Added) Unmarshal

func (*RecoveryStoreShardingInfoChange_Added) UnmarshalJSON

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

type RecoveryStoreShardingInfoChange_Added_

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

type RecoveryStoreShardingInfoChange_Current

type RecoveryStoreShardingInfoChange_Current struct {
	RecoveryStoreShardingInfo *RecoveryStoreShardingInfo `` /* 178-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*RecoveryStoreShardingInfoChange_Current) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfoChange_Current.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfoChange_Current) GetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Current) GetRecoveryStoreShardingInfo() *RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfoChange_Current) GotenMessage

func (*RecoveryStoreShardingInfoChange_Current) GotenValidate

func (obj *RecoveryStoreShardingInfoChange_Current) GotenValidate() error

func (*RecoveryStoreShardingInfoChange_Current) Marshal

func (*RecoveryStoreShardingInfoChange_Current) MarshalJSON

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

func (*RecoveryStoreShardingInfoChange_Current) ProtoMessage

func (*RecoveryStoreShardingInfoChange_Current) ProtoReflect

func (*RecoveryStoreShardingInfoChange_Current) Reset

func (*RecoveryStoreShardingInfoChange_Current) SetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Current) SetRecoveryStoreShardingInfo(fv *RecoveryStoreShardingInfo)

func (*RecoveryStoreShardingInfoChange_Current) String

func (*RecoveryStoreShardingInfoChange_Current) Unmarshal

func (*RecoveryStoreShardingInfoChange_Current) UnmarshalJSON

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

type RecoveryStoreShardingInfoChange_Current_

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

type RecoveryStoreShardingInfoChange_Modified

type RecoveryStoreShardingInfoChange_Modified struct {

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

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

func (*RecoveryStoreShardingInfoChange_Modified) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfoChange_Modified.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfoChange_Modified) GetFieldMask

func (*RecoveryStoreShardingInfoChange_Modified) GetName

func (*RecoveryStoreShardingInfoChange_Modified) GetPreviousViewIndex

func (m *RecoveryStoreShardingInfoChange_Modified) GetPreviousViewIndex() int32

func (*RecoveryStoreShardingInfoChange_Modified) GetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Modified) GetRecoveryStoreShardingInfo() *RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfoChange_Modified) GetViewIndex

func (*RecoveryStoreShardingInfoChange_Modified) GotenMessage

func (*RecoveryStoreShardingInfoChange_Modified) GotenValidate

func (obj *RecoveryStoreShardingInfoChange_Modified) GotenValidate() error

func (*RecoveryStoreShardingInfoChange_Modified) Marshal

func (*RecoveryStoreShardingInfoChange_Modified) MarshalJSON

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

func (*RecoveryStoreShardingInfoChange_Modified) ProtoMessage

func (*RecoveryStoreShardingInfoChange_Modified) ProtoReflect

func (*RecoveryStoreShardingInfoChange_Modified) Reset

func (*RecoveryStoreShardingInfoChange_Modified) SetFieldMask

func (*RecoveryStoreShardingInfoChange_Modified) SetName

func (*RecoveryStoreShardingInfoChange_Modified) SetPreviousViewIndex

func (m *RecoveryStoreShardingInfoChange_Modified) SetPreviousViewIndex(fv int32)

func (*RecoveryStoreShardingInfoChange_Modified) SetRecoveryStoreShardingInfo

func (m *RecoveryStoreShardingInfoChange_Modified) SetRecoveryStoreShardingInfo(fv *RecoveryStoreShardingInfo)

func (*RecoveryStoreShardingInfoChange_Modified) SetViewIndex

func (m *RecoveryStoreShardingInfoChange_Modified) SetViewIndex(fv int32)

func (*RecoveryStoreShardingInfoChange_Modified) String

func (*RecoveryStoreShardingInfoChange_Modified) Unmarshal

func (*RecoveryStoreShardingInfoChange_Modified) UnmarshalJSON

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

type RecoveryStoreShardingInfoChange_Modified_

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

type RecoveryStoreShardingInfoChange_Removed

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

func (*RecoveryStoreShardingInfoChange_Removed) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfoChange_Removed.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfoChange_Removed) GetName

func (*RecoveryStoreShardingInfoChange_Removed) GetViewIndex

func (*RecoveryStoreShardingInfoChange_Removed) GotenMessage

func (*RecoveryStoreShardingInfoChange_Removed) GotenValidate

func (obj *RecoveryStoreShardingInfoChange_Removed) GotenValidate() error

func (*RecoveryStoreShardingInfoChange_Removed) Marshal

func (*RecoveryStoreShardingInfoChange_Removed) MarshalJSON

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

func (*RecoveryStoreShardingInfoChange_Removed) ProtoMessage

func (*RecoveryStoreShardingInfoChange_Removed) ProtoReflect

func (*RecoveryStoreShardingInfoChange_Removed) Reset

func (*RecoveryStoreShardingInfoChange_Removed) SetName

func (*RecoveryStoreShardingInfoChange_Removed) SetViewIndex

func (m *RecoveryStoreShardingInfoChange_Removed) SetViewIndex(fv int32)

func (*RecoveryStoreShardingInfoChange_Removed) String

func (*RecoveryStoreShardingInfoChange_Removed) Unmarshal

func (*RecoveryStoreShardingInfoChange_Removed) UnmarshalJSON

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

type RecoveryStoreShardingInfoChange_Removed_

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

type RecoveryStoreShardingInfoFieldPathBuilder

type RecoveryStoreShardingInfoFieldPathBuilder struct{}

func NewRecoveryStoreShardingInfoFieldPathBuilder

func NewRecoveryStoreShardingInfoFieldPathBuilder() RecoveryStoreShardingInfoFieldPathBuilder

func (RecoveryStoreShardingInfoFieldPathBuilder) Metadata

func (RecoveryStoreShardingInfoFieldPathBuilder) Name

func (RecoveryStoreShardingInfoFieldPathBuilder) Spec

func (RecoveryStoreShardingInfoFieldPathBuilder) ValidityPeriod

type RecoveryStoreShardingInfoList

type RecoveryStoreShardingInfoList []*RecoveryStoreShardingInfo

func (RecoveryStoreShardingInfoList) Append

func (RecoveryStoreShardingInfoList) AppendList

func (RecoveryStoreShardingInfoList) At

func (RecoveryStoreShardingInfoList) Length

func (RecoveryStoreShardingInfoList) Set

func (RecoveryStoreShardingInfoList) Slice

type RecoveryStoreShardingInfoMap

type RecoveryStoreShardingInfoMap map[Name]*RecoveryStoreShardingInfo

func (RecoveryStoreShardingInfoMap) Delete

func (RecoveryStoreShardingInfoMap) ForEach

func (RecoveryStoreShardingInfoMap) Get

func (RecoveryStoreShardingInfoMap) Length

func (m RecoveryStoreShardingInfoMap) Length() int

func (RecoveryStoreShardingInfoMap) Set

type RecoveryStoreShardingInfoMapPathSelectorMetadataAnnotations

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

func (RecoveryStoreShardingInfoMapPathSelectorMetadataAnnotations) FieldPath

func (RecoveryStoreShardingInfoMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (RecoveryStoreShardingInfoMapPathSelectorMetadataAnnotations) WithValue

type RecoveryStoreShardingInfoMapPathSelectorMetadataLabels

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

func (RecoveryStoreShardingInfoMapPathSelectorMetadataLabels) FieldPath

func (RecoveryStoreShardingInfoMapPathSelectorMetadataLabels) WithArrayOfValues

func (RecoveryStoreShardingInfoMapPathSelectorMetadataLabels) WithValue

type RecoveryStoreShardingInfoMapPathSelectorMetadataShards

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

func (RecoveryStoreShardingInfoMapPathSelectorMetadataShards) FieldPath

func (RecoveryStoreShardingInfoMapPathSelectorMetadataShards) WithArrayOfValues

func (RecoveryStoreShardingInfoMapPathSelectorMetadataShards) WithValue

type RecoveryStoreShardingInfoNameList

type RecoveryStoreShardingInfoNameList []*Name

func (RecoveryStoreShardingInfoNameList) Append

func (RecoveryStoreShardingInfoNameList) AppendList

func (RecoveryStoreShardingInfoNameList) At

func (RecoveryStoreShardingInfoNameList) Length

func (RecoveryStoreShardingInfoNameList) Set

func (RecoveryStoreShardingInfoNameList) Slice

type RecoveryStoreShardingInfoParentNameList

type RecoveryStoreShardingInfoParentNameList []*ParentName

func (RecoveryStoreShardingInfoParentNameList) Append

func (RecoveryStoreShardingInfoParentNameList) AppendList

func (RecoveryStoreShardingInfoParentNameList) At

func (RecoveryStoreShardingInfoParentNameList) Length

func (RecoveryStoreShardingInfoParentNameList) Set

func (RecoveryStoreShardingInfoParentNameList) Slice

type RecoveryStoreShardingInfoParentReferenceList

type RecoveryStoreShardingInfoParentReferenceList []*ParentReference

func (RecoveryStoreShardingInfoParentReferenceList) Append

func (RecoveryStoreShardingInfoParentReferenceList) AppendList

func (RecoveryStoreShardingInfoParentReferenceList) At

func (RecoveryStoreShardingInfoParentReferenceList) Length

func (RecoveryStoreShardingInfoParentReferenceList) Set

func (RecoveryStoreShardingInfoParentReferenceList) Slice

type RecoveryStoreShardingInfoPathSelectorMetadata

type RecoveryStoreShardingInfoPathSelectorMetadata struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadata) Annotations

func (RecoveryStoreShardingInfoPathSelectorMetadata) CreateTime

func (RecoveryStoreShardingInfoPathSelectorMetadata) DeleteTime

func (RecoveryStoreShardingInfoPathSelectorMetadata) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadata) Generation

func (RecoveryStoreShardingInfoPathSelectorMetadata) Labels

func (RecoveryStoreShardingInfoPathSelectorMetadata) Lifecycle

func (RecoveryStoreShardingInfoPathSelectorMetadata) OwnerReferences

func (RecoveryStoreShardingInfoPathSelectorMetadata) ResourceVersion

func (RecoveryStoreShardingInfoPathSelectorMetadata) Services added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadata) Shards

func (RecoveryStoreShardingInfoPathSelectorMetadata) Syncing

func (RecoveryStoreShardingInfoPathSelectorMetadata) Tags

func (RecoveryStoreShardingInfoPathSelectorMetadata) UpdateTime

func (RecoveryStoreShardingInfoPathSelectorMetadata) Uuid

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithSubArrayItemValue

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithSubArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithSubPath

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithSubValue

func (RecoveryStoreShardingInfoPathSelectorMetadata) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataAnnotations

type RecoveryStoreShardingInfoPathSelectorMetadataAnnotations struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataAnnotations) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataAnnotations) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataAnnotations) WithKey

func (RecoveryStoreShardingInfoPathSelectorMetadataAnnotations) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataCreateTime

type RecoveryStoreShardingInfoPathSelectorMetadataCreateTime struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataCreateTime) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataCreateTime) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataCreateTime) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataDeleteTime

type RecoveryStoreShardingInfoPathSelectorMetadataDeleteTime struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataDeleteTime) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataDeleteTime) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataDeleteTime) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataGeneration

type RecoveryStoreShardingInfoPathSelectorMetadataGeneration struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataGeneration) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataGeneration) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataGeneration) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataLabels

type RecoveryStoreShardingInfoPathSelectorMetadataLabels struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataLabels) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataLabels) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataLabels) WithKey

func (RecoveryStoreShardingInfoPathSelectorMetadataLabels) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycle

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycle struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycle) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycle) State

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycle) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycle) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycleBlockDeletion

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycleBlockDeletion struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleBlockDeletion) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycleState

type RecoveryStoreShardingInfoPathSelectorMetadataLifecycleState struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleState) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleState) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataLifecycleState) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) Kind

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) Name

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) WithItemValue

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferences) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesController

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesController struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesController) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesController) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesKind

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesKind struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesKind) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesKind) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesName

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesName struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesName) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesName) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRegion

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRegion struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRegion) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRegion) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRequiresOwnerReference

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesVersion

type RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesVersion struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesVersion) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataOwnerReferencesVersion) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataResourceVersion

type RecoveryStoreShardingInfoPathSelectorMetadataResourceVersion struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataResourceVersion) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataResourceVersion) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataResourceVersion) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataServices added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataServices struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataServices) AllowedServices added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServices) FieldPath added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServices) OwningService added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServices) WithArrayOfValues added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServices) WithValue added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices) FieldPath added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices) WithArrayOfValues added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices) WithItemValue added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesAllowedServices) WithValue added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataServicesOwningService added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataServicesOwningService struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesOwningService) FieldPath added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesOwningService) WithArrayOfValues added in v1.0.21

func (RecoveryStoreShardingInfoPathSelectorMetadataServicesOwningService) WithValue added in v1.0.21

type RecoveryStoreShardingInfoPathSelectorMetadataShards

type RecoveryStoreShardingInfoPathSelectorMetadataShards struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataShards) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataShards) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataShards) WithKey

func (RecoveryStoreShardingInfoPathSelectorMetadataShards) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataSyncing

type RecoveryStoreShardingInfoPathSelectorMetadataSyncing struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncing) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncing) OwningRegion

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncing) Regions

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncing) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncing) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataSyncingOwningRegion

type RecoveryStoreShardingInfoPathSelectorMetadataSyncingOwningRegion struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingOwningRegion) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingOwningRegion) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions

type RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions) WithItemValue

func (RecoveryStoreShardingInfoPathSelectorMetadataSyncingRegions) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataTags

type RecoveryStoreShardingInfoPathSelectorMetadataTags struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataTags) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataTags) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataTags) WithItemValue

func (RecoveryStoreShardingInfoPathSelectorMetadataTags) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataUpdateTime

type RecoveryStoreShardingInfoPathSelectorMetadataUpdateTime struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataUpdateTime) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataUpdateTime) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataUpdateTime) WithValue

type RecoveryStoreShardingInfoPathSelectorMetadataUuid

type RecoveryStoreShardingInfoPathSelectorMetadataUuid struct{}

func (RecoveryStoreShardingInfoPathSelectorMetadataUuid) FieldPath

func (RecoveryStoreShardingInfoPathSelectorMetadataUuid) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorMetadataUuid) WithValue

type RecoveryStoreShardingInfoPathSelectorName

type RecoveryStoreShardingInfoPathSelectorName struct{}

func (RecoveryStoreShardingInfoPathSelectorName) FieldPath

func (RecoveryStoreShardingInfoPathSelectorName) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorName) WithValue

type RecoveryStoreShardingInfoPathSelectorSpec

type RecoveryStoreShardingInfoPathSelectorSpec struct{}

func (RecoveryStoreShardingInfoPathSelectorSpec) FieldPath

func (RecoveryStoreShardingInfoPathSelectorSpec) ShardsCount

func (RecoveryStoreShardingInfoPathSelectorSpec) TsBlobPeriod

type RecoveryStoreShardingInfoPathSelectorSpecShardsCount

type RecoveryStoreShardingInfoPathSelectorSpecShardsCount struct{}

func (RecoveryStoreShardingInfoPathSelectorSpecShardsCount) FieldPath

func (RecoveryStoreShardingInfoPathSelectorSpecShardsCount) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorSpecShardsCount) WithValue

type RecoveryStoreShardingInfoPathSelectorSpecTsBlobPeriod

type RecoveryStoreShardingInfoPathSelectorSpecTsBlobPeriod struct{}

func (RecoveryStoreShardingInfoPathSelectorSpecTsBlobPeriod) FieldPath

func (RecoveryStoreShardingInfoPathSelectorSpecTsBlobPeriod) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorSpecTsBlobPeriod) WithValue

type RecoveryStoreShardingInfoPathSelectorValidityPeriod

type RecoveryStoreShardingInfoPathSelectorValidityPeriod struct{}

func (RecoveryStoreShardingInfoPathSelectorValidityPeriod) EndTime

func (RecoveryStoreShardingInfoPathSelectorValidityPeriod) FieldPath

func (RecoveryStoreShardingInfoPathSelectorValidityPeriod) StartTime

type RecoveryStoreShardingInfoPathSelectorValidityPeriodEndTime

type RecoveryStoreShardingInfoPathSelectorValidityPeriodEndTime struct{}

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodEndTime) FieldPath

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodEndTime) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodEndTime) WithValue

type RecoveryStoreShardingInfoPathSelectorValidityPeriodStartTime

type RecoveryStoreShardingInfoPathSelectorValidityPeriodStartTime struct{}

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodStartTime) FieldPath

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodStartTime) WithArrayOfValues

func (RecoveryStoreShardingInfoPathSelectorValidityPeriodStartTime) WithValue

type RecoveryStoreShardingInfoReferenceList

type RecoveryStoreShardingInfoReferenceList []*Reference

func (RecoveryStoreShardingInfoReferenceList) Append

func (RecoveryStoreShardingInfoReferenceList) AppendList

func (RecoveryStoreShardingInfoReferenceList) At

func (RecoveryStoreShardingInfoReferenceList) Length

func (RecoveryStoreShardingInfoReferenceList) Set

func (RecoveryStoreShardingInfoReferenceList) Slice

type RecoveryStoreShardingInfoShardingSpecFieldPathBuilder

type RecoveryStoreShardingInfoShardingSpecFieldPathBuilder struct{}

func (RecoveryStoreShardingInfoShardingSpecFieldPathBuilder) ShardsCount

func (RecoveryStoreShardingInfoShardingSpecFieldPathBuilder) TsBlobPeriod

type RecoveryStoreShardingInfoShardingSpec_FieldPath

type RecoveryStoreShardingInfoShardingSpec_FieldPath interface {
	gotenobject.FieldPath
	Selector() RecoveryStoreShardingInfoShardingSpec_FieldPathSelector
	Get(source *RecoveryStoreShardingInfo_ShardingSpec) []interface{}
	GetSingle(source *RecoveryStoreShardingInfo_ShardingSpec) (interface{}, bool)
	ClearValue(item *RecoveryStoreShardingInfo_ShardingSpec)

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

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

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPath

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPath(rawField string) RecoveryStoreShardingInfoShardingSpec_FieldPath

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPath

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPath(rawField string) (RecoveryStoreShardingInfoShardingSpec_FieldPath, error)

type RecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue

type RecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	RecoveryStoreShardingInfoShardingSpec_FieldPath
	ContainsValue(*RecoveryStoreShardingInfo_ShardingSpec) bool
}

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

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue(pathStr, valueStr string) RecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue(pathStr, valueStr string) (RecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue, error)

ParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type RecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues

type RecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	RecoveryStoreShardingInfoShardingSpec_FieldPath
}

RecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues allows storing slice of values for ShardingSpec fields according to their type

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues(pathStr, valuesStr string) RecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues(pathStr, valuesStr string) (RecoveryStoreShardingInfoShardingSpec_FieldPathArrayOfValues, error)

type RecoveryStoreShardingInfoShardingSpec_FieldPathSelector

type RecoveryStoreShardingInfoShardingSpec_FieldPathSelector int32
const (
	RecoveryStoreShardingInfoShardingSpec_FieldPathSelectorTsBlobPeriod RecoveryStoreShardingInfoShardingSpec_FieldPathSelector = 0
	RecoveryStoreShardingInfoShardingSpec_FieldPathSelectorShardsCount  RecoveryStoreShardingInfoShardingSpec_FieldPathSelector = 1
)

func (RecoveryStoreShardingInfoShardingSpec_FieldPathSelector) String

type RecoveryStoreShardingInfoShardingSpec_FieldPathValue

type RecoveryStoreShardingInfoShardingSpec_FieldPathValue interface {
	RecoveryStoreShardingInfoShardingSpec_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **RecoveryStoreShardingInfo_ShardingSpec)
	CompareWith(*RecoveryStoreShardingInfo_ShardingSpec) (cmp int, comparable bool)
}

RecoveryStoreShardingInfoShardingSpec_FieldPathValue allows storing values for ShardingSpec fields according to their type

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathValue

func MustParseRecoveryStoreShardingInfoShardingSpec_FieldPathValue(pathStr, valueStr string) RecoveryStoreShardingInfoShardingSpec_FieldPathValue

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathValue

func ParseRecoveryStoreShardingInfoShardingSpec_FieldPathValue(pathStr, valueStr string) (RecoveryStoreShardingInfoShardingSpec_FieldPathValue, error)

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath

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

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) ClearValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) ClearValueRaw

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) Get

Get returns all values pointed by specific field from source RecoveryStoreShardingInfo_ShardingSpec

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) GetRaw

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) GetSingle

GetSingle returns value pointed by specific field of from source RecoveryStoreShardingInfo_ShardingSpec

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) GetSingleRaw

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

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) Selector

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) SplitIntoTerminalIPaths

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) String

String returns path representation in proto convention

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithIArrayItemValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithIArrayOfValues

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithIValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithRawIArrayItemValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithRawIArrayOfValues

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath) WithRawIValue

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue struct {
	RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue) GetSingle

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayItemValue) GetSingleRaw

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues struct {
	RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues) AsShardsCountArrayOfValues

func (fpaov *RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues) AsShardsCountArrayOfValues() ([]uint32, bool)

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues) AsTsBlobPeriodArrayOfValues

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathArrayOfValues) GetRawValues

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

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue

type RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue struct {
	RecoveryStoreShardingInfoShardingSpec_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) AsShardsCountValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) AsTsBlobPeriodValue

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue' with the value under path in 'RecoveryStoreShardingInfo_ShardingSpec'.

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) CompareWithRaw

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) GetRawValue

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

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

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ShardingSpec

func (*RecoveryStoreShardingInfoShardingSpec_FieldTerminalPathValue) SetToRaw

type RecoveryStoreShardingInfoValidityPeriodFieldPathBuilder

type RecoveryStoreShardingInfoValidityPeriodFieldPathBuilder struct{}

func (RecoveryStoreShardingInfoValidityPeriodFieldPathBuilder) EndTime

func (RecoveryStoreShardingInfoValidityPeriodFieldPathBuilder) StartTime

type RecoveryStoreShardingInfoValidityPeriod_FieldPath

type RecoveryStoreShardingInfoValidityPeriod_FieldPath interface {
	gotenobject.FieldPath
	Selector() RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector
	Get(source *RecoveryStoreShardingInfo_ValidityPeriod) []interface{}
	GetSingle(source *RecoveryStoreShardingInfo_ValidityPeriod) (interface{}, bool)
	ClearValue(item *RecoveryStoreShardingInfo_ValidityPeriod)

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

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

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPath

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPath(rawField string) RecoveryStoreShardingInfoValidityPeriod_FieldPath

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPath

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPath(rawField string) (RecoveryStoreShardingInfoValidityPeriod_FieldPath, error)

type RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue

type RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	RecoveryStoreShardingInfoValidityPeriod_FieldPath
	ContainsValue(*RecoveryStoreShardingInfo_ValidityPeriod) bool
}

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

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue(pathStr, valueStr string) RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue(pathStr, valueStr string) (RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue, error)

ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues

type RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	RecoveryStoreShardingInfoValidityPeriod_FieldPath
}

RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues allows storing slice of values for ValidityPeriod fields according to their type

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues(pathStr, valuesStr string) RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues(pathStr, valuesStr string) (RecoveryStoreShardingInfoValidityPeriod_FieldPathArrayOfValues, error)

type RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector

type RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector int32
const (
	RecoveryStoreShardingInfoValidityPeriod_FieldPathSelectorStartTime RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector = 0
	RecoveryStoreShardingInfoValidityPeriod_FieldPathSelectorEndTime   RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector = 1
)

func (RecoveryStoreShardingInfoValidityPeriod_FieldPathSelector) String

type RecoveryStoreShardingInfoValidityPeriod_FieldPathValue

type RecoveryStoreShardingInfoValidityPeriod_FieldPathValue interface {
	RecoveryStoreShardingInfoValidityPeriod_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **RecoveryStoreShardingInfo_ValidityPeriod)
	CompareWith(*RecoveryStoreShardingInfo_ValidityPeriod) (cmp int, comparable bool)
}

RecoveryStoreShardingInfoValidityPeriod_FieldPathValue allows storing values for ValidityPeriod fields according to their type

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathValue

func MustParseRecoveryStoreShardingInfoValidityPeriod_FieldPathValue(pathStr, valueStr string) RecoveryStoreShardingInfoValidityPeriod_FieldPathValue

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathValue

func ParseRecoveryStoreShardingInfoValidityPeriod_FieldPathValue(pathStr, valueStr string) (RecoveryStoreShardingInfoValidityPeriod_FieldPathValue, error)

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath

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

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) ClearValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) ClearValueRaw

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) Get

Get returns all values pointed by specific field from source RecoveryStoreShardingInfo_ValidityPeriod

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) GetRaw

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) GetSingle

GetSingle returns value pointed by specific field of from source RecoveryStoreShardingInfo_ValidityPeriod

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) GetSingleRaw

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

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) Selector

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) SplitIntoTerminalIPaths

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) String

String returns path representation in proto convention

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithIArrayItemValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithIArrayOfValues

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithIValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithRawIArrayItemValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithRawIArrayOfValues

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath) WithRawIValue

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue struct {
	RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue) GetRawItemValue

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

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue) GetSingle

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayItemValue) GetSingleRaw

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayOfValues

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayOfValues struct {
	RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayOfValues) AsEndTimeArrayOfValues

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayOfValues) AsStartTimeArrayOfValues

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathArrayOfValues) GetRawValues

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

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue

type RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue struct {
	RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) AsEndTimeValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) AsStartTimeValue

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue' with the value under path in 'RecoveryStoreShardingInfo_ValidityPeriod'.

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) CompareWithRaw

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) GetRawValue

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

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object ValidityPeriod

func (*RecoveryStoreShardingInfoValidityPeriod_FieldTerminalPathValue) SetToRaw

type RecoveryStoreShardingInfo_FieldMask

type RecoveryStoreShardingInfo_FieldMask struct {
	Paths []RecoveryStoreShardingInfo_FieldPath
}

func FullRecoveryStoreShardingInfo_FieldMask

func FullRecoveryStoreShardingInfo_FieldMask() *RecoveryStoreShardingInfo_FieldMask

func (*RecoveryStoreShardingInfo_FieldMask) AppendPath

func (*RecoveryStoreShardingInfo_FieldMask) AppendRawPath

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

func (*RecoveryStoreShardingInfo_FieldMask) DecodeFirestore

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

func (*RecoveryStoreShardingInfo_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*RecoveryStoreShardingInfo_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*RecoveryStoreShardingInfo_FieldMask) FromProtoFieldMask

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

func (*RecoveryStoreShardingInfo_FieldMask) GetPaths

func (*RecoveryStoreShardingInfo_FieldMask) GetRawPaths

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

func (*RecoveryStoreShardingInfo_FieldMask) IsFull

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) IsFull() bool

func (RecoveryStoreShardingInfo_FieldMask) Marshal

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

implement methods required by customType

func (RecoveryStoreShardingInfo_FieldMask) MarshalJSON

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

func (*RecoveryStoreShardingInfo_FieldMask) PathsCount

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) PathsCount() int

func (*RecoveryStoreShardingInfo_FieldMask) Project

func (*RecoveryStoreShardingInfo_FieldMask) ProjectRaw

func (*RecoveryStoreShardingInfo_FieldMask) ProtoMessage

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) ProtoMessage()

func (*RecoveryStoreShardingInfo_FieldMask) ProtoReflect

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

func (*RecoveryStoreShardingInfo_FieldMask) Reset

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) Reset()

func (*RecoveryStoreShardingInfo_FieldMask) Set

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) Set(target, source *RecoveryStoreShardingInfo)

func (*RecoveryStoreShardingInfo_FieldMask) SetFromCliFlag

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

func (*RecoveryStoreShardingInfo_FieldMask) SetRaw

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

func (*RecoveryStoreShardingInfo_FieldMask) Size

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) Size() int

func (*RecoveryStoreShardingInfo_FieldMask) String

func (fieldMask *RecoveryStoreShardingInfo_FieldMask) String() string

func (*RecoveryStoreShardingInfo_FieldMask) Subtract

func (*RecoveryStoreShardingInfo_FieldMask) SubtractRaw

func (*RecoveryStoreShardingInfo_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*RecoveryStoreShardingInfo_FieldMask) Unmarshal

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

func (*RecoveryStoreShardingInfo_FieldMask) UnmarshalJSON

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

type RecoveryStoreShardingInfo_FieldPath

type RecoveryStoreShardingInfo_FieldPath interface {
	gotenobject.FieldPath
	Selector() RecoveryStoreShardingInfo_FieldPathSelector
	Get(source *RecoveryStoreShardingInfo) []interface{}
	GetSingle(source *RecoveryStoreShardingInfo) (interface{}, bool)
	ClearValue(item *RecoveryStoreShardingInfo)

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

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

func MustParseRecoveryStoreShardingInfo_FieldPath

func MustParseRecoveryStoreShardingInfo_FieldPath(rawField string) RecoveryStoreShardingInfo_FieldPath

func ParseRecoveryStoreShardingInfo_FieldPath

func ParseRecoveryStoreShardingInfo_FieldPath(rawField string) (RecoveryStoreShardingInfo_FieldPath, error)

type RecoveryStoreShardingInfo_FieldPathArrayItemValue

type RecoveryStoreShardingInfo_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	RecoveryStoreShardingInfo_FieldPath
	ContainsValue(*RecoveryStoreShardingInfo) bool
}

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

func MustParseRecoveryStoreShardingInfo_FieldPathArrayItemValue

func MustParseRecoveryStoreShardingInfo_FieldPathArrayItemValue(pathStr, valueStr string) RecoveryStoreShardingInfo_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfo_FieldPathArrayItemValue

func ParseRecoveryStoreShardingInfo_FieldPathArrayItemValue(pathStr, valueStr string) (RecoveryStoreShardingInfo_FieldPathArrayItemValue, error)

ParseRecoveryStoreShardingInfo_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type RecoveryStoreShardingInfo_FieldPathArrayOfValues

type RecoveryStoreShardingInfo_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	RecoveryStoreShardingInfo_FieldPath
}

RecoveryStoreShardingInfo_FieldPathArrayOfValues allows storing slice of values for RecoveryStoreShardingInfo fields according to their type

func MustParseRecoveryStoreShardingInfo_FieldPathArrayOfValues

func MustParseRecoveryStoreShardingInfo_FieldPathArrayOfValues(pathStr, valuesStr string) RecoveryStoreShardingInfo_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfo_FieldPathArrayOfValues

func ParseRecoveryStoreShardingInfo_FieldPathArrayOfValues(pathStr, valuesStr string) (RecoveryStoreShardingInfo_FieldPathArrayOfValues, error)

type RecoveryStoreShardingInfo_FieldPathSelector

type RecoveryStoreShardingInfo_FieldPathSelector int32
const (
	RecoveryStoreShardingInfo_FieldPathSelectorName           RecoveryStoreShardingInfo_FieldPathSelector = 0
	RecoveryStoreShardingInfo_FieldPathSelectorValidityPeriod RecoveryStoreShardingInfo_FieldPathSelector = 1
	RecoveryStoreShardingInfo_FieldPathSelectorSpec           RecoveryStoreShardingInfo_FieldPathSelector = 2
	RecoveryStoreShardingInfo_FieldPathSelectorMetadata       RecoveryStoreShardingInfo_FieldPathSelector = 3
)

func (RecoveryStoreShardingInfo_FieldPathSelector) String

type RecoveryStoreShardingInfo_FieldPathValue

type RecoveryStoreShardingInfo_FieldPathValue interface {
	RecoveryStoreShardingInfo_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **RecoveryStoreShardingInfo)
	CompareWith(*RecoveryStoreShardingInfo) (cmp int, comparable bool)
}

RecoveryStoreShardingInfo_FieldPathValue allows storing values for RecoveryStoreShardingInfo fields according to their type

func MustParseRecoveryStoreShardingInfo_FieldPathValue

func MustParseRecoveryStoreShardingInfo_FieldPathValue(pathStr, valueStr string) RecoveryStoreShardingInfo_FieldPathValue

func ParseRecoveryStoreShardingInfo_FieldPathValue

func ParseRecoveryStoreShardingInfo_FieldPathValue(pathStr, valueStr string) (RecoveryStoreShardingInfo_FieldPathValue, error)

type RecoveryStoreShardingInfo_FieldSubPath

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

func (*RecoveryStoreShardingInfo_FieldSubPath) AsMetadataSubPath

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

func (*RecoveryStoreShardingInfo_FieldSubPath) AsSpecSubPath

func (*RecoveryStoreShardingInfo_FieldSubPath) AsValidityPeriodSubPath

func (*RecoveryStoreShardingInfo_FieldSubPath) ClearValue

func (*RecoveryStoreShardingInfo_FieldSubPath) ClearValueRaw

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

func (*RecoveryStoreShardingInfo_FieldSubPath) Get

func (fps *RecoveryStoreShardingInfo_FieldSubPath) Get(source *RecoveryStoreShardingInfo) (values []interface{})

Get returns all values pointed by selected field from source RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfo_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*RecoveryStoreShardingInfo_FieldSubPath) GetRaw

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

func (*RecoveryStoreShardingInfo_FieldSubPath) GetSingle

func (fps *RecoveryStoreShardingInfo_FieldSubPath) GetSingle(source *RecoveryStoreShardingInfo) (interface{}, bool)

GetSingle returns value of selected field from source RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfo_FieldSubPath) GetSingleRaw

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

func (*RecoveryStoreShardingInfo_FieldSubPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*RecoveryStoreShardingInfo_FieldSubPath) JSONString

JSONString returns path representation is JSON convention

func (*RecoveryStoreShardingInfo_FieldSubPath) Selector

func (*RecoveryStoreShardingInfo_FieldSubPath) SplitIntoTerminalIPaths

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

func (*RecoveryStoreShardingInfo_FieldSubPath) String

String returns path representation in proto convention

func (*RecoveryStoreShardingInfo_FieldSubPath) WithIArrayItemValue

func (*RecoveryStoreShardingInfo_FieldSubPath) WithIArrayOfValues

func (*RecoveryStoreShardingInfo_FieldSubPath) WithIValue

func (*RecoveryStoreShardingInfo_FieldSubPath) WithRawIArrayItemValue

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

func (*RecoveryStoreShardingInfo_FieldSubPath) WithRawIArrayOfValues

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

func (*RecoveryStoreShardingInfo_FieldSubPath) WithRawIValue

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

type RecoveryStoreShardingInfo_FieldSubPathArrayItemValue

type RecoveryStoreShardingInfo_FieldSubPathArrayItemValue struct {
	RecoveryStoreShardingInfo_FieldPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*RecoveryStoreShardingInfo_FieldSubPathArrayItemValue) AsSpecPathItemValue

func (*RecoveryStoreShardingInfo_FieldSubPathArrayItemValue) AsValidityPeriodPathItemValue

func (*RecoveryStoreShardingInfo_FieldSubPathArrayItemValue) ContainsValue

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

func (*RecoveryStoreShardingInfo_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type RecoveryStoreShardingInfo_FieldSubPathArrayOfValues

type RecoveryStoreShardingInfo_FieldSubPathArrayOfValues struct {
	RecoveryStoreShardingInfo_FieldPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

func (*RecoveryStoreShardingInfo_FieldSubPathArrayOfValues) AsSpecPathArrayOfValues

func (*RecoveryStoreShardingInfo_FieldSubPathArrayOfValues) AsValidityPeriodPathArrayOfValues

func (*RecoveryStoreShardingInfo_FieldSubPathArrayOfValues) GetRawValues

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

type RecoveryStoreShardingInfo_FieldSubPathValue

type RecoveryStoreShardingInfo_FieldSubPathValue struct {
	RecoveryStoreShardingInfo_FieldPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldSubPathValue) AsMetadataPathValue

func (*RecoveryStoreShardingInfo_FieldSubPathValue) AsSpecPathValue

func (*RecoveryStoreShardingInfo_FieldSubPathValue) AsValidityPeriodPathValue

func (*RecoveryStoreShardingInfo_FieldSubPathValue) CompareWith

func (*RecoveryStoreShardingInfo_FieldSubPathValue) CompareWithRaw

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

func (*RecoveryStoreShardingInfo_FieldSubPathValue) GetRawValue

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

func (*RecoveryStoreShardingInfo_FieldSubPathValue) SetTo

func (*RecoveryStoreShardingInfo_FieldSubPathValue) SetToRaw

type RecoveryStoreShardingInfo_FieldTerminalPath

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) ClearValue

func (*RecoveryStoreShardingInfo_FieldTerminalPath) ClearValueRaw

func (*RecoveryStoreShardingInfo_FieldTerminalPath) Get

func (fp *RecoveryStoreShardingInfo_FieldTerminalPath) Get(source *RecoveryStoreShardingInfo) (values []interface{})

Get returns all values pointed by specific field from source RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfo_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*RecoveryStoreShardingInfo_FieldTerminalPath) GetRaw

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) GetSingle

func (fp *RecoveryStoreShardingInfo_FieldTerminalPath) GetSingle(source *RecoveryStoreShardingInfo) (interface{}, bool)

GetSingle returns value pointed by specific field of from source RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfo_FieldTerminalPath) GetSingleRaw

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*RecoveryStoreShardingInfo_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*RecoveryStoreShardingInfo_FieldTerminalPath) Selector

func (*RecoveryStoreShardingInfo_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) String

String returns path representation in proto convention

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithIArrayItemValue

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithIArrayOfValues

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithIValue

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithRawIArrayItemValue

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithRawIArrayOfValues

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

func (*RecoveryStoreShardingInfo_FieldTerminalPath) WithRawIValue

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

type RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue

type RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue struct {
	RecoveryStoreShardingInfo_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue) GetSingle

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues

type RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues struct {
	RecoveryStoreShardingInfo_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues) AsSpecArrayOfValues

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues) AsValidityPeriodArrayOfValues

func (*RecoveryStoreShardingInfo_FieldTerminalPathArrayOfValues) GetRawValues

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

type RecoveryStoreShardingInfo_FieldTerminalPathValue

type RecoveryStoreShardingInfo_FieldTerminalPathValue struct {
	RecoveryStoreShardingInfo_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) AsMetadataValue

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) AsNameValue

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) AsSpecValue

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) AsValidityPeriodValue

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'RecoveryStoreShardingInfo_FieldTerminalPathValue' with the value under path in 'RecoveryStoreShardingInfo'.

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) CompareWithRaw

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) GetRawValue

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

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

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object RecoveryStoreShardingInfo

func (*RecoveryStoreShardingInfo_FieldTerminalPathValue) SetToRaw

type RecoveryStoreShardingInfo_ShardingSpec

type RecoveryStoreShardingInfo_ShardingSpec struct {

	// Defines period of time series points in a single blob.
	TsBlobPeriod *durationpb.Duration `protobuf:"bytes,1,opt,name=ts_blob_period,json=tsBlobPeriod,proto3" json:"ts_blob_period,omitempty" firestore:"tsBlobPeriod"`
	// Number of shards (by key) in given shard period
	ShardsCount uint32 `protobuf:"varint,2,opt,name=shards_count,json=shardsCount,proto3" json:"shards_count,omitempty" firestore:"shardsCount"`
	// contains filtered or unexported fields
}

Sharding spec defines how time series points is divided across two dimensions: key (shards_count) and time (ts_blob_period).

func (*RecoveryStoreShardingInfo_ShardingSpec) Clone

func (*RecoveryStoreShardingInfo_ShardingSpec) CloneRaw

func (*RecoveryStoreShardingInfo_ShardingSpec) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfo_ShardingSpec.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfo_ShardingSpec) GetShardsCount

func (m *RecoveryStoreShardingInfo_ShardingSpec) GetShardsCount() uint32

func (*RecoveryStoreShardingInfo_ShardingSpec) GetTsBlobPeriod

func (*RecoveryStoreShardingInfo_ShardingSpec) GotenMessage

func (*RecoveryStoreShardingInfo_ShardingSpec) GotenObjectExt

func (o *RecoveryStoreShardingInfo_ShardingSpec) GotenObjectExt()

func (*RecoveryStoreShardingInfo_ShardingSpec) GotenValidate

func (obj *RecoveryStoreShardingInfo_ShardingSpec) GotenValidate() error

func (*RecoveryStoreShardingInfo_ShardingSpec) MakeFullFieldMask

func (*RecoveryStoreShardingInfo_ShardingSpec) MakeRawDiffFieldMask

func (*RecoveryStoreShardingInfo_ShardingSpec) MakeRawFullFieldMask

func (*RecoveryStoreShardingInfo_ShardingSpec) Marshal

func (*RecoveryStoreShardingInfo_ShardingSpec) MarshalJSON

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

func (*RecoveryStoreShardingInfo_ShardingSpec) Merge

func (*RecoveryStoreShardingInfo_ShardingSpec) MergeRaw

func (*RecoveryStoreShardingInfo_ShardingSpec) ProtoMessage

func (*RecoveryStoreShardingInfo_ShardingSpec) ProtoReflect

func (*RecoveryStoreShardingInfo_ShardingSpec) Reset

func (*RecoveryStoreShardingInfo_ShardingSpec) SetShardsCount

func (m *RecoveryStoreShardingInfo_ShardingSpec) SetShardsCount(fv uint32)

func (*RecoveryStoreShardingInfo_ShardingSpec) SetTsBlobPeriod

func (*RecoveryStoreShardingInfo_ShardingSpec) String

func (*RecoveryStoreShardingInfo_ShardingSpec) Unmarshal

func (*RecoveryStoreShardingInfo_ShardingSpec) UnmarshalJSON

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

type RecoveryStoreShardingInfo_ShardingSpecPathSelectorShardsCount

type RecoveryStoreShardingInfo_ShardingSpecPathSelectorShardsCount struct{}

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorShardsCount) FieldPath

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorShardsCount) WithArrayOfValues

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorShardsCount) WithValue

type RecoveryStoreShardingInfo_ShardingSpecPathSelectorTsBlobPeriod

type RecoveryStoreShardingInfo_ShardingSpecPathSelectorTsBlobPeriod struct{}

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorTsBlobPeriod) FieldPath

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorTsBlobPeriod) WithArrayOfValues

func (RecoveryStoreShardingInfo_ShardingSpecPathSelectorTsBlobPeriod) WithValue

type RecoveryStoreShardingInfo_ShardingSpec_FieldMask

type RecoveryStoreShardingInfo_ShardingSpec_FieldMask struct {
	Paths []RecoveryStoreShardingInfoShardingSpec_FieldPath
}

func FullRecoveryStoreShardingInfo_ShardingSpec_FieldMask

func FullRecoveryStoreShardingInfo_ShardingSpec_FieldMask() *RecoveryStoreShardingInfo_ShardingSpec_FieldMask

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) AppendPath

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) AppendRawPath

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) DecodeFirestore

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

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) EncodeFirestore

firestore encoding/decoding integration

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) FromProtoFieldMask

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

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) GetPaths

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) GetRawPaths

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) IsFull

func (RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Marshal

implement methods required by customType

func (RecoveryStoreShardingInfo_ShardingSpec_FieldMask) MarshalJSON

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

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) PathsCount

func (fieldMask *RecoveryStoreShardingInfo_ShardingSpec_FieldMask) PathsCount() int

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Project

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) ProjectRaw

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) ProtoMessage

func (fieldMask *RecoveryStoreShardingInfo_ShardingSpec_FieldMask) ProtoMessage()

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) ProtoReflect

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Reset

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Set

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) SetFromCliFlag

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

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) SetRaw

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Size

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) String

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) SubtractRaw

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) ToProtoFieldMask

ToFieldMask is used for proto conversions

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) Unmarshal

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

func (*RecoveryStoreShardingInfo_ShardingSpec_FieldMask) UnmarshalJSON

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

type RecoveryStoreShardingInfo_ValidityPeriod

type RecoveryStoreShardingInfo_ValidityPeriod struct {

	// Start time of validity period.
	StartTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty" firestore:"startTime"`
	// End time of validity period.
	EndTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty" firestore:"endTime"`
	// contains filtered or unexported fields
}

Validity period specifies for which period of time this sharding spec is valid.

func (*RecoveryStoreShardingInfo_ValidityPeriod) Clone

func (*RecoveryStoreShardingInfo_ValidityPeriod) CloneRaw

func (*RecoveryStoreShardingInfo_ValidityPeriod) Descriptor

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

Deprecated, Use RecoveryStoreShardingInfo_ValidityPeriod.ProtoReflect.Descriptor instead.

func (*RecoveryStoreShardingInfo_ValidityPeriod) GetEndTime

func (*RecoveryStoreShardingInfo_ValidityPeriod) GetStartTime

func (*RecoveryStoreShardingInfo_ValidityPeriod) GotenMessage

func (*RecoveryStoreShardingInfo_ValidityPeriod) GotenObjectExt

func (o *RecoveryStoreShardingInfo_ValidityPeriod) GotenObjectExt()

func (*RecoveryStoreShardingInfo_ValidityPeriod) GotenValidate

func (obj *RecoveryStoreShardingInfo_ValidityPeriod) GotenValidate() error

func (*RecoveryStoreShardingInfo_ValidityPeriod) MakeFullFieldMask

func (*RecoveryStoreShardingInfo_ValidityPeriod) MakeRawDiffFieldMask

func (*RecoveryStoreShardingInfo_ValidityPeriod) MakeRawFullFieldMask

func (*RecoveryStoreShardingInfo_ValidityPeriod) Marshal

func (*RecoveryStoreShardingInfo_ValidityPeriod) MarshalJSON

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

func (*RecoveryStoreShardingInfo_ValidityPeriod) Merge

func (*RecoveryStoreShardingInfo_ValidityPeriod) MergeRaw

func (*RecoveryStoreShardingInfo_ValidityPeriod) ProtoMessage

func (*RecoveryStoreShardingInfo_ValidityPeriod) ProtoReflect

func (*RecoveryStoreShardingInfo_ValidityPeriod) Reset

func (*RecoveryStoreShardingInfo_ValidityPeriod) SetEndTime

func (*RecoveryStoreShardingInfo_ValidityPeriod) SetStartTime

func (*RecoveryStoreShardingInfo_ValidityPeriod) String

func (*RecoveryStoreShardingInfo_ValidityPeriod) Unmarshal

func (*RecoveryStoreShardingInfo_ValidityPeriod) UnmarshalJSON

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

type RecoveryStoreShardingInfo_ValidityPeriodPathSelectorEndTime

type RecoveryStoreShardingInfo_ValidityPeriodPathSelectorEndTime struct{}

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorEndTime) FieldPath

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorEndTime) WithArrayOfValues

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorEndTime) WithValue

type RecoveryStoreShardingInfo_ValidityPeriodPathSelectorStartTime

type RecoveryStoreShardingInfo_ValidityPeriodPathSelectorStartTime struct{}

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorStartTime) FieldPath

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorStartTime) WithArrayOfValues

func (RecoveryStoreShardingInfo_ValidityPeriodPathSelectorStartTime) WithValue

type RecoveryStoreShardingInfo_ValidityPeriod_FieldMask

type RecoveryStoreShardingInfo_ValidityPeriod_FieldMask struct {
	Paths []RecoveryStoreShardingInfoValidityPeriod_FieldPath
}

func FullRecoveryStoreShardingInfo_ValidityPeriod_FieldMask

func FullRecoveryStoreShardingInfo_ValidityPeriod_FieldMask() *RecoveryStoreShardingInfo_ValidityPeriod_FieldMask

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) AppendPath

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) AppendRawPath

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) DecodeFirestore

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) EncodeFirestore

firestore encoding/decoding integration

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) FilterInputFields

FilterInputFields generates copy of field paths with output_only field paths removed

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) FromProtoFieldMask

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

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) GetPaths

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) GetRawPaths

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) IsFull

func (RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Marshal

implement methods required by customType

func (RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) MarshalJSON

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

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) PathsCount

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Project

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) ProjectRaw

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) ProtoMessage

func (fieldMask *RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) ProtoMessage()

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) ProtoReflect

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Reset

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Set

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) SetFromCliFlag

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

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) SetRaw

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Size

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) String

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) SubtractRaw

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) ToProtoFieldMask

ToFieldMask is used for proto conversions

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) Unmarshal

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

func (*RecoveryStoreShardingInfo_ValidityPeriod_FieldMask) UnmarshalJSON

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

type Reference

type Reference struct {
	Name
	// contains filtered or unexported fields
}

func MakeReference

func MakeReference(name *Name, recoveryStoreShardingInfo *RecoveryStoreShardingInfo) (*Reference, error)

func MustParseReference

func MustParseReference(name string) *Reference

func ParseReference

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

func (*Reference) ClearCached

func (ref *Reference) ClearCached()

func (*Reference) FullyQualifiedName

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

func (*Reference) GetIParentName

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

func (*Reference) GetIUnderlyingParentName

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

func (*Reference) GetIdParts

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

func (*Reference) GetPattern

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

func (*Reference) GetRawResource

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

func (*Reference) GetRecoveryStoreShardingInfo

func (ref *Reference) GetRecoveryStoreShardingInfo() *RecoveryStoreShardingInfo

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

func (*Reference) ResolveRaw

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

func (*Reference) Resolved

func (ref *Reference) Resolved() bool

func (*Reference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Reference) String

func (ref *Reference) String() string

type WatchQuery

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

func (*WatchQuery) GetMaximumChunkSize

func (q *WatchQuery) GetMaximumChunkSize() int

func (*WatchQuery) GetResumeToken

func (q *WatchQuery) GetResumeToken() string

func (*WatchQuery) GetStartingTime

func (q *WatchQuery) GetStartingTime() *timestamppb.Timestamp

func (*WatchQuery) GetWatchType

func (q *WatchQuery) GetWatchType() watch_type.WatchType

func (*WatchQuery) SetMaximumChunkSize

func (q *WatchQuery) SetMaximumChunkSize(chunkSize int)

func (*WatchQuery) SetResumeToken

func (q *WatchQuery) SetResumeToken(token string)

func (*WatchQuery) SetStartingTime

func (q *WatchQuery) SetStartingTime(startingTime *timestamppb.Timestamp)

func (*WatchQuery) SetWatchType

func (q *WatchQuery) SetWatchType(watchType watch_type.WatchType)

func (*WatchQuery) String

func (q *WatchQuery) String() string

Jump to

Keyboard shortcuts

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