| 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 |
|---|---|
TableEntity |
TableClient.getEntity(String partitionKey,
String rowKey)
Gets a single
entity from the table. |
| Modifier and Type | Method and Description |
|---|---|
void |
TableClient.createEntity(TableEntity entity)
Inserts an
entity into the table. |
Mono<Void> |
TableAsyncClient.createEntity(TableEntity entity)
Inserts an
entity into the table. |
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.createEntityWithResponse(TableEntity entity)
Inserts an
entity into the table. |
com.azure.core.http.rest.Response<Void> |
TableClient.createEntityWithResponse(TableEntity entity,
Duration timeout,
com.azure.core.util.Context context)
Inserts an
entity into the table. |
void |
TableClient.deleteEntity(TableEntity entity)
Deletes an
entity from the table. |
Mono<Void> |
TableAsyncClient.deleteEntity(TableEntity entity)
Deletes an
entity from the table. |
Mono<com.azure.core.http.rest.Response<Void>> |
TableAsyncClient.deleteEntityWithResponse(TableEntity entity,
boolean ifUnchanged)
Deletes an
entity from the table. |
com.azure.core.http.rest.Response<Void> |
TableClient.deleteEntityWithResponse(TableEntity entity,
boolean ifUnchanged,
Duration timeout,
com.azure.core.util.Context context)
Deletes an
entity from the table. |
void |
TableClient.updateEntity(TableEntity entity)
|
Mono<Void> |
TableAsyncClient.updateEntity(TableEntity entity)
|
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. |
void |
TableClient.upsertEntity(TableEntity entity)
|
Mono<Void> |
TableAsyncClient.upsertEntity(TableEntity entity)
|
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 |
|---|---|
TableEntity |
TableEntity.addProperty(String key,
Object value)
Adds a single property to the entity's properties map.
|
TableEntity |
TableTransactionAction.getEntity()
Get the
table entity to which the actionType will be applied. |
TableEntity |
TableEntity.setProperties(Map<String,Object> properties)
Sets the contents of the provided map to the entity's properties map.
|
| Constructor and Description |
|---|
TableTransactionAction(TableTransactionActionType actionType,
TableEntity entity)
Initializes a new instance of the
TableTransactionAction. |
TableTransactionAction(TableTransactionActionType actionType,
TableEntity entity,
boolean ifUnchanged)
Initializes a new instance of the
TableTransactionAction. |
Copyright © 2021 Microsoft Corporation. All rights reserved.