Sha256: 80861f09d0fcd71f22f13b42abdf0ec9a65b39b843bd58bdc89600a14ea1fa96
Contents?: true
Size: 1.27 KB
Versions: 4
Compression:
Stored size: 1.27 KB
Contents
require 'fog/core/collection' require 'fog/azurerm/models/network/express_route_circuit_peering' module Fog module Network class AzureRM # ExpressRouteCircuitPeering collection class for Network Service class ExpressRouteCircuitPeerings < Fog::Collection model Fog::Network::AzureRM::ExpressRouteCircuitPeering attribute :resource_group attribute :circuit_name def all requires :resource_group requires :circuit_name circuit_peerings = [] service.list_express_route_circuit_peerings(resource_group, circuit_name).each do |circuit_peering| circuit_peerings << Fog::Network::AzureRM::ExpressRouteCircuitPeering.parse(circuit_peering) end load(circuit_peerings) end def get(resource_group_name, peering_name, circuit_name) circuit_peering = service.get_express_route_circuit_peering(resource_group_name, peering_name, circuit_name) express_route_circuit_peering = Fog::Network::AzureRM::ExpressRouteCircuitPeering.new(service: service) express_route_circuit_peering.merge_attributes(Fog::Network::AzureRM::ExpressRouteCircuitPeering.parse(circuit_peering)) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems