How to create new Azure Subscription using Python?

453 Views Asked by At

I'm trying to programmatically create new Azure Subscriptions using the Python SDK. The only reference to the Azure Python SDK I found was this.

Here is where I ended up with:

import azure.mgmt.billing
import azure.mgmt.subscription

creds = AzureCliCredential()
client_name = 'test'


def create_subscription(creds, client_name):
    subscription_client = azure.mgmt.subscription.SubscriptionClient(creds)
    creation_parameters = azure.mgmt.subscription.models.SubscriptionCreationParameters(
        offer_type = 'MS-AZR-0003P')
    creation_result = subscription_client.subscription_factory.create_subscription_in_enrollment_account(
        client_name,
        creation_parameters)
    
    return creation_result

output = create_subscription(creds, client_sub)

print(output)

Error: AttributeError: module 'azure.mgmt.subscription.models' has no attribute 'SubscriptionCreationParameters'

But looking at the docs show the class azure.mgmt.subscription.models has a SubscriptionCreationParameters module.

What am I missing here?

1

There are 1 best solutions below

0
On

It looks like the correct method to use for creating Azure subscriptions programmatically using Python would be to use the subscription client.alias.begin_create

creation = sub_client.alias.begin_create(alias_name="test-sub-alias",
                          body=PutAliasRequest(
                              properties=PutAliasRequestProperties(
                                  display_name="azure-sub-display",
                                  workload="Production",
                                 billing_scope="/providers/Microsoft.Billing/billingAccounts/BillingAccount/enrollmentAccounts/ID")))

The docs for this package seem like they follow that the request would issue an HTTP PUT as shown on this page:

https://learn.microsoft.com/en-us/azure/cost-management-billing/manage/programmatically-create-subscription-enterprise-agreement?tabs=rest