OPS.GoCloud.AzureClient 1.0.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package OPS.GoCloud.AzureClient --version 1.0.3
NuGet\Install-Package OPS.GoCloud.AzureClient -Version 1.0.3
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="OPS.GoCloud.AzureClient" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OPS.GoCloud.AzureClient --version 1.0.3
#r "nuget: OPS.GoCloud.AzureClient, 1.0.3"
#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 OPS.GoCloud.AzureClient as a Cake Addin
#addin nuget:?package=OPS.GoCloud.AzureClient&version=1.0.3

// Install OPS.GoCloud.AzureClient as a Cake Tool
#tool nuget:?package=OPS.GoCloud.AzureClient&version=1.0.3

Installation

dotnet add package OPS.GoCloud.AzureClient --version {version}

Use

Initialize AzureClient

Client credentials

var tenantId = "YOUR_TENANT_ID";
var clientId = "YOUR_CLIENT_ID";
var clientsecret = "YOUR_CLIENT_SECRET";

AzureClient azureClient = new AzureClient(tenantId,clientId,clientsecret);

User-managed identity credentials

var tenantId = "YOUR_TENANT_ID";
var umiClientId = "User-Managed Identity_CLIENT_ID";

AzureClient azureClient = new AzureClient(tenantId,umiClientId);

Initialize Microsoft Graph Clien

var graphClientId = "YOUR_CLIENT_ID";
var graphClientsecret = "YOUR_CLIENT_SECRET";

azureClient.InitiateGraphClient(graphClientId,graphClientsecret);

Query from Azure Resource Graph

  1. Create your custom class and inherit from ArmBase.
public class subscription : ArmBase<subscription>
{
    public string subscriptionId { get; set; }
    public string name { get; set; }
}
  1. Write query and get results. The results will be deserialized to your custom class type.
string query = "resourcecontainers | where type == 'microsoft.resources/subscriptions | project subscriptionId,name";

List<subscription> azureSubs = subscription.Query(azureClient, query);

Send request to Azure REST API

  1. Create your custom class
public class PolicyAssignment
{
    public string id { get; set; }
    public string name { get; set; }
    public string location { get; set; }
    public object properties { get; set; }
}
  1. Send request to Azure REST API by calling SendToAzRestAPI. Successful response returns data in JSON string, and can be deserialized to your custom class type.
string policyAssignmentId = "";
string uri = $"https://management.azure.com/{policyAssignmentId}?api-version=2021-06-01";

// The returned respose content is data in JSON string
var resultsJson = await azureClient.SendToAzRestAPI(uri,HttpMethod.Get);

PolicyAssignment policyAssignment = JsonConvert.DeserializeObject<PolicyAssignment>(resultsJson);
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.1.0 83 5/7/2024
1.0.9 115 3/20/2024
1.0.8 97 2/16/2024
1.0.7 111 2/6/2024
1.0.6 96 1/25/2024
1.0.5 90 1/24/2024
1.0.4 83 1/22/2024
1.0.3 79 1/22/2024
1.0.2 81 1/22/2024
1.0.1 86 1/22/2024
1.0.0 96 1/22/2024