UpdateRowResult

class oci.nosql.models.UpdateRowResult(**kwargs)

Bases: object

The result of an UpdateRow operation.

Methods

__init__(**kwargs) Initializes a new UpdateRowResult object with values from keyword arguments.

Attributes

existing_value Gets the existing_value of this UpdateRowResult.
existing_version Gets the existing_version of this UpdateRowResult.
generated_value Gets the generated_value of this UpdateRowResult.
usage Gets the usage of this UpdateRowResult.
version Gets the version of this UpdateRowResult.
__init__(**kwargs)

Initializes a new UpdateRowResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • version (str) – The value to assign to the version property of this UpdateRowResult.
  • existing_version (str) – The value to assign to the existing_version property of this UpdateRowResult.
  • existing_value (dict(str, object)) – The value to assign to the existing_value property of this UpdateRowResult.
  • generated_value (str) – The value to assign to the generated_value property of this UpdateRowResult.
  • usage (oci.nosql.models.RequestUsage) – The value to assign to the usage property of this UpdateRowResult.
existing_value

Gets the existing_value of this UpdateRowResult. The map of values from a row.

Returns:The existing_value of this UpdateRowResult.
Return type:dict(str, object)
existing_version

Gets the existing_version of this UpdateRowResult. The version string associated with the existing row. Returned if the put fails due to options setting in the request.

Returns:The existing_version of this UpdateRowResult.
Return type:str
generated_value

Gets the generated_value of this UpdateRowResult. 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.

Returns:The generated_value of this UpdateRowResult.
Return type:str
usage

Gets the usage of this UpdateRowResult.

Returns:The usage of this UpdateRowResult.
Return type:oci.nosql.models.RequestUsage
version

Gets the version of this UpdateRowResult. An opaque version string associated with the row.

Returns:The version of this UpdateRowResult.
Return type:str