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