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