forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial public commit for enrichment APIs (Azure#13479)
* Initial public commit for enrichment APIs * Prettier * Add two new fields * Prettier * Remove two fields, fix several descriptions * Remove unneeded format line * Remove incorrect references to operational insights and workspacename Co-authored-by: Tim Paterson <=>
- Loading branch information
1 parent
c0ff082
commit 61770cc
Showing
4 changed files
with
453 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -718,6 +718,8 @@ generatevpnprofile | |
geobias | ||
geocode | ||
geocodes | ||
geodata | ||
Geodata | ||
Geofence | ||
geofences | ||
Geofencing | ||
|
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
31 changes: 31 additions & 0 deletions
31
...osoft.SecurityInsights/preview/2019-01-01-preview/examples/enrichment/GetGeodataByIp.json
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2019-01-01-preview", | ||
"subscriptionId": "bd794837-4d29-4647-9105-6339bfdb4e6a", | ||
"resourceGroupName": "myRg", | ||
"ipAddress": "1.2.3.4" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"asn": "12345", | ||
"carrier": "Microsoft", | ||
"city": "Redmond", | ||
"cityCf": 90, | ||
"continent": "north america", | ||
"country": "united states", | ||
"countryCf": 99, | ||
"ipAddr": "1.2.3.4", | ||
"ipRoutingType": "fixed", | ||
"latitude": "40.2436", | ||
"longitude": "-100.8891", | ||
"organization": "Microsoft", | ||
"organizationType": "tech", | ||
"region": "western usa", | ||
"state": "washington", | ||
"stateCf": null, | ||
"stateCode": "wa" | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.