Class: Bolt::Config::Transport::WinRM

Inherits:
Base
  • Object
show all
Defined in:
lib/bolt/config/transport/winrm.rb

Constant Summary collapse

OPTIONS =
%w[
  basic-auth-only
  cacert
  cleanup
  connect-timeout
  extensions
  file-protocol
  host
  interpreters
  password
  port
  realm
  smb-port
  ssl
  ssl-verify
  tmpdir
  user
].freeze
DEFAULTS =
{
  "basic-auth-only" => false,
  "cleanup"         => true,
  "connect-timeout" => 10,
  "ssl"             => true,
  "ssl-verify"      => true,
  "file-protocol"   => "winrm"
}.freeze

Constants included from Options

Options::LOGIN_SHELLS, Options::RUN_AS_OPTIONS, Options::TRANSPORT_OPTIONS

Instance Attribute Summary

Attributes inherited from Base

#input

Method Summary

Methods inherited from Base

#[], #dig, #fetch, #include?, #initialize, #merge, options, #resolve, #resolved?, schema, #to_h

Constructor Details

This class inherits a constructor from Bolt::Config::Transport::Base