Skip to content

Commit

Permalink
Update Data connector validator
Browse files Browse the repository at this point in the history
  • Loading branch information
v-atulyadav committed Jul 25, 2023
1 parent aafebe8 commit b451053
Show file tree
Hide file tree
Showing 3 changed files with 532 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .script/dataConnectorValidator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ function getConnectorCategory(dataTypes : any, instructionSteps:[])
{
return ConnectorCategory.Dynamics365Activity;
}
else if (dataTypes[0].name.includes("CrowdstrikeReplicatorV2"))
{
return ConnectorCategory.CrowdstrikeReplicatorV2;
}
return "";
}

Expand Down
3 changes: 2 additions & 1 deletion .script/utils/dataConnector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,6 @@ export enum ConnectorCategory {
AzureDevOpsAuditing="AzureDevOpsAuditing",
ThreatIntelligenceIndicator="ThreatIntelligenceIndicator",
MicrosoftPurviewInformationProtection="MicrosoftPurviewInformationProtection",
Dynamics365Activity="Dynamics365Activity"
Dynamics365Activity="Dynamics365Activity",
CrowdstrikeReplicatorV2="CrowdstrikeReplicatorV2"
}
Loading

0 comments on commit b451053

Please sign in to comment.