azure: add support for hot, cool, or cool access tiers

This commit is contained in:
Srigovind Nayak
2024-10-20 15:27:21 +05:30
parent 5fe6607127
commit bff3341d10
4 changed files with 68 additions and 7 deletions

View File

@@ -22,7 +22,8 @@ type Config struct {
Container string
Prefix string
Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"`
Connections uint `option:"connections" help:"set a limit for the number of concurrent connections (default: 5)"`
AccessTier string `option:"access-tier" help:"set the access tier for the blob storage (default: inferred from the storage account defaults)"`
}
// NewConfig returns a new Config with the default values filled in.