Hi, I am see the latest "tag" in MS git library does not have "minTLS" defined in StorageAccount. I am making changes to my MS SDK and trying to Cherry Pick the latest JARS to have that field specified in my codebase. My question is, once I will do this and StorageAccount class will have 'minTLS' version field specified, can I simply call a method to set minTLS of my StorageAccount object? something like this?
return Retry.operation(() ->
azureConn.getAzure()
.storageAccounts()
.define(accountName)
.withRegion(region)
.withExistingResourceGroup(resourceGroupName)
.withGeneralPurposeAccountKindV2()
.withLargeFileShares(true)
.withSku(StorageAccountSkuType.SKU)
.withTags(tags)
//.minimumTLS(String value)
.create())