Skip to content

Commit 1b9d629

Browse files
authored
Merge pull request Azure#13283 from Azure/v-shukore/ProofpointTAP-arm-ttk
Fix arm-ttk failures for ProofpointTAP
2 parents 8ed24ff + ded9edd commit 1b9d629

File tree

2 files changed

+11
-16
lines changed

2 files changed

+11
-16
lines changed
1.59 KB
Binary file not shown.

Solutions/ProofPointTap/Package/mainTemplate.json

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,12 @@
126126
"playbookId4": "[resourceId('Microsoft.Logic/workflows', variables('playbookContentId4'))]",
127127
"playbookTemplateSpecName4": "[concat(parameters('workspace'),'/Microsoft.SecurityInsights/',concat(parameters('workspace'),'-pl-',uniquestring(variables('_playbookContentId4'))))]",
128128
"_playbookcontentProductId4": "[concat(take(variables('_solutionId'),50),'-','pl','-', uniqueString(concat(variables('_solutionId'),'-','Playbook','-',variables('_playbookContentId4'),'-', variables('playbookVersion4'))))]",
129-
"_solutioncontentProductId": "[concat(take(variables('_solutionId'),50),'-','sl','-', uniqueString(concat(variables('_solutionId'),'-','Solution','-',variables('_solutionId'),'-', variables('_solutionVersion'))))]"
129+
"_solutioncontentProductId": "[concat(take(variables('_solutionId'),50),'-','sl','-', uniqueString(concat(variables('_solutionId'),'-','Solution','-',variables('_solutionId'),'-', variables('_solutionVersion'))))]",
130+
"operation": "getCampaignById",
131+
"operation1": "getVAP",
132+
"operation2": "getForensics",
133+
"operation3": "getTopClickers",
134+
"operation4": "decodeURL"
130135
},
131136
"resources": [
132137
{
@@ -2196,16 +2201,6 @@
21962201
}
21972202
},
21982203
"variables": {
2199-
"operationId-getCampaignById": "getCampaignById",
2200-
"_operationId-getCampaignById": "[[variables('operationId-getCampaignById')]",
2201-
"operationId-getVAP": "getVAP",
2202-
"_operationId-getVAP": "[[variables('operationId-getVAP')]",
2203-
"operationId-getForensics": "getForensics",
2204-
"_operationId-getForensics": "[[variables('operationId-getForensics')]",
2205-
"operationId-getTopClickers": "getTopClickers",
2206-
"_operationId-getTopClickers": "[[variables('operationId-getTopClickers')]",
2207-
"operationId-decodeURL": "decodeURL",
2208-
"_operationId-decodeURL": "[[variables('operationId-decodeURL')]",
22092204
"workspace-location-inline": "[concat('[resourceGroup().locatio', 'n]')]",
22102205
"playbookContentId1": "ProofpointTAPConnector",
22112206
"playbookId1": "[[resourceId('Microsoft.Web/customApis', parameters('customApis_ProofpointTAP_name'))]",
@@ -2274,7 +2269,7 @@
22742269
"get": {
22752270
"summary": "Get Campaign by Id",
22762271
"description": "Fetch detailed information for a given campaign.",
2277-
"operationId": "[[variables('_operationId-getCampaignById')]",
2272+
"operationId": "[[variables('operation')]",
22782273
"produces": [
22792274
"application/json"
22802275
],
@@ -2476,7 +2471,7 @@
24762471
"get": {
24772472
"summary": "Get Very Attacked People",
24782473
"description": "Fetch the identities and attack index breakdown of Very Attacked People within your organization for a given period.",
2479-
"operationId": "[[variables('_operationId-getVAP')]",
2474+
"operationId": "[[variables('operation1')]",
24802475
"produces": [
24812476
"application/json"
24822477
],
@@ -2830,7 +2825,7 @@
28302825
},
28312826
"summary": "Get Forensics",
28322827
"description": "Fetch forensic information for a given threat or campaign.",
2833-
"operationId": "[[variables('_operationId-getForensics')]",
2828+
"operationId": "[[variables('operation2')]",
28342829
"parameters": [
28352830
{
28362831
"name": "campaignId",
@@ -2966,7 +2961,7 @@
29662961
},
29672962
"summary": "Get top clickers",
29682963
"description": "Fetch the identities and attack index of the top clickers within your organization for a given period. Top clickers are the users who have demonstrated a tendency to click on malicious URLs, regardless of whether the clicks were blocked or not. Knowing who are more susceptible to threats is useful for proactive security approaches such as security training assignments.",
2969-
"operationId": "[[variables('_operationId-getTopClickers')]",
2964+
"operationId": "[[variables('operation3')]",
29702965
"parameters": [
29712966
{
29722967
"name": "window",
@@ -3058,7 +3053,7 @@
30583053
},
30593054
"summary": "Decode URL",
30603055
"description": "Decodes one or more URLs. Available fields in results vary, depending on if the request is authenticated.",
3061-
"operationId": "[[variables('_operationId-decodeURL')]",
3056+
"operationId": "[[variables('operation4')]",
30623057
"parameters": [
30633058
{
30643059
"name": "Content-Type",

0 commit comments

Comments
 (0)