Sha256: 75da306d2d29bcbddd7467bf4533b31de6b016fbbf27233ffdae9f02fad3a097

Contents?: true

Size: 1.54 KB

Versions: 1

Compression:

Stored size: 1.54 KB

Contents

=begin
#Dkron REST API

#You can communicate with Dkron using a RESTful JSON API over HTTP. Dkron nodes usually listen on port `8080` for API requests. All examples in this section assume that you've found a running leader at `localhost:8080`.  Dkron implements a RESTful JSON API over HTTP to communicate with software clients. Dkron listens in port `8080` by default. All examples in this section assume that you're using the default port.  Default API responses are unformatted JSON add the `pretty=true` param to format the response. 

OpenAPI spec version: 1

Generated by: https://github.com/swagger-api/swagger-codegen.git
Swagger Codegen version: 2.4.18

=end

# Common files
require 'dkron-rb/api_client'
require 'dkron-rb/api_error'
require 'dkron-rb/version'
require 'dkron-rb/configuration'

# Models
require 'dkron-rb/models/execution'
require 'dkron-rb/models/job'
require 'dkron-rb/models/member'
require 'dkron-rb/models/processors'
require 'dkron-rb/models/restore'
require 'dkron-rb/models/status'

# APIs
require 'dkron-rb/api/default_api'
require 'dkron-rb/api/executions_api'
require 'dkron-rb/api/jobs_api'
require 'dkron-rb/api/members_api'

module Dkron
  class << self
    # Customize default settings for the SDK using block.
    #   Dkron.configure do |config|
    #     config.username = "xxx"
    #     config.password = "xxx"
    #   end
    # If no block given, return the default Configuration object.
    def configure
      if block_given?
        yield(Configuration.default)
      else
        Configuration.default
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dkron-rb-1.1.0 lib/dkron-rb.rb