@azure/data-tables 13.3.0-alpha.20241001.1 → 13.3.0-alpha.20241002.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -3606,6 +3606,7 @@ class TableServiceClient {
3606
3606
  * secondary location endpoint when read-access geo-redundant replication is enabled for the account.
3607
3607
  * @param options - The options parameters.
3608
3608
  */
3609
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
3609
3610
  async getStatistics(options = {}) {
3610
3611
  return tracingClient.withSpan("TableServiceClient.getStatistics", options, (updatedOptions) => this.service.getStatistics(injectSecondaryEndpointHeader(updatedOptions)));
3611
3612
  }
@@ -3614,6 +3615,7 @@ class TableServiceClient {
3614
3615
  * (Cross-Origin Resource Sharing) rules.
3615
3616
  * @param options - The options parameters.
3616
3617
  */
3618
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
3617
3619
  getProperties(options = {}) {
3618
3620
  return tracingClient.withSpan("TableServiceClient.getProperties", options, (updatedOptions) => this.service.getProperties(updatedOptions));
3619
3621
  }
@@ -3631,6 +3633,7 @@ class TableServiceClient {
3631
3633
  * @param name - The name of the table.
3632
3634
  * @param options - The options parameters.
3633
3635
  */
3636
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
3634
3637
  createTable(name, options = {}) {
3635
3638
  return tracingClient.withSpan("TableServiceClient.createTable", options, async (updatedOptions) => {
3636
3639
  try {
@@ -3646,6 +3649,7 @@ class TableServiceClient {
3646
3649
  * @param name - The name of the table.
3647
3650
  * @param options - The options parameters.
3648
3651
  */
3652
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
3649
3653
  deleteTable(name, options = {}) {
3650
3654
  return tracingClient.withSpan("TableServiceClient.deleteTable", options, async (updatedOptions) => {
3651
3655
  try {
@@ -4919,6 +4923,7 @@ class TableClient {
4919
4923
  * Shared Access Signatures.
4920
4924
  * @param options - The options parameters.
4921
4925
  */
4926
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
4922
4927
  getAccessPolicy(options = {}) {
4923
4928
  return tracingClient.withSpan("TableClient.getAccessPolicy", options, async (updatedOptions) => {
4924
4929
  const signedIdentifiers = await this.table.getAccessPolicy(this.tableName, updatedOptions);
@@ -4930,7 +4935,9 @@ class TableClient {
4930
4935
  * @param tableAcl - The Access Control List for the table.
4931
4936
  * @param options - The options parameters.
4932
4937
  */
4933
- setAccessPolicy(tableAcl, options = {}) {
4938
+ setAccessPolicy(tableAcl,
4939
+ // eslint-disable-next-line @azure/azure-sdk/ts-naming-options
4940
+ options = {}) {
4934
4941
  return tracingClient.withSpan("TableClient.setAccessPolicy", options, (updatedOptions) => {
4935
4942
  const serlializedAcl = serializeSignedIdentifiers(tableAcl);
4936
4943
  return this.table.setAccessPolicy(this.tableName, Object.assign(Object.assign({}, updatedOptions), { tableAcl: serlializedAcl }));