azure-storage-table\src\Table\Models\BatchOperations.php
You may obtain a copy of the License at https://github.com/azure/azure-storage-php/LICENSE
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
PHP version 5
- Author
- Azure Storage PHP SDK
- Category
- Microsoft
- Copyright
- 2016 Microsoft Corporation
- License
- https://github.com/azure/azure-storage-php/LICENSE
- Link
- https://github.com/azure/azure-storage-php
- Package
- MicrosoftAzure\Storage\Table\Models
\MicrosoftAzure\Storage\Table\Models\BatchOperations
- Author
- Azure Storage PHP SDK
- Category
- Microsoft
- Copyright
- 2016 Microsoft Corporation
- License
- https://github.com/azure/azure-storage-php/LICENSE
- Link
- https://github.com/azure/azure-storage-php
Methods

addDeleteEntity(string $table, string $partitionKey, string $rowKey, string $etag = null) : voidAdds deleteEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $partitionKey | string | The entity partition key. |
| $rowKey | string | The entity row key. |
| $etag | string | The entity etag. |

addInsertEntity(string $table, \MicrosoftAzure\Storage\Table\Models\Entity $entity) : voidAdds insertEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $entity | \MicrosoftAzure\Storage\Table\Models\Entity | The entity instance. |

addInsertOrMergeEntity(string $table, \MicrosoftAzure\Storage\Table\Models\Entity $entity) : voidAdds insertOrMergeEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $entity | \MicrosoftAzure\Storage\Table\Models\Entity | The entity instance. |

addInsertOrReplaceEntity(string $table, \MicrosoftAzure\Storage\Table\Models\Entity $entity) : voidAdds insertOrReplaceEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $entity | \MicrosoftAzure\Storage\Table\Models\Entity | The entity instance. |

addMergeEntity(string $table, \MicrosoftAzure\Storage\Table\Models\Entity $entity) : voidAdds mergeEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $entity | \MicrosoftAzure\Storage\Table\Models\Entity | The entity instance. |

addOperation(mixed $operation) : voidAdds operation to the batch operations.
| Name | Type | Description |
|---|---|---|
| $operation | mixed | The operation to add. |

addUpdateEntity(string $table, \MicrosoftAzure\Storage\Table\Models\Entity $entity) : voidAdds updateEntity operation.
| Name | Type | Description |
|---|---|---|
| $table | string | The table name. |
| $entity | \MicrosoftAzure\Storage\Table\Models\Entity | The entity instance. |