NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement.fromMap constructor

NetworkInsightsAccessScopeExcludePathThroughResourceResourceStatement.fromMap(
  1. Map<String, dynamic> map
)

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>()); })(),
  );
}