toMap method
Implementation
Map<String, dynamic> toMap() {
return <String, dynamic>{
'configuration': ?configuration?.toMap(),
'description': ?description,
'id': ?id,
'json': ?json,
'name': ?name,
'statements': ?(() { final guardedValue = statements; if (guardedValue == null) return null; return pulumi.Input.encodeList<GetLogDataProtectionPolicyDocumentStatement, Map<String, dynamic>>(guardedValue, (value) => value.toMap()); })(),
'version': ?version,
};
}