| 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 |
|---|---|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode)
Updates an existing entity using the specified update mode.
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
TableBatch |
TableBatch.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
TableAsyncBatch |
TableAsyncBatch.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
void |
TableClient.updateEntity(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged,
Duration timeout)
Updates an existing entity using the specified update mode.
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.updateEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged)
Updates an existing entity using the specified update mode.
|
com.azure.core.http.rest.Response<Void> |
TableClient.updateEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
boolean ifUnchanged,
Duration timeout,
com.azure.core.util.Context context)
Updates an existing entity using the specified update mode.
|
Mono<Void> |
TableAsyncClient.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
TableBatch |
TableBatch.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
void |
TableClient.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
TableAsyncBatch |
TableAsyncBatch.upsertEntity(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
void |
TableClient.upsertEntity(TableEntity entity,
UpdateMode updateMode,
Duration timeout)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.upsertEntityWithResponse(TableEntity entity,
UpdateMode updateMode)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
com.azure.core.http.rest.Response<Void> |
TableClient.upsertEntityWithResponse(TableEntity entity,
UpdateMode updateMode,
Duration timeout,
com.azure.core.util.Context context)
Inserts an entity into the table if it does not exist, or updates the existing entity using the specified update
mode otherwise.
|
| 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 © 2021 Microsoft Corporation. All rights reserved.