ManageIQ/azure-armrest

View on GitHub
lib/azure/armrest/storage/image_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# Azure namespace
module Azure
  # Armrest namespace
  module Armrest
    # Storage namespace
    module Storage
      # Base class for managing images.
      class ImageService < ResourceGroupBasedService
        # Create and return a new ImageService instance.
        #
        def initialize(configuration, options = {})
          super(configuration, 'images', 'Microsoft.Compute', options)
        end
      end # ImageService
    end # Storage
  end # Armrest
end # Azure