FeatureClient Class
Azure Feature Exposure Control (AFEC) provides a mechanism for the resource providers to control feature exposure to users. Resource providers typically use this mechanism to provide public/private preview for new features prior to making them generally available. Users need to explicitly register for AFEC features to get access to such functionality.
This ready contains multiple API versions, to help you deal with all of the Azure clouds (Azure Stack, Azure Government, Azure China, etc.). By default, it uses the latest API version available on public Azure. For production, you should stick to a particular api-version and/or profile. The profile sets a mapping between an operation group and its API version. The api-version parameter sets the default API version if the operation group is not described in the profile.
- Inheritance
-
azure.mgmt.resource.features._operations_mixin.FeatureClientOperationsMixinFeatureClientFeatureClientazure.mgmt.resource.features._feature_client._SDKClientFeatureClient
Constructor
FeatureClient(credential: TokenCredential, subscription_id: str, api_version: str | None = None, base_url: str = 'https://management.azure.com', profile: KnownProfiles = KnownProfiles.default, **kwargs: Any)
Parameters
Name | Description |
---|---|
credential
Required
|
Credential needed for the client to connect to Azure. Required. |
subscription_id
Required
|
The Azure subscription ID. Required. |
api_version
|
API version to use if no profile is provided, or if missing in profile. Default value: None
|
base_url
|
Service URL Default value: https://management.azure.com
|
profile
|
A profile definition, from KnownProfiles to dict. Default value: KnownProfiles.default
|
Methods
close | |
models |
Module depends on the API version: |
close
close()
models
Module depends on the API version:
models(api_version='2021-07-01')
Parameters
Name | Description |
---|---|
api_version
|
Default value: 2021-07-01
|
Attributes
features
Instance depends on the API version:
2015-12-01: FeaturesOperations
2021-07-01: FeaturesOperations
subscription_feature_registrations
Instance depends on the API version:
- 2021-07-01: SubscriptionFeatureRegistrationsOperations
DEFAULT_API_VERSION
DEFAULT_API_VERSION = '2021-07-01'
LATEST_PROFILE
LATEST_PROFILE = azure.mgmt.resource.features.FeatureClient latest
Azure SDK for Python