File: sku_name.rb

package info (click to toggle)
ruby-gitlab-fog-azure-rm 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 756 kB
  • sloc: ruby: 5,926; sh: 9; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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