GetUserAuthenticationMode.fromMap constructor
Implementation
factory GetUserAuthenticationMode.fromMap(Map<String, dynamic> map) {
return GetUserAuthenticationMode(
passwordCount: pulumi.Input.fromValue((map['passwordCount'] as num).toInt()),
type: pulumi.Input.fromValue(map['type'] as String),
);
}