Source code for models.subscription_type_azure_credentials_enum

# -*- coding: utf-8 -*-
# Copyright 2021 Cohesity Inc.

[docs]class SubscriptionTypeAzureCredentialsEnum(object): """Implementation of the 'SubscriptionType_AzureCredentials' enum. Specifies the subscription type of Azure such as 'kAzureCommercial', 'kAzureGovCloud' or 'kAzureStackCommercial' Specifies the subscription type of an Azure source entity. 'kAzureCommercial' indicates a standard Azure subscription. 'kAzureGovCloud' indicates a govt Azure subscription. 'kAzureStackCommercial' indicates a stack commercial Azure subscription. Attributes: KAZURECOMMERCIAL: TODO: type description here. KAZUREGOVCLOUD: TODO: type description here. KAZURESTACKCOMMERCIAL: TODO: type description here. """ KAZURECOMMERCIAL = 'kAzureCommercial' K_AZURE_GO_VCLOUD = 'kAzureGovCloud' KAZURESTACKCOMMERCIAL = 'kAzureStackCommercial'