class Fog::Resources::AzureRM::ProviderResourceType

ProviderResourceType model class

Public Class Methods

parse(provider_resource_type) click to toggle source
# File lib/fog/azurerm/models/resources/provider_resource_type.rb, line 11
def self.parse(provider_resource_type)
  hash = {}
  hash['resource_type'] = provider_resource_type.resource_type
  hash['locations'] = provider_resource_type.locations
  hash['api_versions'] = provider_resource_type.api_versions if provider_resource_type.respond_to?('api_versions')
  hash['properties'] = provider_resource_type.properties if provider_resource_type.respond_to?('properties')
  hash
end