module WiotSdk

Constants

DEFAULT_BASE_URL
VERSION

Public Class Methods

init(username:, api_key:, space:, project:, base_url: DEFAULT_BASE_URL) click to toggle source
# File lib/wiot-sdk.rb, line 9
def self.init(username:, api_key:, space:, project:, base_url: DEFAULT_BASE_URL)
  Client.init username, api_key, space, project, base_url
end
init_json(file_path:, base_url: DEFAULT_BASE_URL) click to toggle source
# File lib/wiot-sdk.rb, line 17
def self.init_json(file_path:, base_url: DEFAULT_BASE_URL)
  Client.init_json file_path, base_url
end
init_yaml(file_path:, base_url: DEFAULT_BASE_URL) click to toggle source
# File lib/wiot-sdk.rb, line 13
def self.init_yaml(file_path:, base_url: DEFAULT_BASE_URL)
  Client.init_yaml file_path, base_url
end