Class: OSCRuby::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/osc_ruby/client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|config| ... } ⇒ Client

Returns a new instance of Client.

Yields:

Raises:

  • (ArgumentError)


16
17
18
19
20
21
22
# File 'lib/osc_ruby/client.rb', line 16

def initialize
    raise ArgumentError, "block not given" unless block_given?
    self.config ||= OSCRuby::Configuration.new
  yield(config)

  check_config
end

Instance Attribute Details

#configObject

The top-level class that handles configuration and connection to the Oracle Service Cloud REST API.



14
15
16
# File 'lib/osc_ruby/client.rb', line 14

def config
  @config
end

Instance Method Details

#check_configObject



24
25
26
27
28
29
30
31
32
# File 'lib/osc_ruby/client.rb', line 24

def check_config
  if config.interface ==''
    raise ArgumentError, "Interface cannot be nil or blank"
  elsif config.username ==''
    raise ArgumentError, "Username cannot be nil or blank"
  elsif config.password ==''
    raise ArgumentError, "Password cannot be nil or blank"  
  end
end