tpm_attestation_cert

package
v1.0.41 Latest Latest
Warning

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

Go to latest
Published: May 1, 2024 License: Apache-2.0 Imports: 40 Imported by: 0

Documentation

Index

Constants

View Source
const (
	NamePattern_Project = "projects/{project}/tpmAttestationCerts/{tpm_attestation_cert}"
)

Variables

This section is empty.

Functions

func AsAnyCastAccess

func AsAnyCastAccess(access TpmAttestationCertAccess) gotenresource.Access

Types

type Descriptor

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

func GetDescriptor

func GetDescriptor() *Descriptor

func (*Descriptor) CanBeParentless

func (d *Descriptor) CanBeParentless() bool

func (*Descriptor) GetNameDescriptor

func (d *Descriptor) GetNameDescriptor() *gotenresource.NameDescriptor

func (*Descriptor) GetParentResDescriptors

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

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

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 TpmAttestationCert_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 *TpmAttestationCert) bool

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

func AndFilterConditions

func AndFilterConditions(conds ...FilterCondition) FilterCondition

type FilterConditionCompare

type FilterConditionCompare struct {
	Operator filterParser.CompareOperator
	TpmAttestationCert_FieldPathValue
}

func (*FilterConditionCompare) And

func (*FilterConditionCompare) ConditionCompare

func (cond *FilterConditionCompare) ConditionCompare()

func (*FilterConditionCompare) Evaluate

func (cond *FilterConditionCompare) Evaluate(res *TpmAttestationCert) bool

func (*FilterConditionCompare) EvaluateRaw

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

func (*FilterConditionCompare) GetOperator

func (*FilterConditionCompare) GetRawFieldPath

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

func (*FilterConditionCompare) GetRawFieldPathValue

func (cond *FilterConditionCompare) GetRawFieldPathValue() gotenobject.FieldPathValue

func (*FilterConditionCompare) Satisfies

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

func (*FilterConditionCompare) SatisfiesRaw

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

func (*FilterConditionCompare) SpecifiesFieldPath

func (cond *FilterConditionCompare) SpecifiesFieldPath(fp TpmAttestationCert_FieldPath) bool

func (*FilterConditionCompare) SpecifiesRawFieldPath

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

func (*FilterConditionCompare) String

func (cond *FilterConditionCompare) String() string

type FilterConditionComposite

type FilterConditionComposite struct {
	Operator   filterParser.CompositeOperator
	Conditions []FilterCondition
}

func (*FilterConditionComposite) And

func (*FilterConditionComposite) ConditionComposite

func (cond *FilterConditionComposite) ConditionComposite()

func (*FilterConditionComposite) Evaluate

func (cond *FilterConditionComposite) Evaluate(res *TpmAttestationCert) bool

func (*FilterConditionComposite) EvaluateRaw

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

func (*FilterConditionComposite) GetOperator

func (*FilterConditionComposite) GetSubConditions

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

func (*FilterConditionComposite) Satisfies

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

func (*FilterConditionComposite) SatisfiesRaw

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

func (*FilterConditionComposite) SpecifiesFieldPath

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

func (*FilterConditionComposite) SpecifiesRawFieldPath

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

func (*FilterConditionComposite) String

func (cond *FilterConditionComposite) String() string

type FilterConditionContains

func (*FilterConditionContains) And

func (*FilterConditionContains) ConditionContains

func (cond *FilterConditionContains) ConditionContains()

func (*FilterConditionContains) ConditionContainsType

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

func (*FilterConditionContains) Evaluate

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

func (*FilterConditionContains) EvaluateRaw

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

func (*FilterConditionContains) GetFieldPath

func (*FilterConditionContains) GetRawFieldPath

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

func (*FilterConditionContains) GetRawFieldPathItemValue

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

func (*FilterConditionContains) GetRawFieldPathItemValues

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

func (*FilterConditionContains) Satisfies

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

func (*FilterConditionContains) SatisfiesRaw

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

func (*FilterConditionContains) SpecifiesFieldPath

func (cond *FilterConditionContains) SpecifiesFieldPath(fp TpmAttestationCert_FieldPath) bool

func (*FilterConditionContains) SpecifiesRawFieldPath

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

func (*FilterConditionContains) String

func (cond *FilterConditionContains) String() string

type FilterConditionIn

type FilterConditionIn struct {
	TpmAttestationCert_FieldPathArrayOfValues
}

func (*FilterConditionIn) And

func (*FilterConditionIn) ConditionIn

func (cond *FilterConditionIn) ConditionIn()

func (*FilterConditionIn) Evaluate

func (cond *FilterConditionIn) Evaluate(res *TpmAttestationCert) 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 TpmAttestationCert_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 TpmAttestationCert_FieldPath
}

func (*FilterConditionIsNaN) And

func (*FilterConditionIsNaN) ConditionIsNaN

func (cond *FilterConditionIsNaN) ConditionIsNaN()

func (*FilterConditionIsNaN) Evaluate

func (cond *FilterConditionIsNaN) Evaluate(res *TpmAttestationCert) bool

func (*FilterConditionIsNaN) EvaluateRaw

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

func (*FilterConditionIsNaN) GetRawFieldPath

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

func (*FilterConditionIsNaN) Satisfies

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

func (*FilterConditionIsNaN) SatisfiesRaw

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

func (*FilterConditionIsNaN) SpecifiesFieldPath

func (cond *FilterConditionIsNaN) SpecifiesFieldPath(fp TpmAttestationCert_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 TpmAttestationCert_FieldPath
}

func (*FilterConditionIsNull) And

func (*FilterConditionIsNull) ConditionIsNull

func (cond *FilterConditionIsNull) ConditionIsNull()

func (*FilterConditionIsNull) Evaluate

func (cond *FilterConditionIsNull) Evaluate(res *TpmAttestationCert) bool

func (*FilterConditionIsNull) EvaluateRaw

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

func (*FilterConditionIsNull) GetRawFieldPath

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

func (*FilterConditionIsNull) NotNull

func (cond *FilterConditionIsNull) NotNull() bool

func (*FilterConditionIsNull) Satisfies

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

func (*FilterConditionIsNull) SatisfiesRaw

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

func (*FilterConditionIsNull) SpecifiesFieldPath

func (cond *FilterConditionIsNull) SpecifiesFieldPath(fp TpmAttestationCert_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 *TpmAttestationCert) 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 TpmAttestationCert_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 {
	TpmAttestationCert_FieldPathArrayOfValues
}

func (*FilterConditionNotIn) And

func (*FilterConditionNotIn) ConditionNotIn

func (cond *FilterConditionNotIn) ConditionNotIn()

func (*FilterConditionNotIn) Evaluate

func (cond *FilterConditionNotIn) Evaluate(res *TpmAttestationCert) bool

func (*FilterConditionNotIn) EvaluateRaw

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

func (*FilterConditionNotIn) GetRawFieldPath

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

func (*FilterConditionNotIn) GetRawFieldPathArrayOfValues

func (cond *FilterConditionNotIn) GetRawFieldPathArrayOfValues() gotenobject.FieldPathArrayOfValues

func (*FilterConditionNotIn) Satisfies

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

func (*FilterConditionNotIn) SatisfiesRaw

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

func (*FilterConditionNotIn) SpecifiesFieldPath

func (cond *FilterConditionNotIn) SpecifiesFieldPath(fp TpmAttestationCert_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      *TpmAttestationCert_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           *TpmAttestationCert_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
	TpmAttestationCertId string `firestore:"tpmAttestationCertId"`
}

func MustParseName

func MustParseName(name string) *Name

func ParseName

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

func ParseNameOrId

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

func (*Name) AsRawReference

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

func (*Name) AsReference

func (name *Name) AsReference() *Reference

func (*Name) ConvertToNative

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

func (*Name) ConvertToType

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

func (*Name) Equal

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

func (*Name) FullyQualifiedName

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

func (*Name) GetIParentName

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

func (*Name) GetIUnderlyingParentName

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

func (*Name) GetIdParts

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

func (*Name) GetPattern

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

func (*Name) GetProjectName

func (name *Name) GetProjectName() *project.Name

func (*Name) GetResourceDescriptor

func (name *Name) GetResourceDescriptor() gotenresource.Descriptor

func (*Name) GetSegments

func (name *Name) GetSegments() gotenresource.NameSegments

func (*Name) GotenEqual

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

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

func (*Name) HasTrait

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

func (*Name) IsFullyQualified

func (name *Name) IsFullyQualified() bool

func (*Name) IsSpecified

func (name *Name) IsSpecified() bool

func (*Name) Match

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

func (*Name) Matches

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

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

func (*Name) ParseProtoString

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

func (*Name) ProtoString

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

func (*Name) Receive

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

func (*Name) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*Name) SetFromSegments

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

func (*Name) String

func (name *Name) String() string

func (*Name) Type

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

func (*Name) TypeName

func (name *Name) TypeName() string

func (*Name) Value

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

type NameBuilder

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

func NewNameBuilder

func NewNameBuilder() *NameBuilder

func (*NameBuilder) Name

func (b *NameBuilder) Name() *Name

func (*NameBuilder) Parent

func (b *NameBuilder) Parent() *ParentName

func (*NameBuilder) ParentReference

func (b *NameBuilder) ParentReference() *ParentReference

func (*NameBuilder) Reference

func (b *NameBuilder) Reference() *Reference

func (*NameBuilder) SetId

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

func (*NameBuilder) SetProject

func (b *NameBuilder) SetProject(parent *project.Name) *NameBuilder

func (*NameBuilder) SetProjectId

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

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

func (*OrderBy) CompareRaw

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

func (*OrderBy) GetFieldMask

func (orderBy *OrderBy) GetFieldMask() *TpmAttestationCert_FieldMask

func (*OrderBy) GetOrderByFields

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

func (*OrderBy) GetRawFieldMask

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

func (*OrderBy) InsertSorted

func (orderBy *OrderBy) InsertSorted(sorted TpmAttestationCertList, elem *TpmAttestationCert) (TpmAttestationCertList, int)

func (*OrderBy) InsertSortedRaw

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

func (*OrderBy) ParseProtoString

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

func (*OrderBy) ProtoString

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

func (*OrderBy) SetFromCliFlag

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

func (*OrderBy) Sort

func (orderBy *OrderBy) Sort(results TpmAttestationCertList)

func (*OrderBy) SortRaw

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

func (*OrderBy) String

func (orderBy *OrderBy) String() string

type OrderByField

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

func (*OrderByField) GetDirection

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

func (*OrderByField) GetFieldPath

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

type PagerCursor

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

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

func (*PagerCursor) GetInclusion

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

func (*PagerCursor) GetPageDirection

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

func (*PagerCursor) GetValue

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

func (*PagerCursor) IsEmpty

func (cursor *PagerCursor) IsEmpty() bool

func (*PagerCursor) ParseProtoString

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

func (*PagerCursor) ProtoString

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

func (*PagerCursor) SetCursorValue

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

func (*PagerCursor) SetFromCliFlag

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

func (*PagerCursor) SetInclusion

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

func (*PagerCursor) SetPageDirection

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

func (*PagerCursor) String

func (cursor *PagerCursor) String() string

type PagerQuery

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

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

func MakePagerQuery

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

MakePagerQuery builds pager from API data and applies defaults

func (*PagerQuery) GetCursor

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

func (*PagerQuery) GetLimit

func (p *PagerQuery) GetLimit() int

func (*PagerQuery) GetOrderBy

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

func (*PagerQuery) GetPeekForward

func (p *PagerQuery) GetPeekForward() bool

func (*PagerQuery) GetResourceDescriptor

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

func (*PagerQuery) PageDirection

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

func (*PagerQuery) SetCursor

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

func (*PagerQuery) SetLimit

func (p *PagerQuery) SetLimit(limit int)

func (*PagerQuery) SetOrderBy

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

func (*PagerQuery) SetPageDirection

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

func (*PagerQuery) SetPeekForward

func (p *PagerQuery) SetPeekForward(peekForward bool)

type ParentName

type ParentName struct {
	NamePattern
	ProjectId string `firestore:"projectId"`
}

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

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

func (*ParentName) ConvertToType

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

func (*ParentName) DescendsFrom

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

func (*ParentName) Equal

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

func (*ParentName) FullyQualifiedName

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

func (*ParentName) GetIParentName

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

func (*ParentName) GetIUnderlyingParentName

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

func (*ParentName) GetIdParts

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

func (*ParentName) GetPattern

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

func (*ParentName) GetProjectName

func (name *ParentName) GetProjectName() *project.Name

func (*ParentName) GetResourceDescriptor

func (name *ParentName) GetResourceDescriptor() gotenresource.Descriptor

func (*ParentName) GetSegments

func (name *ParentName) GetSegments() gotenresource.NameSegments

func (*ParentName) GotenEqual

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

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

func (*ParentName) HasTrait

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

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

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

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

func (*ParentName) TypeName

func (name *ParentName) TypeName() string

func (*ParentName) Value

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

type ParentReference

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

func MakeParentReference

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

func MustParseParentReference

func MustParseParentReference(name string) *ParentReference

func ParseParentReference

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

func (*ParentReference) ClearCached

func (ref *ParentReference) ClearCached()

func (*ParentReference) GetIParentName

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

func (*ParentReference) GetIUnderlyingParentName

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

func (*ParentReference) GetIdParts

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

func (*ParentReference) GetPattern

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

func (*ParentReference) GetProject

func (ref *ParentReference) GetProject() *project.Project

func (*ParentReference) GetProjectReference

func (ref *ParentReference) GetProjectReference() *project.Reference

func (*ParentReference) GetRawResource

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

func (*ParentReference) GetResourceDescriptor

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

func (*ParentReference) GetSegments

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

func (*ParentReference) GetUnderlyingReference

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

func (*ParentReference) GotenEqual

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

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

func (*ParentReference) IsFullyQualified

func (ref *ParentReference) IsFullyQualified() bool

func (*ParentReference) IsSpecified

func (ref *ParentReference) IsSpecified() bool

func (*ParentReference) Matches

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

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

func (*ParentReference) ParseProtoString

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

func (*ParentReference) ProtoString

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

func (*ParentReference) ResolveRaw

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

func (*ParentReference) Resolved

func (ref *ParentReference) Resolved() bool

func (*ParentReference) SetFromCliFlag

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

implement CustomTypeCliValue method

func (*ParentReference) String

func (ref *ParentReference) String() string

type QueryResultChange

type QueryResultChange struct {
	Changes        []*TpmAttestationCertChange
	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 {
	TpmAttestationCerts []*TpmAttestationCert
	PrevPageCursor      *PagerCursor
	NextPageCursor      *PagerCursor
	TotalResultsCount   int32
	CurrentOffset       int32
}

func (*QueryResultSnapshot) GetNextPageCursor

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

func (*QueryResultSnapshot) GetPagingInfo

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

func (*QueryResultSnapshot) GetPrevPageCursor

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

func (*QueryResultSnapshot) GetResults

func (*QueryResultSnapshot) SetCursors

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

func (*QueryResultSnapshot) SetPagingInfo

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

func (*QueryResultSnapshot) SetResults

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

type Reference

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

func MakeReference

func MakeReference(name *Name, tpmAttestationCert *TpmAttestationCert) (*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) GetResourceDescriptor

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

func (*Reference) GetSegments

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

func (*Reference) GetTpmAttestationCert

func (ref *Reference) GetTpmAttestationCert() *TpmAttestationCert

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

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 TpmAttestationCert

type TpmAttestationCert struct {

	// Name of TpmAttestationCert
	// When creating a new instance, this field is optional and if not provided,
	// it will be generated automatically. Last ID segment must conform to the
	// following regex: [a-z][a-z0-9\\-]{0,28}[a-z0-9]
	Name *Name `protobuf:"bytes,1,opt,customtype=Name,name=name,proto3" json:"name,omitempty" firestore:"name"`
	// Metadata is an object with information like create, update and delete time
	// (for async deleted resources), has user labels/annotations, sharding
	// information, multi-region syncing information and may have non-schema
	// owners (useful for taking ownership of resources belonging to lower level
	// services by higher ones).
	Metadata     *meta.Meta `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty" firestore:"metadata"`
	DisplayName  string     `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty" firestore:"displayName"`
	Manufacturer string     `protobuf:"bytes,4,opt,name=manufacturer,proto3" json:"manufacturer,omitempty" firestore:"manufacturer"`
	// Should be in the format "productname (sku)"
	ProductName           string `protobuf:"bytes,5,opt,name=product_name,json=productName,proto3" json:"product_name,omitempty" firestore:"productName"`
	TpmManufacturerCaCert string `` /* 162-byte string literal not displayed */
	IdevidIssuerCaCert    string `` /* 150-byte string literal not displayed */
	LdevidIssuerCaCert    string `` /* 150-byte string literal not displayed */
	// contains filtered or unexported fields
}

TpmAttestationCert Resource

func (*TpmAttestationCert) Clone

func (*TpmAttestationCert) CloneRaw

func (*TpmAttestationCert) Descriptor

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

Deprecated, Use TpmAttestationCert.ProtoReflect.Descriptor instead.

func (*TpmAttestationCert) EnsureMetadata

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

func (*TpmAttestationCert) GetDisplayName

func (m *TpmAttestationCert) GetDisplayName() string

func (*TpmAttestationCert) GetIdevidIssuerCaCert

func (m *TpmAttestationCert) GetIdevidIssuerCaCert() string

func (*TpmAttestationCert) GetLdevidIssuerCaCert

func (m *TpmAttestationCert) GetLdevidIssuerCaCert() string

func (*TpmAttestationCert) GetManufacturer

func (m *TpmAttestationCert) GetManufacturer() string

func (*TpmAttestationCert) GetMetadata

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

func (*TpmAttestationCert) GetName

func (m *TpmAttestationCert) GetName() *Name

func (*TpmAttestationCert) GetProductName

func (m *TpmAttestationCert) GetProductName() string

func (*TpmAttestationCert) GetRawName

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

func (*TpmAttestationCert) GetResourceDescriptor

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

func (*TpmAttestationCert) GetTpmManufacturerCaCert

func (m *TpmAttestationCert) GetTpmManufacturerCaCert() string

func (*TpmAttestationCert) GotenMessage

func (*TpmAttestationCert) GotenMessage()

func (*TpmAttestationCert) GotenObjectExt

func (o *TpmAttestationCert) GotenObjectExt()

func (*TpmAttestationCert) GotenValidate

func (obj *TpmAttestationCert) GotenValidate() error

func (*TpmAttestationCert) MakeDiffFieldMask

func (*TpmAttestationCert) MakeFullFieldMask

func (o *TpmAttestationCert) MakeFullFieldMask() *TpmAttestationCert_FieldMask

func (*TpmAttestationCert) MakeRawDiffFieldMask

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

func (*TpmAttestationCert) MakeRawFullFieldMask

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

func (*TpmAttestationCert) Marshal

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

func (*TpmAttestationCert) MarshalJSON

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

func (*TpmAttestationCert) MaybePopulateDefaults

func (r *TpmAttestationCert) MaybePopulateDefaults() error

func (*TpmAttestationCert) Merge

func (o *TpmAttestationCert) Merge(source *TpmAttestationCert)

func (*TpmAttestationCert) MergeRaw

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

func (*TpmAttestationCert) ProtoMessage

func (*TpmAttestationCert) ProtoMessage()

func (*TpmAttestationCert) ProtoReflect

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

func (*TpmAttestationCert) Reset

func (m *TpmAttestationCert) Reset()

func (*TpmAttestationCert) SetDisplayName

func (m *TpmAttestationCert) SetDisplayName(fv string)

func (*TpmAttestationCert) SetIdevidIssuerCaCert

func (m *TpmAttestationCert) SetIdevidIssuerCaCert(fv string)

func (*TpmAttestationCert) SetLdevidIssuerCaCert

func (m *TpmAttestationCert) SetLdevidIssuerCaCert(fv string)

func (*TpmAttestationCert) SetManufacturer

func (m *TpmAttestationCert) SetManufacturer(fv string)

func (*TpmAttestationCert) SetMetadata

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

func (*TpmAttestationCert) SetName

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

func (*TpmAttestationCert) SetProductName

func (m *TpmAttestationCert) SetProductName(fv string)

func (*TpmAttestationCert) SetTpmManufacturerCaCert

func (m *TpmAttestationCert) SetTpmManufacturerCaCert(fv string)

func (*TpmAttestationCert) String

func (m *TpmAttestationCert) String() string

func (*TpmAttestationCert) Unmarshal

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

func (*TpmAttestationCert) UnmarshalJSON

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

type TpmAttestationCertAccess

type TpmAttestationCertAccess interface {
	GetTpmAttestationCert(context.Context, *GetQuery) (*TpmAttestationCert, error)
	BatchGetTpmAttestationCerts(context.Context, []*Reference, ...gotenresource.BatchGetOption) error
	QueryTpmAttestationCerts(context.Context, *ListQuery) (*QueryResultSnapshot, error)
	WatchTpmAttestationCert(context.Context, *GetQuery, func(*TpmAttestationCertChange) error) error
	WatchTpmAttestationCerts(context.Context, *WatchQuery, func(*QueryResultChange) error) error
	SaveTpmAttestationCert(context.Context, *TpmAttestationCert, ...gotenresource.SaveOption) error
	DeleteTpmAttestationCert(context.Context, *Reference, ...gotenresource.DeleteOption) error
}

type TpmAttestationCertChange

type TpmAttestationCertChange struct {

	// TpmAttestationCert change
	//
	// Types that are valid to be assigned to ChangeType:
	//	*TpmAttestationCertChange_Added_
	//	*TpmAttestationCertChange_Modified_
	//	*TpmAttestationCertChange_Current_
	//	*TpmAttestationCertChange_Removed_
	ChangeType isTpmAttestationCertChange_ChangeType `protobuf_oneof:"change_type"`
	// contains filtered or unexported fields
}

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

func (*TpmAttestationCertChange) Descriptor

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

Deprecated, Use TpmAttestationCertChange.ProtoReflect.Descriptor instead.

func (*TpmAttestationCertChange) GetAdded

func (*TpmAttestationCertChange) GetChangeType

func (m *TpmAttestationCertChange) GetChangeType() isTpmAttestationCertChange_ChangeType

func (*TpmAttestationCertChange) GetCurrent

func (*TpmAttestationCertChange) GetCurrentViewIndex

func (c *TpmAttestationCertChange) GetCurrentViewIndex() int32

func (*TpmAttestationCertChange) GetModified

func (*TpmAttestationCertChange) GetPreviousViewIndex

func (c *TpmAttestationCertChange) GetPreviousViewIndex() int32

func (*TpmAttestationCertChange) GetRawName

func (*TpmAttestationCertChange) GetRawResource

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

func (*TpmAttestationCertChange) GetRemoved

func (*TpmAttestationCertChange) GetTpmAttestationCert

func (c *TpmAttestationCertChange) GetTpmAttestationCert() *TpmAttestationCert

func (*TpmAttestationCertChange) GetTpmAttestationCertName

func (c *TpmAttestationCertChange) GetTpmAttestationCertName() *Name

func (*TpmAttestationCertChange) GotenMessage

func (*TpmAttestationCertChange) GotenMessage()

func (*TpmAttestationCertChange) GotenValidate

func (obj *TpmAttestationCertChange) GotenValidate() error

func (*TpmAttestationCertChange) IsAdd

func (c *TpmAttestationCertChange) IsAdd() bool

func (*TpmAttestationCertChange) IsCurrent

func (c *TpmAttestationCertChange) IsCurrent() bool

func (*TpmAttestationCertChange) IsDelete

func (c *TpmAttestationCertChange) IsDelete() bool

func (*TpmAttestationCertChange) IsModify

func (c *TpmAttestationCertChange) IsModify() bool

func (*TpmAttestationCertChange) Marshal

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

func (*TpmAttestationCertChange) MarshalJSON

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

func (*TpmAttestationCertChange) ProtoMessage

func (*TpmAttestationCertChange) ProtoMessage()

func (*TpmAttestationCertChange) ProtoReflect

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

func (*TpmAttestationCertChange) Reset

func (m *TpmAttestationCertChange) Reset()

func (*TpmAttestationCertChange) SetAdded

func (*TpmAttestationCertChange) SetAddedRaw

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

func (*TpmAttestationCertChange) SetChangeType

func (m *TpmAttestationCertChange) SetChangeType(ofv isTpmAttestationCertChange_ChangeType)

func (*TpmAttestationCertChange) SetCurrent

func (*TpmAttestationCertChange) SetCurrentRaw

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

func (*TpmAttestationCertChange) SetDeletedRaw

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

func (*TpmAttestationCertChange) SetModified

func (*TpmAttestationCertChange) SetModifiedRaw

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

func (*TpmAttestationCertChange) SetRemoved

func (*TpmAttestationCertChange) String

func (m *TpmAttestationCertChange) String() string

func (*TpmAttestationCertChange) Unmarshal

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

func (*TpmAttestationCertChange) UnmarshalJSON

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

type TpmAttestationCertChangeList

type TpmAttestationCertChangeList []*TpmAttestationCertChange

func (TpmAttestationCertChangeList) Append

func (TpmAttestationCertChangeList) AppendList

func (TpmAttestationCertChangeList) At

func (TpmAttestationCertChangeList) Length

func (l TpmAttestationCertChangeList) Length() int

func (TpmAttestationCertChangeList) Set

func (TpmAttestationCertChangeList) Slice

type TpmAttestationCertChangeMap

type TpmAttestationCertChangeMap map[Name]*TpmAttestationCertChange

func (TpmAttestationCertChangeMap) Delete

func (TpmAttestationCertChangeMap) ForEach

func (TpmAttestationCertChangeMap) Get

func (TpmAttestationCertChangeMap) Length

func (m TpmAttestationCertChangeMap) Length() int

func (TpmAttestationCertChangeMap) Set

type TpmAttestationCertChange_Added

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

TpmAttestationCert has been added to query view

func (*TpmAttestationCertChange_Added) Descriptor

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

Deprecated, Use TpmAttestationCertChange_Added.ProtoReflect.Descriptor instead.

func (*TpmAttestationCertChange_Added) GetTpmAttestationCert

func (m *TpmAttestationCertChange_Added) GetTpmAttestationCert() *TpmAttestationCert

func (*TpmAttestationCertChange_Added) GetViewIndex

func (m *TpmAttestationCertChange_Added) GetViewIndex() int32

func (*TpmAttestationCertChange_Added) GotenMessage

func (*TpmAttestationCertChange_Added) GotenMessage()

func (*TpmAttestationCertChange_Added) GotenValidate

func (obj *TpmAttestationCertChange_Added) GotenValidate() error

func (*TpmAttestationCertChange_Added) Marshal

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

func (*TpmAttestationCertChange_Added) MarshalJSON

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

func (*TpmAttestationCertChange_Added) ProtoMessage

func (*TpmAttestationCertChange_Added) ProtoMessage()

func (*TpmAttestationCertChange_Added) ProtoReflect

func (*TpmAttestationCertChange_Added) Reset

func (m *TpmAttestationCertChange_Added) Reset()

func (*TpmAttestationCertChange_Added) SetTpmAttestationCert

func (m *TpmAttestationCertChange_Added) SetTpmAttestationCert(fv *TpmAttestationCert)

func (*TpmAttestationCertChange_Added) SetViewIndex

func (m *TpmAttestationCertChange_Added) SetViewIndex(fv int32)

func (*TpmAttestationCertChange_Added) String

func (*TpmAttestationCertChange_Added) Unmarshal

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

func (*TpmAttestationCertChange_Added) UnmarshalJSON

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

type TpmAttestationCertChange_Added_

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

type TpmAttestationCertChange_Current

type TpmAttestationCertChange_Current struct {
	TpmAttestationCert *TpmAttestationCert `` /* 148-byte string literal not displayed */
	// contains filtered or unexported fields
}

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

func (*TpmAttestationCertChange_Current) Descriptor

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

Deprecated, Use TpmAttestationCertChange_Current.ProtoReflect.Descriptor instead.

func (*TpmAttestationCertChange_Current) GetTpmAttestationCert

func (m *TpmAttestationCertChange_Current) GetTpmAttestationCert() *TpmAttestationCert

func (*TpmAttestationCertChange_Current) GotenMessage

func (*TpmAttestationCertChange_Current) GotenMessage()

func (*TpmAttestationCertChange_Current) GotenValidate

func (obj *TpmAttestationCertChange_Current) GotenValidate() error

func (*TpmAttestationCertChange_Current) Marshal

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

func (*TpmAttestationCertChange_Current) MarshalJSON

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

func (*TpmAttestationCertChange_Current) ProtoMessage

func (*TpmAttestationCertChange_Current) ProtoMessage()

func (*TpmAttestationCertChange_Current) ProtoReflect

func (*TpmAttestationCertChange_Current) Reset

func (*TpmAttestationCertChange_Current) SetTpmAttestationCert

func (m *TpmAttestationCertChange_Current) SetTpmAttestationCert(fv *TpmAttestationCert)

func (*TpmAttestationCertChange_Current) String

func (*TpmAttestationCertChange_Current) Unmarshal

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

func (*TpmAttestationCertChange_Current) UnmarshalJSON

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

type TpmAttestationCertChange_Current_

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

type TpmAttestationCertChange_Modified

type TpmAttestationCertChange_Modified struct {

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

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

func (*TpmAttestationCertChange_Modified) Descriptor

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

Deprecated, Use TpmAttestationCertChange_Modified.ProtoReflect.Descriptor instead.

func (*TpmAttestationCertChange_Modified) GetFieldMask

func (*TpmAttestationCertChange_Modified) GetName

func (*TpmAttestationCertChange_Modified) GetPreviousViewIndex

func (m *TpmAttestationCertChange_Modified) GetPreviousViewIndex() int32

func (*TpmAttestationCertChange_Modified) GetTpmAttestationCert

func (m *TpmAttestationCertChange_Modified) GetTpmAttestationCert() *TpmAttestationCert

func (*TpmAttestationCertChange_Modified) GetViewIndex

func (m *TpmAttestationCertChange_Modified) GetViewIndex() int32

func (*TpmAttestationCertChange_Modified) GotenMessage

func (*TpmAttestationCertChange_Modified) GotenMessage()

func (*TpmAttestationCertChange_Modified) GotenValidate

func (obj *TpmAttestationCertChange_Modified) GotenValidate() error

func (*TpmAttestationCertChange_Modified) Marshal

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

func (*TpmAttestationCertChange_Modified) MarshalJSON

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

func (*TpmAttestationCertChange_Modified) ProtoMessage

func (*TpmAttestationCertChange_Modified) ProtoMessage()

func (*TpmAttestationCertChange_Modified) ProtoReflect

func (*TpmAttestationCertChange_Modified) Reset

func (*TpmAttestationCertChange_Modified) SetFieldMask

func (*TpmAttestationCertChange_Modified) SetName

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

func (*TpmAttestationCertChange_Modified) SetPreviousViewIndex

func (m *TpmAttestationCertChange_Modified) SetPreviousViewIndex(fv int32)

func (*TpmAttestationCertChange_Modified) SetTpmAttestationCert

func (m *TpmAttestationCertChange_Modified) SetTpmAttestationCert(fv *TpmAttestationCert)

func (*TpmAttestationCertChange_Modified) SetViewIndex

func (m *TpmAttestationCertChange_Modified) SetViewIndex(fv int32)

func (*TpmAttestationCertChange_Modified) String

func (*TpmAttestationCertChange_Modified) Unmarshal

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

func (*TpmAttestationCertChange_Modified) UnmarshalJSON

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

type TpmAttestationCertChange_Modified_

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

type TpmAttestationCertChange_Removed

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

func (*TpmAttestationCertChange_Removed) Descriptor

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

Deprecated, Use TpmAttestationCertChange_Removed.ProtoReflect.Descriptor instead.

func (*TpmAttestationCertChange_Removed) GetName

func (m *TpmAttestationCertChange_Removed) GetName() *Name

func (*TpmAttestationCertChange_Removed) GetViewIndex

func (m *TpmAttestationCertChange_Removed) GetViewIndex() int32

func (*TpmAttestationCertChange_Removed) GotenMessage

func (*TpmAttestationCertChange_Removed) GotenMessage()

func (*TpmAttestationCertChange_Removed) GotenValidate

func (obj *TpmAttestationCertChange_Removed) GotenValidate() error

func (*TpmAttestationCertChange_Removed) Marshal

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

func (*TpmAttestationCertChange_Removed) MarshalJSON

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

func (*TpmAttestationCertChange_Removed) ProtoMessage

func (*TpmAttestationCertChange_Removed) ProtoMessage()

func (*TpmAttestationCertChange_Removed) ProtoReflect

func (*TpmAttestationCertChange_Removed) Reset

func (*TpmAttestationCertChange_Removed) SetName

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

func (*TpmAttestationCertChange_Removed) SetViewIndex

func (m *TpmAttestationCertChange_Removed) SetViewIndex(fv int32)

func (*TpmAttestationCertChange_Removed) String

func (*TpmAttestationCertChange_Removed) Unmarshal

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

func (*TpmAttestationCertChange_Removed) UnmarshalJSON

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

type TpmAttestationCertChange_Removed_

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

type TpmAttestationCertFieldPathBuilder

type TpmAttestationCertFieldPathBuilder struct{}

func NewTpmAttestationCertFieldPathBuilder

func NewTpmAttestationCertFieldPathBuilder() TpmAttestationCertFieldPathBuilder

func (TpmAttestationCertFieldPathBuilder) DisplayName

func (TpmAttestationCertFieldPathBuilder) IdevidIssuerCaCert

func (TpmAttestationCertFieldPathBuilder) LdevidIssuerCaCert

func (TpmAttestationCertFieldPathBuilder) Manufacturer

func (TpmAttestationCertFieldPathBuilder) Metadata

func (TpmAttestationCertFieldPathBuilder) Name

func (TpmAttestationCertFieldPathBuilder) ProductName

func (TpmAttestationCertFieldPathBuilder) TpmManufacturerCaCert

type TpmAttestationCertList

type TpmAttestationCertList []*TpmAttestationCert

func (TpmAttestationCertList) Append

func (TpmAttestationCertList) AppendList

func (TpmAttestationCertList) At

func (TpmAttestationCertList) Length

func (l TpmAttestationCertList) Length() int

func (TpmAttestationCertList) Set

func (TpmAttestationCertList) Slice

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

type TpmAttestationCertMap

type TpmAttestationCertMap map[Name]*TpmAttestationCert

func (TpmAttestationCertMap) Delete

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

func (TpmAttestationCertMap) ForEach

func (TpmAttestationCertMap) Get

func (TpmAttestationCertMap) Length

func (m TpmAttestationCertMap) Length() int

func (TpmAttestationCertMap) Set

type TpmAttestationCertMapPathSelectorMetadataAnnotations

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

func (TpmAttestationCertMapPathSelectorMetadataAnnotations) FieldPath

func (TpmAttestationCertMapPathSelectorMetadataAnnotations) WithArrayOfValues

func (TpmAttestationCertMapPathSelectorMetadataAnnotations) WithValue

type TpmAttestationCertMapPathSelectorMetadataLabels

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

func (TpmAttestationCertMapPathSelectorMetadataLabels) FieldPath

func (TpmAttestationCertMapPathSelectorMetadataLabels) WithArrayOfValues

func (TpmAttestationCertMapPathSelectorMetadataLabels) WithValue

type TpmAttestationCertMapPathSelectorMetadataShards

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

func (TpmAttestationCertMapPathSelectorMetadataShards) FieldPath

func (TpmAttestationCertMapPathSelectorMetadataShards) WithArrayOfValues

func (TpmAttestationCertMapPathSelectorMetadataShards) WithValue

type TpmAttestationCertNameList

type TpmAttestationCertNameList []*Name

func (TpmAttestationCertNameList) Append

func (TpmAttestationCertNameList) AppendList

func (TpmAttestationCertNameList) At

func (TpmAttestationCertNameList) Length

func (l TpmAttestationCertNameList) Length() int

func (TpmAttestationCertNameList) Set

func (TpmAttestationCertNameList) Slice

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

type TpmAttestationCertParentNameList

type TpmAttestationCertParentNameList []*ParentName

func (TpmAttestationCertParentNameList) Append

func (TpmAttestationCertParentNameList) AppendList

func (TpmAttestationCertParentNameList) At

func (TpmAttestationCertParentNameList) Length

func (TpmAttestationCertParentNameList) Set

func (TpmAttestationCertParentNameList) Slice

type TpmAttestationCertParentReferenceList

type TpmAttestationCertParentReferenceList []*ParentReference

func (TpmAttestationCertParentReferenceList) Append

func (TpmAttestationCertParentReferenceList) AppendList

func (TpmAttestationCertParentReferenceList) At

func (TpmAttestationCertParentReferenceList) Length

func (TpmAttestationCertParentReferenceList) Set

func (TpmAttestationCertParentReferenceList) Slice

type TpmAttestationCertPathSelectorDisplayName

type TpmAttestationCertPathSelectorDisplayName struct{}

func (TpmAttestationCertPathSelectorDisplayName) FieldPath

func (TpmAttestationCertPathSelectorDisplayName) WithArrayOfValues

func (TpmAttestationCertPathSelectorDisplayName) WithValue

type TpmAttestationCertPathSelectorIdevidIssuerCaCert

type TpmAttestationCertPathSelectorIdevidIssuerCaCert struct{}

func (TpmAttestationCertPathSelectorIdevidIssuerCaCert) FieldPath

func (TpmAttestationCertPathSelectorIdevidIssuerCaCert) WithArrayOfValues

func (TpmAttestationCertPathSelectorIdevidIssuerCaCert) WithValue

type TpmAttestationCertPathSelectorLdevidIssuerCaCert

type TpmAttestationCertPathSelectorLdevidIssuerCaCert struct{}

func (TpmAttestationCertPathSelectorLdevidIssuerCaCert) FieldPath

func (TpmAttestationCertPathSelectorLdevidIssuerCaCert) WithArrayOfValues

func (TpmAttestationCertPathSelectorLdevidIssuerCaCert) WithValue

type TpmAttestationCertPathSelectorManufacturer

type TpmAttestationCertPathSelectorManufacturer struct{}

func (TpmAttestationCertPathSelectorManufacturer) FieldPath

func (TpmAttestationCertPathSelectorManufacturer) WithArrayOfValues

func (TpmAttestationCertPathSelectorManufacturer) WithValue

type TpmAttestationCertPathSelectorMetadata

type TpmAttestationCertPathSelectorMetadata struct{}

func (TpmAttestationCertPathSelectorMetadata) Annotations

func (TpmAttestationCertPathSelectorMetadata) CreateTime

func (TpmAttestationCertPathSelectorMetadata) DeleteTime

func (TpmAttestationCertPathSelectorMetadata) FieldPath

func (TpmAttestationCertPathSelectorMetadata) Generation

func (TpmAttestationCertPathSelectorMetadata) Labels

func (TpmAttestationCertPathSelectorMetadata) Lifecycle

func (TpmAttestationCertPathSelectorMetadata) OwnerReferences

func (TpmAttestationCertPathSelectorMetadata) ResourceVersion

func (TpmAttestationCertPathSelectorMetadata) Services

func (TpmAttestationCertPathSelectorMetadata) Shards

func (TpmAttestationCertPathSelectorMetadata) Syncing

func (TpmAttestationCertPathSelectorMetadata) Tags

func (TpmAttestationCertPathSelectorMetadata) UpdateTime

func (TpmAttestationCertPathSelectorMetadata) Uuid

func (TpmAttestationCertPathSelectorMetadata) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadata) WithSubArrayItemValue

func (TpmAttestationCertPathSelectorMetadata) WithSubArrayOfValues

func (TpmAttestationCertPathSelectorMetadata) WithSubPath

func (TpmAttestationCertPathSelectorMetadata) WithSubValue

func (TpmAttestationCertPathSelectorMetadata) WithValue

type TpmAttestationCertPathSelectorMetadataAnnotations

type TpmAttestationCertPathSelectorMetadataAnnotations struct{}

func (TpmAttestationCertPathSelectorMetadataAnnotations) FieldPath

func (TpmAttestationCertPathSelectorMetadataAnnotations) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataAnnotations) WithKey

func (TpmAttestationCertPathSelectorMetadataAnnotations) WithValue

type TpmAttestationCertPathSelectorMetadataCreateTime

type TpmAttestationCertPathSelectorMetadataCreateTime struct{}

func (TpmAttestationCertPathSelectorMetadataCreateTime) FieldPath

func (TpmAttestationCertPathSelectorMetadataCreateTime) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataCreateTime) WithValue

type TpmAttestationCertPathSelectorMetadataDeleteTime

type TpmAttestationCertPathSelectorMetadataDeleteTime struct{}

func (TpmAttestationCertPathSelectorMetadataDeleteTime) FieldPath

func (TpmAttestationCertPathSelectorMetadataDeleteTime) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataDeleteTime) WithValue

type TpmAttestationCertPathSelectorMetadataGeneration

type TpmAttestationCertPathSelectorMetadataGeneration struct{}

func (TpmAttestationCertPathSelectorMetadataGeneration) FieldPath

func (TpmAttestationCertPathSelectorMetadataGeneration) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataGeneration) WithValue

type TpmAttestationCertPathSelectorMetadataLabels

type TpmAttestationCertPathSelectorMetadataLabels struct{}

func (TpmAttestationCertPathSelectorMetadataLabels) FieldPath

func (TpmAttestationCertPathSelectorMetadataLabels) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataLabels) WithKey

func (TpmAttestationCertPathSelectorMetadataLabels) WithValue

type TpmAttestationCertPathSelectorMetadataLifecycle

type TpmAttestationCertPathSelectorMetadataLifecycle struct{}

func (TpmAttestationCertPathSelectorMetadataLifecycle) BlockDeletion

func (TpmAttestationCertPathSelectorMetadataLifecycle) FieldPath

func (TpmAttestationCertPathSelectorMetadataLifecycle) State

func (TpmAttestationCertPathSelectorMetadataLifecycle) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataLifecycle) WithValue

type TpmAttestationCertPathSelectorMetadataLifecycleBlockDeletion

type TpmAttestationCertPathSelectorMetadataLifecycleBlockDeletion struct{}

func (TpmAttestationCertPathSelectorMetadataLifecycleBlockDeletion) FieldPath

func (TpmAttestationCertPathSelectorMetadataLifecycleBlockDeletion) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataLifecycleBlockDeletion) WithValue

type TpmAttestationCertPathSelectorMetadataLifecycleState

type TpmAttestationCertPathSelectorMetadataLifecycleState struct{}

func (TpmAttestationCertPathSelectorMetadataLifecycleState) FieldPath

func (TpmAttestationCertPathSelectorMetadataLifecycleState) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataLifecycleState) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferences

type TpmAttestationCertPathSelectorMetadataOwnerReferences struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) Controller

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) Kind

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) Name

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) Region

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) Version

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) WithItemValue

func (TpmAttestationCertPathSelectorMetadataOwnerReferences) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesController

type TpmAttestationCertPathSelectorMetadataOwnerReferencesController struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesController) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesController) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesController) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesKind

type TpmAttestationCertPathSelectorMetadataOwnerReferencesKind struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesKind) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesKind) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesKind) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesName

type TpmAttestationCertPathSelectorMetadataOwnerReferencesName struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesName) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesName) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesName) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesRegion

type TpmAttestationCertPathSelectorMetadataOwnerReferencesRegion struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRegion) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRegion) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRegion) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesRequiresOwnerReference

type TpmAttestationCertPathSelectorMetadataOwnerReferencesRequiresOwnerReference struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRequiresOwnerReference) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesRequiresOwnerReference) WithValue

type TpmAttestationCertPathSelectorMetadataOwnerReferencesVersion

type TpmAttestationCertPathSelectorMetadataOwnerReferencesVersion struct{}

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesVersion) FieldPath

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesVersion) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataOwnerReferencesVersion) WithValue

type TpmAttestationCertPathSelectorMetadataResourceVersion

type TpmAttestationCertPathSelectorMetadataResourceVersion struct{}

func (TpmAttestationCertPathSelectorMetadataResourceVersion) FieldPath

func (TpmAttestationCertPathSelectorMetadataResourceVersion) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataResourceVersion) WithValue

type TpmAttestationCertPathSelectorMetadataServices

type TpmAttestationCertPathSelectorMetadataServices struct{}

func (TpmAttestationCertPathSelectorMetadataServices) AllowedServices

func (TpmAttestationCertPathSelectorMetadataServices) FieldPath

func (TpmAttestationCertPathSelectorMetadataServices) OwningService

func (TpmAttestationCertPathSelectorMetadataServices) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataServices) WithValue

type TpmAttestationCertPathSelectorMetadataServicesAllowedServices

type TpmAttestationCertPathSelectorMetadataServicesAllowedServices struct{}

func (TpmAttestationCertPathSelectorMetadataServicesAllowedServices) FieldPath

func (TpmAttestationCertPathSelectorMetadataServicesAllowedServices) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataServicesAllowedServices) WithItemValue

func (TpmAttestationCertPathSelectorMetadataServicesAllowedServices) WithValue

type TpmAttestationCertPathSelectorMetadataServicesOwningService

type TpmAttestationCertPathSelectorMetadataServicesOwningService struct{}

func (TpmAttestationCertPathSelectorMetadataServicesOwningService) FieldPath

func (TpmAttestationCertPathSelectorMetadataServicesOwningService) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataServicesOwningService) WithValue

type TpmAttestationCertPathSelectorMetadataShards

type TpmAttestationCertPathSelectorMetadataShards struct{}

func (TpmAttestationCertPathSelectorMetadataShards) FieldPath

func (TpmAttestationCertPathSelectorMetadataShards) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataShards) WithKey

func (TpmAttestationCertPathSelectorMetadataShards) WithValue

type TpmAttestationCertPathSelectorMetadataSyncing

type TpmAttestationCertPathSelectorMetadataSyncing struct{}

func (TpmAttestationCertPathSelectorMetadataSyncing) FieldPath

func (TpmAttestationCertPathSelectorMetadataSyncing) OwningRegion

func (TpmAttestationCertPathSelectorMetadataSyncing) Regions

func (TpmAttestationCertPathSelectorMetadataSyncing) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataSyncing) WithValue

type TpmAttestationCertPathSelectorMetadataSyncingOwningRegion

type TpmAttestationCertPathSelectorMetadataSyncingOwningRegion struct{}

func (TpmAttestationCertPathSelectorMetadataSyncingOwningRegion) FieldPath

func (TpmAttestationCertPathSelectorMetadataSyncingOwningRegion) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataSyncingOwningRegion) WithValue

type TpmAttestationCertPathSelectorMetadataSyncingRegions

type TpmAttestationCertPathSelectorMetadataSyncingRegions struct{}

func (TpmAttestationCertPathSelectorMetadataSyncingRegions) FieldPath

func (TpmAttestationCertPathSelectorMetadataSyncingRegions) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataSyncingRegions) WithItemValue

func (TpmAttestationCertPathSelectorMetadataSyncingRegions) WithValue

type TpmAttestationCertPathSelectorMetadataTags

type TpmAttestationCertPathSelectorMetadataTags struct{}

func (TpmAttestationCertPathSelectorMetadataTags) FieldPath

func (TpmAttestationCertPathSelectorMetadataTags) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataTags) WithItemValue

func (TpmAttestationCertPathSelectorMetadataTags) WithValue

type TpmAttestationCertPathSelectorMetadataUpdateTime

type TpmAttestationCertPathSelectorMetadataUpdateTime struct{}

func (TpmAttestationCertPathSelectorMetadataUpdateTime) FieldPath

func (TpmAttestationCertPathSelectorMetadataUpdateTime) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataUpdateTime) WithValue

type TpmAttestationCertPathSelectorMetadataUuid

type TpmAttestationCertPathSelectorMetadataUuid struct{}

func (TpmAttestationCertPathSelectorMetadataUuid) FieldPath

func (TpmAttestationCertPathSelectorMetadataUuid) WithArrayOfValues

func (TpmAttestationCertPathSelectorMetadataUuid) WithValue

type TpmAttestationCertPathSelectorName

type TpmAttestationCertPathSelectorName struct{}

func (TpmAttestationCertPathSelectorName) FieldPath

func (TpmAttestationCertPathSelectorName) WithArrayOfValues

func (TpmAttestationCertPathSelectorName) WithValue

type TpmAttestationCertPathSelectorProductName

type TpmAttestationCertPathSelectorProductName struct{}

func (TpmAttestationCertPathSelectorProductName) FieldPath

func (TpmAttestationCertPathSelectorProductName) WithArrayOfValues

func (TpmAttestationCertPathSelectorProductName) WithValue

type TpmAttestationCertPathSelectorTpmManufacturerCaCert

type TpmAttestationCertPathSelectorTpmManufacturerCaCert struct{}

func (TpmAttestationCertPathSelectorTpmManufacturerCaCert) FieldPath

func (TpmAttestationCertPathSelectorTpmManufacturerCaCert) WithArrayOfValues

func (TpmAttestationCertPathSelectorTpmManufacturerCaCert) WithValue

type TpmAttestationCertReferenceList

type TpmAttestationCertReferenceList []*Reference

func (TpmAttestationCertReferenceList) Append

func (TpmAttestationCertReferenceList) AppendList

func (TpmAttestationCertReferenceList) At

func (TpmAttestationCertReferenceList) Length

func (TpmAttestationCertReferenceList) Set

func (TpmAttestationCertReferenceList) Slice

type TpmAttestationCert_FieldMask

type TpmAttestationCert_FieldMask struct {
	Paths []TpmAttestationCert_FieldPath
}

func FullTpmAttestationCert_FieldMask

func FullTpmAttestationCert_FieldMask() *TpmAttestationCert_FieldMask

func ResourceViewFieldMask

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

func (*TpmAttestationCert_FieldMask) AppendPath

func (fieldMask *TpmAttestationCert_FieldMask) AppendPath(path TpmAttestationCert_FieldPath)

func (*TpmAttestationCert_FieldMask) AppendRawPath

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

func (*TpmAttestationCert_FieldMask) DecodeFirestore

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

func (*TpmAttestationCert_FieldMask) EncodeFirestore

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

firestore encoding/decoding integration

func (*TpmAttestationCert_FieldMask) FilterInputFields

func (fieldMask *TpmAttestationCert_FieldMask) FilterInputFields() *TpmAttestationCert_FieldMask

FilterInputFields generates copy of field paths with output_only field paths removed

func (*TpmAttestationCert_FieldMask) FromProtoFieldMask

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

func (*TpmAttestationCert_FieldMask) GetPaths

func (*TpmAttestationCert_FieldMask) GetRawPaths

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

func (*TpmAttestationCert_FieldMask) IsFull

func (fieldMask *TpmAttestationCert_FieldMask) IsFull() bool

func (TpmAttestationCert_FieldMask) Marshal

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

implement methods required by customType

func (TpmAttestationCert_FieldMask) MarshalJSON

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

func (*TpmAttestationCert_FieldMask) PathsCount

func (fieldMask *TpmAttestationCert_FieldMask) PathsCount() int

func (*TpmAttestationCert_FieldMask) Project

func (*TpmAttestationCert_FieldMask) ProjectRaw

func (*TpmAttestationCert_FieldMask) ProtoMessage

func (fieldMask *TpmAttestationCert_FieldMask) ProtoMessage()

func (*TpmAttestationCert_FieldMask) ProtoReflect

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

func (*TpmAttestationCert_FieldMask) Reset

func (fieldMask *TpmAttestationCert_FieldMask) Reset()

func (*TpmAttestationCert_FieldMask) Set

func (fieldMask *TpmAttestationCert_FieldMask) Set(target, source *TpmAttestationCert)

func (*TpmAttestationCert_FieldMask) SetFromCliFlag

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

func (*TpmAttestationCert_FieldMask) SetRaw

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

func (*TpmAttestationCert_FieldMask) Size

func (fieldMask *TpmAttestationCert_FieldMask) Size() int

func (*TpmAttestationCert_FieldMask) String

func (fieldMask *TpmAttestationCert_FieldMask) String() string

func (*TpmAttestationCert_FieldMask) Subtract

func (*TpmAttestationCert_FieldMask) SubtractRaw

func (*TpmAttestationCert_FieldMask) ToProtoFieldMask

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

ToFieldMask is used for proto conversions

func (*TpmAttestationCert_FieldMask) Unmarshal

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

func (*TpmAttestationCert_FieldMask) UnmarshalJSON

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

type TpmAttestationCert_FieldPath

type TpmAttestationCert_FieldPath interface {
	gotenobject.FieldPath
	Selector() TpmAttestationCert_FieldPathSelector
	Get(source *TpmAttestationCert) []interface{}
	GetSingle(source *TpmAttestationCert) (interface{}, bool)
	ClearValue(item *TpmAttestationCert)

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

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

func MustParseTpmAttestationCert_FieldPath

func MustParseTpmAttestationCert_FieldPath(rawField string) TpmAttestationCert_FieldPath

func ParseTpmAttestationCert_FieldPath

func ParseTpmAttestationCert_FieldPath(rawField string) (TpmAttestationCert_FieldPath, error)

type TpmAttestationCert_FieldPathArrayItemValue

type TpmAttestationCert_FieldPathArrayItemValue interface {
	gotenobject.FieldPathArrayItemValue
	TpmAttestationCert_FieldPath
	ContainsValue(*TpmAttestationCert) bool
}

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

func MustParseTpmAttestationCert_FieldPathArrayItemValue

func MustParseTpmAttestationCert_FieldPathArrayItemValue(pathStr, valueStr string) TpmAttestationCert_FieldPathArrayItemValue

func ParseTpmAttestationCert_FieldPathArrayItemValue

func ParseTpmAttestationCert_FieldPathArrayItemValue(pathStr, valueStr string) (TpmAttestationCert_FieldPathArrayItemValue, error)

ParseTpmAttestationCert_FieldPathArrayItemValue parses string and JSON-encoded value to its Value

type TpmAttestationCert_FieldPathArrayOfValues

type TpmAttestationCert_FieldPathArrayOfValues interface {
	gotenobject.FieldPathArrayOfValues
	TpmAttestationCert_FieldPath
}

TpmAttestationCert_FieldPathArrayOfValues allows storing slice of values for TpmAttestationCert fields according to their type

func MustParseTpmAttestationCert_FieldPathArrayOfValues

func MustParseTpmAttestationCert_FieldPathArrayOfValues(pathStr, valuesStr string) TpmAttestationCert_FieldPathArrayOfValues

func ParseTpmAttestationCert_FieldPathArrayOfValues

func ParseTpmAttestationCert_FieldPathArrayOfValues(pathStr, valuesStr string) (TpmAttestationCert_FieldPathArrayOfValues, error)

type TpmAttestationCert_FieldPathSelector

type TpmAttestationCert_FieldPathSelector int32
const (
	TpmAttestationCert_FieldPathSelectorName                  TpmAttestationCert_FieldPathSelector = 0
	TpmAttestationCert_FieldPathSelectorMetadata              TpmAttestationCert_FieldPathSelector = 1
	TpmAttestationCert_FieldPathSelectorDisplayName           TpmAttestationCert_FieldPathSelector = 2
	TpmAttestationCert_FieldPathSelectorManufacturer          TpmAttestationCert_FieldPathSelector = 3
	TpmAttestationCert_FieldPathSelectorProductName           TpmAttestationCert_FieldPathSelector = 4
	TpmAttestationCert_FieldPathSelectorTpmManufacturerCaCert TpmAttestationCert_FieldPathSelector = 5
	TpmAttestationCert_FieldPathSelectorIdevidIssuerCaCert    TpmAttestationCert_FieldPathSelector = 6
	TpmAttestationCert_FieldPathSelectorLdevidIssuerCaCert    TpmAttestationCert_FieldPathSelector = 7
)

func (TpmAttestationCert_FieldPathSelector) String

type TpmAttestationCert_FieldPathValue

type TpmAttestationCert_FieldPathValue interface {
	TpmAttestationCert_FieldPath
	gotenobject.FieldPathValue
	SetTo(target **TpmAttestationCert)
	CompareWith(*TpmAttestationCert) (cmp int, comparable bool)
}

TpmAttestationCert_FieldPathValue allows storing values for TpmAttestationCert fields according to their type

func MustParseTpmAttestationCert_FieldPathValue

func MustParseTpmAttestationCert_FieldPathValue(pathStr, valueStr string) TpmAttestationCert_FieldPathValue

func ParseTpmAttestationCert_FieldPathValue

func ParseTpmAttestationCert_FieldPathValue(pathStr, valueStr string) (TpmAttestationCert_FieldPathValue, error)

type TpmAttestationCert_FieldSubPath

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

func (*TpmAttestationCert_FieldSubPath) AsMetadataSubPath

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

func (*TpmAttestationCert_FieldSubPath) ClearValue

func (fps *TpmAttestationCert_FieldSubPath) ClearValue(item *TpmAttestationCert)

func (*TpmAttestationCert_FieldSubPath) ClearValueRaw

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

func (*TpmAttestationCert_FieldSubPath) Get

func (fps *TpmAttestationCert_FieldSubPath) Get(source *TpmAttestationCert) (values []interface{})

Get returns all values pointed by selected field from source TpmAttestationCert

func (*TpmAttestationCert_FieldSubPath) GetDefault

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

GetDefault returns a default value of the field type

func (*TpmAttestationCert_FieldSubPath) GetRaw

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

func (*TpmAttestationCert_FieldSubPath) GetSingle

func (fps *TpmAttestationCert_FieldSubPath) GetSingle(source *TpmAttestationCert) (interface{}, bool)

GetSingle returns value of selected field from source TpmAttestationCert

func (*TpmAttestationCert_FieldSubPath) GetSingleRaw

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

func (*TpmAttestationCert_FieldSubPath) IsLeaf

func (fps *TpmAttestationCert_FieldSubPath) IsLeaf() bool

IsLeaf - whether field path is holds simple value

func (*TpmAttestationCert_FieldSubPath) JSONString

func (fps *TpmAttestationCert_FieldSubPath) JSONString() string

JSONString returns path representation is JSON convention

func (*TpmAttestationCert_FieldSubPath) Selector

func (*TpmAttestationCert_FieldSubPath) SplitIntoTerminalIPaths

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

func (*TpmAttestationCert_FieldSubPath) String

String returns path representation in proto convention

func (*TpmAttestationCert_FieldSubPath) WithIArrayItemValue

func (fps *TpmAttestationCert_FieldSubPath) WithIArrayItemValue(value interface{}) TpmAttestationCert_FieldPathArrayItemValue

func (*TpmAttestationCert_FieldSubPath) WithIArrayOfValues

func (fps *TpmAttestationCert_FieldSubPath) WithIArrayOfValues(values interface{}) TpmAttestationCert_FieldPathArrayOfValues

func (*TpmAttestationCert_FieldSubPath) WithIValue

func (fps *TpmAttestationCert_FieldSubPath) WithIValue(value interface{}) TpmAttestationCert_FieldPathValue

func (*TpmAttestationCert_FieldSubPath) WithRawIArrayItemValue

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

func (*TpmAttestationCert_FieldSubPath) WithRawIArrayOfValues

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

func (*TpmAttestationCert_FieldSubPath) WithRawIValue

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

type TpmAttestationCert_FieldSubPathArrayItemValue

type TpmAttestationCert_FieldSubPathArrayItemValue struct {
	TpmAttestationCert_FieldPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldSubPathArrayItemValue) AsMetadataPathItemValue

func (*TpmAttestationCert_FieldSubPathArrayItemValue) ContainsValue

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

func (*TpmAttestationCert_FieldSubPathArrayItemValue) GetRawItemValue

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

GetRawValue returns stored array item value

type TpmAttestationCert_FieldSubPathArrayOfValues

type TpmAttestationCert_FieldSubPathArrayOfValues struct {
	TpmAttestationCert_FieldPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldSubPathArrayOfValues) AsMetadataPathArrayOfValues

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

func (*TpmAttestationCert_FieldSubPathArrayOfValues) GetRawValues

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

type TpmAttestationCert_FieldSubPathValue

type TpmAttestationCert_FieldSubPathValue struct {
	TpmAttestationCert_FieldPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldSubPathValue) AsMetadataPathValue

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

func (*TpmAttestationCert_FieldSubPathValue) CompareWith

func (fpvs *TpmAttestationCert_FieldSubPathValue) CompareWith(source *TpmAttestationCert) (int, bool)

func (*TpmAttestationCert_FieldSubPathValue) CompareWithRaw

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

func (*TpmAttestationCert_FieldSubPathValue) GetRawValue

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

func (*TpmAttestationCert_FieldSubPathValue) SetTo

func (*TpmAttestationCert_FieldSubPathValue) SetToRaw

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

type TpmAttestationCert_FieldTerminalPath

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

func (*TpmAttestationCert_FieldTerminalPath) ClearValue

func (*TpmAttestationCert_FieldTerminalPath) ClearValueRaw

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

func (*TpmAttestationCert_FieldTerminalPath) Get

func (fp *TpmAttestationCert_FieldTerminalPath) Get(source *TpmAttestationCert) (values []interface{})

Get returns all values pointed by specific field from source TpmAttestationCert

func (*TpmAttestationCert_FieldTerminalPath) GetDefault

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

GetDefault returns a default value of the field type

func (*TpmAttestationCert_FieldTerminalPath) GetRaw

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

func (*TpmAttestationCert_FieldTerminalPath) GetSingle

func (fp *TpmAttestationCert_FieldTerminalPath) GetSingle(source *TpmAttestationCert) (interface{}, bool)

GetSingle returns value pointed by specific field of from source TpmAttestationCert

func (*TpmAttestationCert_FieldTerminalPath) GetSingleRaw

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

func (*TpmAttestationCert_FieldTerminalPath) IsLeaf

IsLeaf - whether field path is holds simple value

func (*TpmAttestationCert_FieldTerminalPath) JSONString

JSONString returns path representation is JSON convention

func (*TpmAttestationCert_FieldTerminalPath) Selector

func (*TpmAttestationCert_FieldTerminalPath) SplitIntoTerminalIPaths

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

func (*TpmAttestationCert_FieldTerminalPath) String

String returns path representation in proto convention

func (*TpmAttestationCert_FieldTerminalPath) WithIArrayItemValue

func (fp *TpmAttestationCert_FieldTerminalPath) WithIArrayItemValue(value interface{}) TpmAttestationCert_FieldPathArrayItemValue

func (*TpmAttestationCert_FieldTerminalPath) WithIArrayOfValues

func (fp *TpmAttestationCert_FieldTerminalPath) WithIArrayOfValues(values interface{}) TpmAttestationCert_FieldPathArrayOfValues

func (*TpmAttestationCert_FieldTerminalPath) WithIValue

func (*TpmAttestationCert_FieldTerminalPath) WithRawIArrayItemValue

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

func (*TpmAttestationCert_FieldTerminalPath) WithRawIArrayOfValues

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

func (*TpmAttestationCert_FieldTerminalPath) WithRawIValue

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

type TpmAttestationCert_FieldTerminalPathArrayItemValue

type TpmAttestationCert_FieldTerminalPathArrayItemValue struct {
	TpmAttestationCert_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldTerminalPathArrayItemValue) ContainsValue

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

func (*TpmAttestationCert_FieldTerminalPathArrayItemValue) GetRawItemValue

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

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

func (*TpmAttestationCert_FieldTerminalPathArrayItemValue) GetSingle

func (fpaiv *TpmAttestationCert_FieldTerminalPathArrayItemValue) GetSingle(source *TpmAttestationCert) (interface{}, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayItemValue) GetSingleRaw

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

type TpmAttestationCert_FieldTerminalPathArrayOfValues

type TpmAttestationCert_FieldTerminalPathArrayOfValues struct {
	TpmAttestationCert_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsDisplayNameArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsIdevidIssuerCaCertArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsIdevidIssuerCaCertArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsLdevidIssuerCaCertArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsLdevidIssuerCaCertArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsManufacturerArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsManufacturerArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsMetadataArrayOfValues

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

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsNameArrayOfValues

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

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsProductNameArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsProductNameArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) AsTpmManufacturerCaCertArrayOfValues

func (fpaov *TpmAttestationCert_FieldTerminalPathArrayOfValues) AsTpmManufacturerCaCertArrayOfValues() ([]string, bool)

func (*TpmAttestationCert_FieldTerminalPathArrayOfValues) GetRawValues

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

type TpmAttestationCert_FieldTerminalPathValue

type TpmAttestationCert_FieldTerminalPathValue struct {
	TpmAttestationCert_FieldTerminalPath
	// contains filtered or unexported fields
}

func (*TpmAttestationCert_FieldTerminalPathValue) AsDisplayNameValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsDisplayNameValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) AsIdevidIssuerCaCertValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsIdevidIssuerCaCertValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) AsLdevidIssuerCaCertValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsLdevidIssuerCaCertValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) AsManufacturerValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsManufacturerValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) AsMetadataValue

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

func (*TpmAttestationCert_FieldTerminalPathValue) AsNameValue

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

func (*TpmAttestationCert_FieldTerminalPathValue) AsProductNameValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsProductNameValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) AsTpmManufacturerCaCertValue

func (fpv *TpmAttestationCert_FieldTerminalPathValue) AsTpmManufacturerCaCertValue() (string, bool)

func (*TpmAttestationCert_FieldTerminalPathValue) CompareWith

CompareWith compares value in the 'TpmAttestationCert_FieldTerminalPathValue' with the value under path in 'TpmAttestationCert'.

func (*TpmAttestationCert_FieldTerminalPathValue) CompareWithRaw

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

func (*TpmAttestationCert_FieldTerminalPathValue) GetRawValue

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

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

func (*TpmAttestationCert_FieldTerminalPathValue) SetTo

SetTo stores value for selected field for object TpmAttestationCert

func (*TpmAttestationCert_FieldTerminalPathValue) SetToRaw

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