NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement.fromMap constructor
NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement.fromMap()
Implementation
factory NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement.fromMap(Map<String, dynamic> map) {
return NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement(
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>()); })(),
);
}