MicrosoftAzureSentinel.Api 1.0.13

Suggested Alternatives

MicrosoftAzure.Api

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
#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

MicrosoftAzureSentinel.Api

Nuget Nuget License: MIT Codacy Badge

A simple Microsoft Azure Sentinel API nuget package.

Makes calls to endpoints set out here:

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 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.13 79 4/17/2024
1.0.12 71 4/17/2024
1.0.10 78 4/16/2024
1.0.9 95 4/11/2024
1.0.7 87 4/10/2024
1.0.6 74 4/10/2024
1.0.4 73 4/10/2024
1.0.3 76 4/10/2024

Added AlertRules and Incidents
BREAKING CHANGES for Refit