feat: change azure disk api-version

This commit is contained in:
andyzhangx 2020-03-19 10:51:53 +00:00
parent 21d4d13d98
commit 12c6c81b1a
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ import (
) )
const ( const (
defaultStorageAccountType = compute.StandardLRS defaultStorageAccountType = compute.StandardSSDLRS
defaultAzureDiskKind = v1.AzureManagedDisk defaultAzureDiskKind = v1.AzureManagedDisk
defaultAzureDataDiskCachingMode = v1.AzureDataDiskCachingReadOnly defaultAzureDataDiskCachingMode = v1.AzureDataDiskCachingReadOnly
) )

View File

@ -146,7 +146,7 @@ func TestNormalizeStorageAccountType(t *testing.T) {
}{ }{
{ {
storageAccountType: "", storageAccountType: "",
expectedAccountType: compute.StandardLRS, expectedAccountType: compute.StandardSSDLRS,
expectError: false, expectError: false,
}, },
{ {

View File

@ -27,7 +27,7 @@ import (
const ( const (
// APIVersion is the API version for compute. // APIVersion is the API version for compute.
APIVersion = "2019-07-01" APIVersion = "2019-11-01"
) )
// Interface is the client interface for Disks. // Interface is the client interface for Disks.