toMap method
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'agentSocketPath': ?agentSocketPath,
'dialErrorLimit': ?dialErrorLimit,
'host': host,
'hostKey': ?hostKey,
'password': ?password,
'perDialTimeout': ?perDialTimeout,
'port': ?port,
'privateKey': ?privateKey,
'privateKeyPassword': ?privateKeyPassword,
'proxy': ?pulumi.Input.mapOptionalInputValue<ProxyConnection, Map<String, dynamic>>(proxy, (value) => value.toMap()),
'user': ?user,
};
}