Show / Hide Table of Contents

Class UpdateInstanceRequest

The request for UpdateInstance.

Inheritance
System.Object
UpdateInstanceRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class UpdateInstanceRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FieldMask

Required. A mask specifying which fields in Instance should be updated. The field mask must always be specified; this prevents any future fields in Instance from being erased accidentally by clients that do not know about them.

Declaration
[JsonProperty("fieldMask")]
public virtual object FieldMask { get; set; }
Property Value
Type Description
System.Object

Instance

Required. The instance to update, which must always include the instance name. Otherwise, only fields mentioned in field_mask need be included.

Declaration
[JsonProperty("instance")]
public virtual Instance Instance { get; set; }
Property Value
Type Description
Instance

Implements

IDirectResponseSchema
In This Article
Back to top