fog/fog-azure-rm

View on GitHub
lib/fog/azurerm/models/compute/caching_types.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Fog
  module ARM
    module Compute
      module Models
        module CachingTypes
          None = 'None'.freeze
          ReadOnly = 'ReadOnly'.freeze
          ReadWrite = 'ReadWrite'.freeze
        end
      end
    end
  end
end