diff --git a/internal/services/storage/client/client.go b/internal/services/storage/client/client.go index 52d3ecc8f78b..55cfc14a2dee 100644 --- a/internal/services/storage/client/client.go +++ b/internal/services/storage/client/client.go @@ -17,11 +17,11 @@ import ( "github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/filesystems" "github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/paths" "github.com/tombuildsstuff/giovanni/storage/2019-12-12/queue/queues" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" "github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/directories" "github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/files" "github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/shares" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) type Client struct { @@ -256,7 +256,11 @@ func (client Client) QueuesClient(ctx context.Context, account accountDetails) ( } func (client Client) TableEntityClient(ctx context.Context, account accountDetails) (*entities.Client, error) { - // NOTE: Table Entity does not support AzureAD Authentication + if client.storageAdAuth != nil { + entitiesClient := entities.NewWithEnvironment(client.Environment) + entitiesClient.Client.Authorizer = *client.storageAdAuth + return &entitiesClient, nil + } accountKey, err := account.AccountKey(ctx, client) if err != nil { @@ -274,7 +278,12 @@ func (client Client) TableEntityClient(ctx context.Context, account accountDetai } func (client Client) TablesClient(ctx context.Context, account accountDetails) (shim.StorageTableWrapper, error) { - // NOTE: Tables do not support AzureAD Authentication + if client.storageAdAuth != nil { + tablesClient := tables.NewWithEnvironment(client.Environment) + tablesClient.Client.Authorizer = *client.storageAdAuth + shim := shim.NewDataPlaneStorageTableWrapper(&tablesClient) + return shim, nil + } accountKey, err := account.AccountKey(ctx, client) if err != nil { diff --git a/internal/services/storage/parse/storage_table_data_plane.go b/internal/services/storage/parse/storage_table_data_plane.go index 92a6b89ec513..b6832e300e52 100644 --- a/internal/services/storage/parse/storage_table_data_plane.go +++ b/internal/services/storage/parse/storage_table_data_plane.go @@ -6,7 +6,7 @@ import ( "strings" "github.com/hashicorp/terraform-provider-azurerm/internal/resourceid" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) // TODO: tests for this diff --git a/internal/services/storage/shim/tables.go b/internal/services/storage/shim/tables.go index 93f531c65d24..8b4927724005 100644 --- a/internal/services/storage/shim/tables.go +++ b/internal/services/storage/shim/tables.go @@ -3,7 +3,7 @@ package shim import ( "context" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) type StorageTableWrapper interface { diff --git a/internal/services/storage/shim/tables_data_plane.go b/internal/services/storage/shim/tables_data_plane.go index 14cdeb42231a..47f301692fbf 100644 --- a/internal/services/storage/shim/tables_data_plane.go +++ b/internal/services/storage/shim/tables_data_plane.go @@ -4,7 +4,7 @@ import ( "context" "github.com/hashicorp/terraform-provider-azurerm/utils" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) type DataPlaneStorageTableWrapper struct { diff --git a/internal/services/storage/storage_table_entity_data_source.go b/internal/services/storage/storage_table_entity_data_source.go index c0e3eb6acb31..023d7223fb15 100644 --- a/internal/services/storage/storage_table_entity_data_source.go +++ b/internal/services/storage/storage_table_entity_data_source.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities" ) func dataSourceStorageTableEntity() *pluginsdk.Resource { diff --git a/internal/services/storage/storage_table_entity_resource.go b/internal/services/storage/storage_table_entity_resource.go index 18f1495da31e..8f8f5d0fe7ab 100644 --- a/internal/services/storage/storage_table_entity_resource.go +++ b/internal/services/storage/storage_table_entity_resource.go @@ -12,7 +12,7 @@ import ( "github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" "github.com/hashicorp/terraform-provider-azurerm/utils" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities" ) func resourceStorageTableEntity() *pluginsdk.Resource { diff --git a/internal/services/storage/storage_table_entity_resource_test.go b/internal/services/storage/storage_table_entity_resource_test.go index 71eecddc9fa3..2ddf523e7654 100644 --- a/internal/services/storage/storage_table_entity_resource_test.go +++ b/internal/services/storage/storage_table_entity_resource_test.go @@ -10,7 +10,7 @@ import ( "github.com/hashicorp/terraform-provider-azurerm/internal/clients" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/utils" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities" ) type StorageTableEntityResource struct{} @@ -30,6 +30,21 @@ func TestAccTableEntity_basic(t *testing.T) { }) } +func TestAccTableEntity_basicAzureADAuth(t *testing.T) { + data := acceptance.BuildTestData(t, "azurerm_storage_table_entity", "test") + r := StorageTableEntityResource{} + + data.ResourceTest(t, r, []acceptance.TestStep{ + { + Config: r.basicAzureADAuth(data), + Check: acceptance.ComposeTestCheckFunc( + check.That(data.ResourceName).ExistsInAzure(r), + ), + }, + data.ImportStep(), + }) +} + func TestAccTableEntity_requiresImport(t *testing.T) { data := acceptance.BuildTestData(t, "azurerm_storage_table_entity", "test") r := StorageTableEntityResource{} @@ -118,6 +133,44 @@ resource "azurerm_storage_table_entity" "test" { `, template, data.RandomInteger, data.RandomInteger) } +func (r StorageTableEntityResource) basicAzureADAuth(data acceptance.TestData) string { + return fmt.Sprintf(` +provider "azurerm" { + storage_use_azuread = true + features {} +} + +resource "azurerm_resource_group" "test" { + name = "acctestRG-%d" + location = "%s" +} + +resource "azurerm_storage_account" "test" { + name = "acctestsa%s" + resource_group_name = azurerm_resource_group.test.name + location = azurerm_resource_group.test.location + account_tier = "Standard" + account_replication_type = "LRS" +} + +resource "azurerm_storage_table" "test" { + name = "acctestst%d" + storage_account_name = azurerm_storage_account.test.name +} + +resource "azurerm_storage_table_entity" "test" { + storage_account_name = azurerm_storage_account.test.name + table_name = azurerm_storage_table.test.name + + partition_key = "test_partition%d" + row_key = "test_row%d" + entity = { + Foo = "Bar" + } +} +`, data.RandomInteger, data.Locations.Primary, data.RandomString, data.RandomInteger, data.RandomInteger, data.RandomInteger) +} + func (r StorageTableEntityResource) requiresImport(data acceptance.TestData) string { template := r.basic(data) return fmt.Sprintf(` diff --git a/internal/services/storage/storage_table_resource.go b/internal/services/storage/storage_table_resource.go index 08e493445004..e66c66e35e3e 100644 --- a/internal/services/storage/storage_table_resource.go +++ b/internal/services/storage/storage_table_resource.go @@ -13,7 +13,7 @@ import ( "github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk" "github.com/hashicorp/terraform-provider-azurerm/internal/tf/validation" "github.com/hashicorp/terraform-provider-azurerm/internal/timeouts" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) func resourceStorageTable() *pluginsdk.Resource { diff --git a/internal/services/storage/storage_table_resource_test.go b/internal/services/storage/storage_table_resource_test.go index ca30ce08a799..d95daae7bddd 100644 --- a/internal/services/storage/storage_table_resource_test.go +++ b/internal/services/storage/storage_table_resource_test.go @@ -30,6 +30,21 @@ func TestAccStorageTable_basic(t *testing.T) { }) } +func TestAccStorageTable_basicAzureADAuth(t *testing.T) { + data := acceptance.BuildTestData(t, "azurerm_storage_table", "test") + r := StorageTableResource{} + + data.ResourceTest(t, r, []acceptance.TestStep{ + { + Config: r.basicAzureADAuth(data), + Check: acceptance.ComposeTestCheckFunc( + check.That(data.ResourceName).ExistsInAzure(r), + ), + }, + data.ImportStep(), + }) +} + func TestAccStorageTable_requiresImport(t *testing.T) { data := acceptance.BuildTestData(t, "azurerm_storage_table", "test") r := StorageTableResource{} @@ -159,6 +174,37 @@ resource "azurerm_storage_table" "test" { `, data.RandomInteger, data.Locations.Primary, data.RandomString, data.RandomInteger) } +func (r StorageTableResource) basicAzureADAuth(data acceptance.TestData) string { + return fmt.Sprintf(` +provider "azurerm" { + storage_use_azuread = true + features {} +} + +resource "azurerm_resource_group" "test" { + name = "acctestRG-%d" + location = "%s" +} + +resource "azurerm_storage_account" "test" { + name = "acctestacc%s" + resource_group_name = azurerm_resource_group.test.name + location = azurerm_resource_group.test.location + account_tier = "Standard" + account_replication_type = "LRS" + + tags = { + environment = "staging" + } +} + +resource "azurerm_storage_table" "test" { + name = "acctestst%d" + storage_account_name = azurerm_storage_account.test.name +} +`, data.RandomInteger, data.Locations.Primary, data.RandomString, data.RandomInteger) +} + func (r StorageTableResource) requiresImport(data acceptance.TestData) string { template := r.basic(data) return fmt.Sprintf(` diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/README.md b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/README.md similarity index 89% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/README.md rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/README.md index e2fa7ee9b107..e59b5a28335a 100644 --- a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/README.md +++ b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/README.md @@ -1,4 +1,4 @@ -## Table Storage Entities SDK for API version 2019-12-12 +## Table Storage Entities SDK for API version 2020-08-04 This package allows you to interact with the Entities Table Storage API @@ -17,7 +17,7 @@ import ( "time" "github.com/Azure/go-autorest/autorest" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities" ) func Example() error { diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/api.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/api.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/api.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/api.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/client.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/client.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/client.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/client.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/delete.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/delete.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/delete.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/delete.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/get.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/get.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/get.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/get.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert_or_merge.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert_or_merge.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert_or_merge.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert_or_merge.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert_or_replace.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert_or_replace.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/insert_or_replace.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/insert_or_replace.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/models.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/models.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/models.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/models.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/query.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/query.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/query.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/query.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/resource_id.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/resource_id.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/resource_id.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/resource_id.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/version.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/version.go similarity index 89% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/version.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/version.go index abfdb3e1c967..6270953c7923 100644 --- a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities/version.go +++ b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities/version.go @@ -7,7 +7,7 @@ import ( ) // APIVersion is the version of the API used for all Storage API Operations -const APIVersion = "2019-12-12" +const APIVersion = "2020-08-04" func UserAgent() string { return fmt.Sprintf("tombuildsstuff/giovanni/%s storage/%s", version.Number, APIVersion) diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/README.md b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/README.md similarity index 86% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/README.md rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/README.md index 682c006dcfd5..40ec34959a79 100644 --- a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/README.md +++ b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/README.md @@ -1,4 +1,4 @@ -## Table Storage Tables SDK for API version 2019-12-12 +## Table Storage Tables SDK for API version 2020-08-04 This package allows you to interact with the Tables Table Storage API @@ -17,7 +17,7 @@ import ( "time" "github.com/Azure/go-autorest/autorest" - "github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables" + "github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables" ) func Example() error { diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/acl_get.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/acl_get.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/acl_get.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/acl_get.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/acl_set.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/acl_set.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/acl_set.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/acl_set.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/api.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/api.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/api.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/api.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/client.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/client.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/client.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/client.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/create.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/create.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/create.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/create.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/delete.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/delete.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/delete.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/delete.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/exists.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/exists.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/exists.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/exists.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/models.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/models.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/models.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/models.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/query.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/query.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/query.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/query.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/resource_id.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/resource_id.go similarity index 100% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/resource_id.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/resource_id.go diff --git a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/version.go b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/version.go similarity index 89% rename from vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/version.go rename to vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/version.go index 150d32faa44c..05a61a8a7c9d 100644 --- a/vendor/github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables/version.go +++ b/vendor/github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables/version.go @@ -7,7 +7,7 @@ import ( ) // APIVersion is the version of the API used for all Storage API Operations -const APIVersion = "2019-12-12" +const APIVersion = "2020-08-04" func UserAgent() string { return fmt.Sprintf("tombuildsstuff/giovanni/%s storage/%s", version.Number, APIVersion) diff --git a/vendor/modules.txt b/vendor/modules.txt index ebfc1eec1933..7a9e81b28cfb 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -356,11 +356,11 @@ github.com/tombuildsstuff/giovanni/storage/2019-12-12/blob/containers github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/filesystems github.com/tombuildsstuff/giovanni/storage/2019-12-12/datalakestore/paths github.com/tombuildsstuff/giovanni/storage/2019-12-12/queue/queues -github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/entities -github.com/tombuildsstuff/giovanni/storage/2019-12-12/table/tables github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/directories github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/files github.com/tombuildsstuff/giovanni/storage/2020-08-04/file/shares +github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/entities +github.com/tombuildsstuff/giovanni/storage/2020-08-04/table/tables github.com/tombuildsstuff/giovanni/storage/accesscontrol github.com/tombuildsstuff/giovanni/storage/internal/endpoints github.com/tombuildsstuff/giovanni/storage/internal/metadata