mirror of
https://github.com/fog/fog-aws.git
synced 2022-11-09 13:50:52 -05:00
30 lines
801 B
Ruby
30 lines
801 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/aws/models/cdn/distribution'
|
|
require 'fog/aws/models/cdn/distributions_helper'
|
|
|
|
module Fog
|
|
module CDN
|
|
class AWS
|
|
class Distributions < Fog::Collection
|
|
include Fog::CDN::AWS::DistributionsHelper
|
|
|
|
model Fog::CDN::AWS::Distribution
|
|
|
|
attribute :marker, :aliases => 'Marker'
|
|
attribute :max_items, :aliases => 'MaxItems'
|
|
attribute :is_truncated, :aliases => 'IsTruncated'
|
|
|
|
def get_distribution(dist_id)
|
|
service.get_distribution(dist_id)
|
|
end
|
|
|
|
def list_distributions(options = {})
|
|
service.get_distribution_list(options)
|
|
end
|
|
|
|
alias_method :each_distribution_this_page, :each
|
|
alias_method :each, :each_distribution
|
|
end
|
|
end
|
|
end
|
|
end
|