Sha256: 9393f964b8d19247b45d430b441bdc375eed4f0b596cb042a152828eadce1dcb
Contents?: true
Size: 1.09 KB
Versions: 56
Compression:
Stored size: 1.09 KB
Contents
# frozen_string_literal: true # # Collect ServiceQuota resources # class ServiceQuotas < Mapper # # Returns an array of resources. # def collect resources = [] # # list_service_quotas # # TODO: expand to more services as needed # # service_codes = %w[autoscaling ec2 ecr eks elasticloadbalancing fargate iam vpc] service_codes = %w[ec2 eks iam] service_codes.each do |service| @client.list_service_quotas({ service_code: service }).each_with_index do |response, page| log(response.context.operation_name, service, page) response.quotas.each do |quota| struct = OpenStruct.new(quota.to_h) struct.type = 'quota' struct.arn = quota.quota_arn resources.push(struct.to_h) end end rescue Aws::ServiceQuotas::Errors::ServiceError => e log_error(e.code, service) raise e unless suppressed_errors.include?(e.code) && !@options.quit_on_exception end resources end private # not an error def suppressed_errors %w[ NoSuchResourceException ] end end
Version data entries
56 entries across 56 versions & 1 rubygems