fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/models/storage/sku_name.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Fog
  module ARM
    module Storage
      module Models
        module SkuName
          StandardLRS = 'Standard_LRS'.freeze
          StandardGRS = 'Standard_GRS'.freeze
          StandardRAGRS = 'Standard_RAGRS'.freeze
          StandardZRS = 'Standard_ZRS'.freeze
          PremiumLRS = 'Premium_LRS'.freeze
        end
      end
    end
  end
end