-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated- Meraki Rest API Authorization Behavior
- Loading branch information
1 parent
4f920ca
commit 8ec8c68
Showing
4 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ | |
"email": "[email protected]", | ||
"_email": "[variables('email')]", | ||
"_solutionName": "Cisco Meraki Events via REST API", | ||
"_solutionVersion": "3.0.1", | ||
"_solutionVersion": "3.0.2", | ||
"solutionId": "azuresentinel.azure-sentinel-solution-ciscomerakinativepoller", | ||
"_solutionId": "[variables('solutionId')]", | ||
"workspaceResourceId": "[resourceId('microsoft.OperationalInsights/Workspaces', parameters('workspace'))]", | ||
|
@@ -823,7 +823,8 @@ | |
"auth": { | ||
"type": "APIKey", | ||
"ApiKey": "[[parameters('apikey')]", | ||
"ApiKeyName": "X-Cisco-Meraki-API-Key" | ||
"ApiKeyName": "Authorization", | ||
"ApiKeyIdentifier": "Bearer" | ||
}, | ||
"request": { | ||
"apiEndpoint": "[[concat('https://api.meraki.com/api/v1/organizations/', parameters('organization'), '/apiRequests')]", | ||
|
@@ -871,7 +872,8 @@ | |
"auth": { | ||
"type": "APIKey", | ||
"ApiKey": "[[parameters('apikey')]", | ||
"ApiKeyName": "X-Cisco-Meraki-API-Key" | ||
"ApiKeyName": "Authorization", | ||
"ApiKeyIdentifier": "Bearer" | ||
}, | ||
"request": { | ||
"apiEndpoint": "[[concat('https://api.meraki.com/api/v1/organizations/', parameters('organization'), '/configurationChanges')]", | ||
|
@@ -919,7 +921,8 @@ | |
"auth": { | ||
"type": "APIKey", | ||
"ApiKey": "[[parameters('apikey')]", | ||
"ApiKeyName": "X-Cisco-Meraki-API-Key" | ||
"ApiKeyName": "Authorization", | ||
"ApiKeyIdentifier": "Bearer" | ||
}, | ||
"request": { | ||
"apiEndpoint": "[[concat('https://api.meraki.com/api/v1/organizations/', parameters('organization'), '/appliance/security/events')]", | ||
|
@@ -966,7 +969,7 @@ | |
"apiVersion": "2023-04-01-preview", | ||
"location": "[parameters('workspace-location')]", | ||
"properties": { | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"kind": "Solution", | ||
"contentSchemaVersion": "3.0.0", | ||
"displayName": "Cisco Meraki Events via REST API", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
| **Version** | **Date Modified (DD-MM-YYYY)** | **Change History** | | ||
|-------------|--------------------------------|--------------------------------------------------------------------| | ||
| 3.0.2 | 10-10-2024 | Updated Cisco Meraki via REST API authorization behaviour | | ||
| 3.0.1 | 30-09-2024 | Cisco Meraki via REST API configuration Changes pagination fix | | ||
| 3.0.0 | 27-12-2023 | Added Solution with CCP connector | |