MicrosoftAzureSentinel.Api
1.0.13
Suggested Alternatives
Additional Details
This project quickly turned into a Microsoft Azure project, so please use that one instead!
dotnet add package MicrosoftAzureSentinel.Api --version 1.0.13
NuGet\Install-Package MicrosoftAzureSentinel.Api -Version 1.0.13
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MicrosoftAzureSentinel.Api" Version="1.0.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MicrosoftAzureSentinel.Api --version 1.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MicrosoftAzureSentinel.Api, 1.0.13"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MicrosoftAzureSentinel.Api as a Cake Addin #addin nuget:?package=MicrosoftAzureSentinel.Api&version=1.0.13 // Install MicrosoftAzureSentinel.Api as a Cake Tool #tool nuget:?package=MicrosoftAzureSentinel.Api&version=1.0.13
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MicrosoftAzureSentinel.Api
A simple Microsoft Azure Sentinel API nuget package.
Makes calls to endpoints set out here:
- LogAnalytics Query API: o https://learn.microsoft.com/en-us/rest/api/loganalytics/query/get?view=rest-loganalytics-2022-10-27-preview&tabs=HTTP
- SecurityInsights API: o https://learn.microsoft.com/en-us/rest/api/securityinsights/operation-groups?view=rest-securityinsights-2024-03-01
Example usage:
using MicrosoftAzureSentinel.Api;
var subscriptionId = new Guid("your-subscription-id");
var resourceGroupName = "your-resource-group-name";
var workspaceName = "your-workspace-name";
var client = new MicrosoftAzureSentinelClient(new MicrosoftAzureSentinelClientOptions
{
TenantId = "your-tenant-id",
ClientId = "your-client-id",
ClientSecret = "your-client-secret"
});
var signInLogs = await Client
.QueryAsync(
new QueryRequest
{
Query = "SigninLogs | take 5"
},
default
)
.ConfigureAwait(true);
var connectors = await Client
.Connectors
.GetAsync(
subscriptionId,
resourceGroupName,
workspaceName,
default
)
.ConfigureAwait(true);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.1)
- Refit (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Added AlertRules and Incidents
BREAKING CHANGES for Refit