Microsoft Azure Networkcloud Management Client Library for Python
Project description
Microsoft Azure SDK for Python
This is the Microsoft Azure Networkcloud Management Client Library. This package has been tested with Python 3.8+. For a more complete view of Azure libraries, see the azure sdk python release.
Disclaimer
Azure SDK Python packages support for Python 2.7 has ended 01 January 2022. For more information and questions, please refer to https://github.com/Azure/azure-sdk-for-python/issues/20691
Getting started
Prerequisites
- Python 3.8+ is required to use this package.
- Azure subscription
Install the package
pip install azure-mgmt-networkcloud
pip install azure-identity
Authentication
By default, Azure Active Directory token authentication depends on correct configure of following environment variables.
AZURE_CLIENT_ID
for Azure client ID.AZURE_TENANT_ID
for Azure tenant ID.AZURE_CLIENT_SECRET
for Azure client secret.
In addition, Azure subscription ID can be configured via environment variable AZURE_SUBSCRIPTION_ID
.
With above configuration, client can be authenticated by following code:
from azure.identity import DefaultAzureCredential
from azure.mgmt.networkcloud import NetworkCloudMgmtClient
import os
sub_id = os.getenv("AZURE_SUBSCRIPTION_ID")
client = NetworkCloudMgmtClient(credential=DefaultAzureCredential(), subscription_id=sub_id)
Examples
Code samples for this package can be found at:
- Search Networkcloud Management on docs.microsoft.com
- Azure Python Mgmt SDK Samples Repo
Troubleshooting
Next steps
Provide Feedback
If you encounter any bugs or have suggestions, please file an issue in the Issues section of the project.
Release History
2.0.0b1 (2024-11-21)
Features Added
- Client
NetworkCloudMgmtClient
added operation groupkubernetes_cluster_features
- Model
AgentPoolPatchParameters
added propertyadministrator_configuration
- Model
AgentPoolUpgradeSettings
added propertydrain_timeout
- Model
AgentPoolUpgradeSettings
added propertymax_unavailable
- Model
BareMetalMachine
added propertymachine_cluster_version
- Model
BareMetalMachine
added propertymachine_roles
- Model
BareMetalMachine
added propertyruntime_protection_status
- Model
BareMetalMachine
added propertysecret_rotation_status
- Model
Cluster
added propertyidentity
- Model
Cluster
added propertycommand_output_settings
- Model
Cluster
added propertyruntime_protection_configuration
- Model
Cluster
added propertysecret_archive
- Model
Cluster
added propertyupdate_strategy
- Enum
ClusterConnectionStatus
added memberDISCONNECTED
- Enum
ClusterDetailedStatus
added memberUPDATE_PAUSED
- Model
ClusterManager
added propertyidentity
- Model
ClusterManagerPatchParameters
added propertyidentity
- Model
ClusterPatchParameters
added propertyidentity
- Model
ClusterPatchParameters
added propertycommand_output_settings
- Model
ClusterPatchParameters
added propertyruntime_protection_configuration
- Model
ClusterPatchParameters
added propertysecret_archive
- Model
ClusterPatchParameters
added propertyupdate_strategy
- Model
ControlPlaneNodePatchConfiguration
added propertyadministrator_configuration
- Model
KeySetUser
added propertyuser_principal_name
- Model
KubernetesClusterPatchParameters
added propertyadministrator_configuration
- Model
NetworkConfiguration
added propertyl2_service_load_balancer_configuration
- Model
OperationStatusResult
added propertyexit_code
- Model
OperationStatusResult
added propertyoutput_head
- Model
OperationStatusResult
added propertyresult_ref
- Model
OperationStatusResult
added propertyresult_url
- Enum
RackSkuProvisioningState
added memberCANCELED
- Enum
RackSkuProvisioningState
added memberFAILED
- Model
StorageAppliance
added propertymanufacturer
- Model
StorageAppliance
added propertymodel
- Model
StorageAppliance
added propertysecret_rotation_status
- Model
StorageAppliance
added propertyversion
- Added model
AdministratorConfigurationPatch
- Added enum
ClusterContinueUpdateVersionMachineGroupTargetingMode
- Added model
ClusterContinueUpdateVersionParameters
- Added model
ClusterScanRuntimeParameters
- Added enum
ClusterScanRuntimeParametersScanActivity
- Added model
ClusterSecretArchive
- Added enum
ClusterSecretArchiveEnabled
- Added model
ClusterUpdateStrategy
- Added enum
ClusterUpdateStrategyType
- Added model
CommandOutputSettings
- Added model
IdentitySelector
- Added model
KubernetesClusterFeature
- Added enum
KubernetesClusterFeatureAvailabilityLifecycle
- Added enum
KubernetesClusterFeatureDetailedStatus
- Added model
KubernetesClusterFeatureList
- Added model
KubernetesClusterFeaturePatchParameters
- Added enum
KubernetesClusterFeatureProvisioningState
- Added enum
KubernetesClusterFeatureRequired
- Added model
L2ServiceLoadBalancerConfiguration
- Added model
ManagedServiceIdentity
- Added enum
ManagedServiceIdentitySelectorType
- Added enum
ManagedServiceIdentityType
- Added model
NodePoolAdministratorConfigurationPatch
- Added model
RuntimeProtectionConfiguration
- Added enum
RuntimeProtectionEnforcementLevel
- Added model
RuntimeProtectionStatus
- Added model
SecretArchiveReference
- Added model
SecretRotationStatus
- Added model
StringKeyValuePair
- Added model
UserAssignedIdentity
- Operation group
ClustersOperations
added methodbegin_continue_update_version
- Operation group
ClustersOperations
added methodbegin_scan_runtime
- Added operation group
KubernetesClusterFeaturesOperations
Breaking Changes
- Parameter
max_surge
of modelAgentPoolUpgradeSettings
is no longer required
1.0.0 (2023-08-18)
Breaking Changes
- Removed operation BareMetalMachinesOperations.begin_validate_hardware
- Removed operation StorageAppliancesOperations.begin_run_read_commands
- Removed operation VirtualMachinesOperations.begin_attach_volume
- Removed operation VirtualMachinesOperations.begin_detach_volume
1.0.0b2 (2023-07-19)
Features Added
- Added operation BareMetalMachineKeySetsOperations.list_by_cluster
- Added operation BmcKeySetsOperations.list_by_cluster
- Added operation ConsolesOperations.list_by_virtual_machine
- Added operation MetricsConfigurationsOperations.list_by_cluster
- Added operation group AgentPoolsOperations
- Added operation group KubernetesClustersOperations
- Model BareMetalMachine has a new parameter associated_resource_ids
- Model CloudServicesNetwork has a new parameter associated_resource_ids
- Model L2Network has a new parameter associated_resource_ids
- Model L3Network has a new parameter associated_resource_ids
- Model TrunkedNetwork has a new parameter associated_resource_ids
- Model VirtualMachine has a new parameter availability_zone
Breaking Changes
- Removed operation BareMetalMachineKeySetsOperations.list_by_resource_group
- Removed operation BmcKeySetsOperations.list_by_resource_group
- Removed operation ConsolesOperations.list_by_resource_group
- Removed operation MetricsConfigurationsOperations.list_by_resource_group
- Removed operation StorageAppliancesOperations.begin_validate_hardware
- Removed operation group DefaultCniNetworksOperations
- Removed operation group HybridAksClustersOperations
1.0.0b1 (2023-05-19)
- Initial Release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file azure_mgmt_networkcloud-2.0.0b1.tar.gz
.
File metadata
- Download URL: azure_mgmt_networkcloud-2.0.0b1.tar.gz
- Upload date:
- Size: 211.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5636c70828082b597c8614113783431a6767317f11a3ee5dc6af65e410d3e0d3 |
|
MD5 | 3e5893266fecf9292156721674fe38c9 |
|
BLAKE2b-256 | d1be16068dcaaecf0b123df9da0b7dc3d702316f662ce0df96777f5846fce35f |
File details
Details for the file azure_mgmt_networkcloud-2.0.0b1-py3-none-any.whl
.
File metadata
- Download URL: azure_mgmt_networkcloud-2.0.0b1-py3-none-any.whl
- Upload date:
- Size: 275.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db18a329aebb6a626da365ce9f81c3db877a3992acddb36efa9274ab007de870 |
|
MD5 | 82c1bd4d9b2b45760cc6934a9e34189e |
|
BLAKE2b-256 | 9ac1425e13be316a3d7887b3f950d37619121d2766ffa3fc76ed122cb1ba4477 |