MicrosoftAzure.Api 1.0.18

dotnet add package MicrosoftAzure.Api --version 1.0.18
NuGet\Install-Package MicrosoftAzure.Api -Version 1.0.18
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="MicrosoftAzure.Api" Version="1.0.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MicrosoftAzure.Api --version 1.0.18
#r "nuget: MicrosoftAzure.Api, 1.0.18"
#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 MicrosoftAzure.Api as a Cake Addin
#addin nuget:?package=MicrosoftAzure.Api&version=1.0.18

// Install MicrosoftAzure.Api as a Cake Tool
#tool nuget:?package=MicrosoftAzure.Api&version=1.0.18

MicrosoftAzure.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 MicrosoftAzure.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
	.SecurityInsights
	.QueryAsync(
		new QueryRequest
		{
			Query = "SigninLogs | take 5"
		},
		default
	)
	.ConfigureAwait(true);

var connectors = await Client
	.Sentinel
	.GetConnectorsAsync(
		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.18 106 4/17/2024
1.0.17 71 4/17/2024

Restructured.