GetUserAuthenticationMode.fromMap constructor

GetUserAuthenticationMode.fromMap(
  1. Map<String, dynamic> map
)

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),
  );
}