Class: Fog::TrafficManager::AzureRM::TrafficManagerProfiles

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/azurerm/models/traffic_manager/traffic_manager_profiles.rb

Overview

Traffic Manager Profile Collection for TrafficManager Service

Instance Method Summary collapse

Instance Method Details

#allObject



9
10
11
12
13
14
15
16
# File 'lib/fog/azurerm/models/traffic_manager/traffic_manager_profiles.rb', line 9

def all
  requires :resource_group
  traffic_manager_profiles = []
  service.list_traffic_manager_profiles(resource_group).each do |profile|
    traffic_manager_profiles << Fog::TrafficManager::AzureRM::TrafficManagerProfile.parse(profile)
  end
  load(traffic_manager_profiles)
end

#get(resource_group, traffic_manager_profile_name) ⇒ Object



18
19
20
21
22
# File 'lib/fog/azurerm/models/traffic_manager/traffic_manager_profiles.rb', line 18

def get(resource_group, traffic_manager_profile_name)
  profile = service.get_traffic_manager_profile(resource_group, traffic_manager_profile_name)
  profile_obj = Fog::TrafficManager::AzureRM::TrafficManagerProfile.new(service: service)
  profile_obj.merge_attributes(Fog::TrafficManager::AzureRM::TrafficManagerProfile.parse(profile))
end