NetworkInsightsAccessScopeExcludePathDestinationResourceStatement.fromMap constructor
NetworkInsightsAccessScopeExcludePathDestinationResourceStatement.fromMap()
Implementation
factory NetworkInsightsAccessScopeExcludePathDestinationResourceStatement.fromMap(Map<String, dynamic> map) {
return NetworkInsightsAccessScopeExcludePathDestinationResourceStatement(
resourceTypes: (() { final guardedValue = map['resourceTypes']; if (guardedValue == null) return null; return pulumi.Input.fromValue((guardedValue as List).cast<String>()); })(),
resources: (() { final guardedValue = map['resources']; if (guardedValue == null) return null; return pulumi.Input.fromValue((guardedValue as List).cast<String>()); })(),
);
}