Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,7 @@ def get_alerts_details(self, company_name, company_guid):
next_link = response.get("links").get("next")
alerts_data = []
c_data = {}
query_parameter["offset"] = 0
while next_link:
query_parameter["offset"] += query_parameter.get("limit")
c_data["next1"] = self.get_bitsight_data(url, query_parameter)
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"type": "string",
"defaultValue": "ALL",
"metadata": {
"description": "Please add valid company names separated by slash(*). For example: Actors Films*Goliath Investments LLC*HCL Group*Saperix, Inc."
"description": "Please add valid company names separated by asterisk(*). For example: Actors Films*Goliath Investments LLC*HCL Group*Saperix, Inc."
}
},
"WorkspaceID": {
Expand All @@ -59,51 +59,99 @@
},
"Portfolio_Companies_Table_Name":{
"type": "string",
"defaultValue": "Portfolio_Companies"
"defaultValue": "Portfolio_Companies",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Alerts_Table_Name":{
"type": "string",
"defaultValue": "Alerts_data"
"defaultValue": "Alerts_data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Breaches_Table_Name":{
"type": "string",
"defaultValue": "BitsightBreaches_data"
"defaultValue": "BitsightBreaches_data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Company_Table_Name":{
"type": "string",
"defaultValue": "BitsightCompany_details"
"defaultValue": "BitsightCompany_details",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Company_Rating_Details_Table_Name":{
"type": "string",
"defaultValue": "BitsightCompany_rating_details"
"defaultValue": "BitsightCompany_rating_details",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Diligence_Historical_Statistics_Table_Name":{
"type": "string",
"defaultValue": "BitsightDiligence_historical_statistics"
"defaultValue": "BitsightDiligence_historical_statistics",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Diligence_Statistics_Table_Name":{
"type": "string",
"defaultValue": "BitsightDiligence_statistics"
"defaultValue": "BitsightDiligence_statistics",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Findings_Summary_Table_Name":{
"type": "string",
"defaultValue": "BitsightFindings_summary"
"defaultValue": "BitsightFindings_summary",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Findings_Table_Name":{
"type": "string",
"defaultValue": "BitsightFindings_data"
"defaultValue": "BitsightFindings_data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Graph_Table_Name":{
"type": "string",
"defaultValue": "BitsightGraph_data"
"defaultValue": "BitsightGraph_data",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Industrial_Statistics_Table_Name":{
"type": "string",
"defaultValue": "BitsightIndustrial_statistics"
"defaultValue": "BitsightIndustrial_statistics",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"Observation_Statistics_Table_Name":{
"type": "string",
"defaultValue": "BitsightObservation_statistics"
"defaultValue": "BitsightObservation_statistics",
"minLength": 1,
"metadata": {
"description": "Please do not keep this field as empty else you will get validation error"
}
},
"LogLevel":{
"type": "string",
Expand All @@ -128,7 +176,7 @@
"type": "string",
"defaultValue": "0 */30 * * * *",
"metadata": {
"description": "Please enter a valid Quartz cron-expression. (Example: 0 */30 * * * *)"
"description": "Please enter a valid Quartz cron-expression. (Example: 0 */30 * * * *)"
}
},
"AppInsightsWorkspaceResourceID": {
Expand Down Expand Up @@ -186,7 +234,8 @@
}
},
"keySource": "Microsoft.Storage"
}
},
"minimumTlsVersion": "TLS1_2"
}
},
{
Expand Down