PutMode

public enum PutMode : UInt32

Allows to change the put semantics; e.g. into insert or update.

  • put

    Standard put (“insert or update”)

    Declaration

    Swift

    case put = 1
  • Put succeeds only if the entity does not exist yet.

    Declaration

    Swift

    case insert = 2
  • Put succeeds only if the entity already exist.

    Declaration

    Swift

    case update = 3