We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b148eff commit 689d5a0Copy full SHA for 689d5a0
oci/audit_events_data_source.go
@@ -560,9 +560,9 @@ func responseToMap(obj *oci_audit.Response) map[string]interface{} {
560
func stateChangeToMap(obj *oci_audit.StateChange) map[string]interface{} {
561
result := map[string]interface{}{}
562
563
- result["current"] = obj.Current
+ result["current"] = genericMapToJsonMap(obj.Current)
564
565
- result["previous"] = obj.Previous
+ result["previous"] = genericMapToJsonMap(obj.Previous)
566
567
return result
568
}
0 commit comments