Sha256: 73b1c878672c475761f31df72fbaf2209e13bf26c95521aaca9a8873df47ca23
Contents?: true
Size: 663 Bytes
Versions: 2
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true require 'cloud_party/context' require 'cloud_party/responses' module CloudParty module Nodes class IPs < 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::IPs.new(:get, '/ips', self.class.get('/ips'), @options) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cloud_party-0.1.1.pre.alpha.1 | lib/cloud_party/nodes/ips.rb |
cloud_party-0.1.0.pre.pre.1 | lib/cloud_party/nodes/ips.rb |