ManageIQ/azure-armrest

View on GitHub
lib/azure/armrest/role/assignment_service.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# Azure namespace
module Azure
  # Armrest namespace
  module Armrest
    # Role namespace
    module Role
      # Base class for managing Role Assignments
      class AssignmentService < RoleService
        # Create and return a new AssignmentService instance.
        #
        def initialize(armrest_configuration, options = {})
          super(armrest_configuration, 'roleAssignments', 'Microsoft.Authorization', options)
        end
      end
    end
  end
end