Class: Com::Vmware::Appliance::Access::Ssh
- Inherits:
-
VAPI::Bindings::VapiService
- Object
- VAPI::Bindings::VapiService
- Com::Vmware::Appliance::Access::Ssh
- Defined in:
- /build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/access.rb
Overview
``Com::Vmware::Appliance::Access::Ssh`` class provides methods Get/Set enabled state of SSH-based controlled CLI.
Instance Method Summary (collapse)
-
- (Boolean) get
Get enabled state of the SSH-based controlled CLI.
-
- (Ssh) initialize(config)
constructor
Constructs a new instance.
-
- (Void) set(enabled)
Set enabled state of the SSH-based controlled CLI.
Constructor Details
- (Ssh) initialize(config)
Constructs a new instance.
323 324 325 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/access.rb', line 323 def initialize(config) super(config, @@service_info) end |
Instance Method Details
- (Boolean) get
Get enabled state of the SSH-based controlled CLI.
348 349 350 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/access.rb', line 348 def get() invoke_with_info(@@get_info) end |
- (Void) set(enabled)
Set enabled state of the SSH-based controlled CLI.
335 336 337 338 339 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/access.rb', line 335 def set(enabled) invoke_with_info(@@set_info, { 'enabled' => enabled, }) end |