class Pendulum::DSL::Output::Nend

Public Instance Methods

to_url() click to toggle source
# File lib/pendulum/dsl/output/nend.rb, line 6
def to_url
  {
    type:                   'nend',
    apikey:                 @api_key,
    target_type:            @type,
    target_name:            @name,
    retry_initial_wait_sec: @retry_delay || 5,
    retry_limit:            @retry_limit || 4,
    application_name:       'Treasure Data nend Output'
  }.to_json
end