Search⌘ K
AI Features

Learning the Basics of the Azure APIs

Explore how Azure APIs and SDKs provide a consistent interface for programming cloud resources in Go. Learn about Azure identity, Role-Based Access Control, and resource hierarchy. Gain practical knowledge by creating a free Azure account and accessing the Azure REST API using the CLI for cloud automation.

Now that we know the path to programming the cloud is through APIs, let's learn a bit more about them. It's important to establish some background on how a large system of APIs comes together to form a consistent programmatic interface. We will also learn where we can find code and documentation when we run into challenges.

In this lesson, we are going to discuss how the major clouds define APIs and produce Software Development Kits (SDKs) for programming against the cloud APIs. We will learn where to find these SDKs, and where to find documentation about the APIs and SDKs.

We will also learn about identity, Role-Based Access Control (RBAC), and resource hierarchy in Microsoft Azure. Finally, we’ll create and log in to a free Azure account, which we will use in the ...