Sha256: 18e0b8e9e886e0730d44fee84c8fa9d8c13180f0ffb2513cefbe15f8e36cb4aa
Contents?: true
Size: 967 Bytes
Versions: 1
Compression:
Stored size: 967 Bytes
Contents
module Fog module TrafficManager class AzureRM # Traffic Manager Profile Collection for TrafficManager Service class TrafficManagerProfiles < Fog::Collection attribute :resource_group model Fog::TrafficManager::AzureRM::TrafficManagerProfile def all requires :resource_group traffic_manager_profiles = service.list_traffic_manager_profiles(resource_group).map { |profile| Fog::TrafficManager::AzureRM::TrafficManagerProfile.parse(profile) } load(traffic_manager_profiles) end def get(resource_group, traffic_manager_profile_name) profile = service.get_traffic_manager_profile(resource_group, traffic_manager_profile_name) profile_fog = Fog::TrafficManager::AzureRM::TrafficManagerProfile.new(service: service) profile_fog.merge_attributes(Fog::TrafficManager::AzureRM::TrafficManagerProfile.parse(profile)) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.1.2 | lib/fog/azurerm/models/traffic_manager/traffic_manager_profiles.rb |