Google Cloud Datastore v1 API - Class PropertyMask (4.12.0)

public sealed class PropertyMask : IMessage<PropertyMask>, IEquatable<PropertyMask>, IDeepCloneable<PropertyMask>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Datastore v1 API class PropertyMask.

The set of arbitrarily nested property paths used to restrict an operation to only a subset of properties in an entity.

Inheritance

object > PropertyMask

Namespace

Google.Cloud.Datastore.V1

Assembly

Google.Cloud.Datastore.V1.dll

Constructors

PropertyMask()

public PropertyMask()

PropertyMask(PropertyMask)

public PropertyMask(PropertyMask other)
Parameter
Name Description
other PropertyMask

Properties

Paths

public RepeatedField<string> Paths { get; }

The paths to the properties covered by this mask.

A path is a list of property names separated by dots (.), for example foo.bar means the property bar inside the entity property foo inside the entity associated with this path.

If a property name contains a dot . or a backslash \, then that name must be escaped.

A path must not be empty, and may not reference a value inside an [array value][google.datastore.v1.Value.array_value].

Property Value
Type Description
RepeatedFieldstring