Azure
Initialization of the ZenML Azure integration.
The Azure integration submodule provides a way to run ZenML pipelines in a cloud
environment. Specifically, it allows the use of cloud artifact stores,
and an io
module to handle file operations on Azure Blob Storage.
The Azure Step Operator integration submodule provides a way to run ZenML steps
in AzureML.
AzureIntegration
Bases: Integration
Definition of Azure integration for ZenML.
Source code in src/zenml/integrations/azure/__init__.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|
activate()
classmethod
Activate the Azure integration.
Source code in src/zenml/integrations/azure/__init__.py
59 60 61 62 |
|
flavors()
classmethod
Declares the flavors for the integration.
Returns:
Type | Description |
---|---|
List[Type[Flavor]]
|
List of stack component flavors for this integration. |
Source code in src/zenml/integrations/azure/__init__.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
|