Show / Hide Table of Contents

Class UpdateRowResult

The result of an UpdateRow operation.

Inheritance
object
UpdateRowResult
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.NosqlService.Models
Assembly: OCI.DotNetSDK.Nosql.dll
Syntax
public class UpdateRowResult

Properties

ExistingValue

Declaration
[JsonProperty(PropertyName = "existingValue")]
public Dictionary<string, object> ExistingValue { get; set; }
Property Value
Type Description
Dictionary<string, object>

The map of values from a row.

ExistingVersion

Declaration
[JsonProperty(PropertyName = "existingVersion")]
public string ExistingVersion { get; set; }
Property Value
Type Description
string

The version string associated with the existing row. Returned if the put fails due to options setting in the request.

GeneratedValue

Declaration
[JsonProperty(PropertyName = "generatedValue")]
public string GeneratedValue { get; set; }
Property Value
Type Description
string

The value generated if the operation created a new value for an identity column. If the table has no identity column, this value is null. If it has an identity column, and a value was generated for that column, it is non-null.

Usage

Declaration
[JsonProperty(PropertyName = "usage")]
public RequestUsage Usage { get; set; }
Property Value
Type Description
RequestUsage

Version

Declaration
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

An opaque version string associated with the row.

In this article
Back to top