Sha256: 14757b91beee1a293083bf3019b1b5c34bd5c9075243e8ddd4763d793f7c0805

Contents?: true

Size: 692 Bytes

Versions: 7

Compression:

Stored size: 692 Bytes

Contents

# frozen_string_literal: true

require 'cloud_party/context'
require 'cloud_party/responses'
module CloudParty
  module Nodes
    class Accounts
      include CloudParty::Context
      include HTTParty
      base_uri 'api.cloudflare.com:443/client/v4'
      headers 'X-Auth-Email' => cfg.email,
              'X-Auth-Key' => cfg.api_key,
              'Content-Type' => 'application/json',
              'User-Agent' => "CloudParty/#{CloudParty::VERSION}"

      def initialize(options = nil)
        super()
        @options = options
      end

      def list
        CloudParty::Responses::Accounts.new(:get, '/accounts', self.class.get('/accounts'), @options)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
cloud_party-0.1.7 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.6 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.5 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.4 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.3 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.2 lib/cloud_party/nodes/accounts.rb
cloud_party-0.1.1 lib/cloud_party/nodes/accounts.rb