Method: Cosmos::Api#cmd_raw_no_checks
- Defined in:
- lib/cosmos/api/cmd_api.rb
#cmd_raw_no_checks(*args, scope: $cosmos_scope, token: $cosmos_token, **kwargs) ⇒ Array<String, String, Hash>
Send a command packet to a target without running conversions or performing any value range checks or hazardous checks both on the command itself and its parameters.
Accepts two different calling styles:
cmd_raw_no_checks("TGT CMD with PARAM1 val, PARAM2 val")
cmd_raw_no_checks('TGT','CMD','PARAM1'=>val,'PARAM2'=>val)
Favor the first syntax where possible as it is more succinct.
174 175 176 177 |
# File 'lib/cosmos/api/cmd_api.rb', line 174 def cmd_raw_no_checks(*args, scope: $cosmos_scope, token: $cosmos_token, **kwargs) args << kwargs unless kwargs.empty? cmd_implementation(false, false, true, 'cmd_raw_no_checks', *args, scope: scope, token: token) end |