| 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,
TableEntityUpdateMode updateMode)
Updates an existing
entity using the specified update mode. |
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity,
TableEntityUpdateMode updateMode)
Updates an existing
entity using the specified update mode. |
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.updateEntityWithResponse(TableEntity entity,
TableEntityUpdateMode updateMode,
boolean ifUnchanged)
Updates an existing
entity using the specified update mode. |
com.azure.core.http.rest.Response<Void> |
TableClient.updateEntityWithResponse(TableEntity entity,
TableEntityUpdateMode updateMode,
boolean ifUnchanged,
Duration timeout,
com.azure.core.util.Context context)
Updates an existing
entity using the specified update mode. |
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.upsertEntityWithResponse(TableEntity entity,
TableEntityUpdateMode 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,
TableEntityUpdateMode 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 TableEntityUpdateMode |
TableEntityUpdateMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableEntityUpdateMode[] |
TableEntityUpdateMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.