Thanks. I can explain what I meant. I am trying to create a storage account and assign a MinimumTLS Version 1.2 to it. I see that MS AzureLibrary in the latest master branch has a StorageAccount class that has that property added now. My question is: Can I create my StorageAccount using something like this now and specify TLS property also?
return Retry.operation(() ->
azureConn.getAzure()
.storageAccounts()
.define(accountName)
.withRegion(region)
.withExistingResourceGroup(resourceGroupName)
.withGeneralPurposeAccountKindV2()
.withLargeFileShares(true)
.withSku(StorageAccountSkuType.SKU)
.withTags(tags)
//.minimumTLS(String value)
.create())