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