Package | Description |
---|---|
com.azure.data.tables |
Package containing the classes for Tables Clients.
|
com.azure.data.tables.models |
Package containing the implementations and inner classes for AzureTable.
|
Modifier and Type | Method and Description |
---|---|
void |
TableClient.updateEntity(TableEntity entity,
boolean ifUnchanged,
UpdateMode updateMode)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
boolean ifUnchanged,
UpdateMode updateMode)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
void |
TableClient.updateEntity(TableEntity entity,
boolean ifUnchanged,
UpdateMode updateMode,
Duration timeout)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
updates the entity
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.updateEntityWithResponse(TableEntity entity,
boolean ifUnchanged,
UpdateMode updateMode)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
com.azure.core.http.rest.Response<Void> |
TableClient.updateEntityWithResponse(TableEntity entity,
boolean ifUnchanged,
UpdateMode updateMode,
Duration timeout,
com.azure.core.util.Context context)
if UpdateMode is MERGE, merges or fails if the entity doesn't exist.
|
void |
TableClient.upsertEntity(TableEntity entity,
UpdateMode updateMode)
based on Mode it either inserts or merges if exists or inserts or merges if exists
|
Mono<Void> |
TableAsyncClient.upsertEntity(TableEntity entity,
UpdateMode updateMode)
based on Mode it either inserts or merges if exists or inserts or merges if exists
|
void |
TableClient.upsertEntity(TableEntity entity,
UpdateMode updateMode,
Duration timeout)
based on Mode it either inserts or merges if exists or inserts or merges if exists
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.upsertEntityWithResponse(TableEntity entity,
UpdateMode updateMode)
based on Mode it either inserts or merges if exists or inserts or merges if exists
|
com.azure.core.http.rest.Response<Void> |
TableClient.upsertEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
Duration timeout,
com.azure.core.util.Context context)
based on Mode it either inserts or merges if exists or inserts or merges if exists
|
Modifier and Type | Method and Description |
---|---|
static UpdateMode |
UpdateMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateMode[] |
UpdateMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2020 Microsoft Corporation. All rights reserved.