| Package | Description |
|---|---|
| com.azure.data.tables |
Package containing the classes for Tables Clients.
|
| com.azure.data.tables.sas |
Package containing SAS (shared access signature) classes used by Azure Tables.
|
| Modifier and Type | Method and Description |
|---|---|
String |
TableClient.generateSas(TableSasSignatureValues tableSasSignatureValues)
Generates a service SAS for the table using the specified
TableSasSignatureValues. |
String |
TableAsyncClient.generateSas(TableSasSignatureValues tableSasSignatureValues)
Generates a service SAS for the table using the specified
TableSasSignatureValues. |
| Modifier and Type | Method and Description |
|---|---|
TableSasSignatureValues |
TableSasSignatureValues.setEndPartitionKey(String endPartitionKey)
Set the maximum partition key accessible with this shared access signature.
|
TableSasSignatureValues |
TableSasSignatureValues.setEndRowKey(String endRowKey)
Set the maximum row key accessible with this shared access signature.
|
TableSasSignatureValues |
TableSasSignatureValues.setExpiryTime(OffsetDateTime expiryTime)
Sets the time after which the SAS will no longer work.
|
TableSasSignatureValues |
TableSasSignatureValues.setIdentifier(String identifier)
Sets the name of the access policy on the table this SAS references if any.
|
TableSasSignatureValues |
TableSasSignatureValues.setPermissions(TableSasPermission permissions)
Sets the permissions string allowed by the SAS.
|
TableSasSignatureValues |
TableSasSignatureValues.setProtocol(TableSasProtocol protocol)
Sets the
TableSasProtocol which determines the protocols allowed by the SAS. |
TableSasSignatureValues |
TableSasSignatureValues.setSasIpRange(TableSasIpRange sasIpRange)
Sets the
TableSasIpRange which determines the IP ranges that are allowed to use the SAS. |
TableSasSignatureValues |
TableSasSignatureValues.setStartPartitionKey(String startPartitionKey)
Set the minimum partition key accessible with this shared access signature.
|
TableSasSignatureValues |
TableSasSignatureValues.setStartRowKey(String startRowKey)
Set the minimum row key accessible with this shared access signature.
|
TableSasSignatureValues |
TableSasSignatureValues.setStartTime(OffsetDateTime startTime)
Sets when the SAS will take effect.
|
TableSasSignatureValues |
TableSasSignatureValues.setVersion(String version)
Sets the version of the service this SAS will target.
|
Copyright © 2021 Microsoft Corporation. All rights reserved.