functional

Functions

parse_component(...)

Parse an Azure ML component object.

parse_pipeline(...)

Parse an Azure ML pipeline object.

parse_job(...)

Parse an Azure ML job object.

parse_online_endpoint(...)

Parse an Azure ML online endpoint object.

parse_online_deployment(...)

Parse an Azure ML online deployment object.

Module Contents

functional.parse_component(component: azure.ai.ml.entities.CommandComponent) altametris.azure_ml_sdk.configs.models.ComponentConfig

Parse an Azure ML component object.

Parameters:

component (CommandComponent) – AML object, definition of a component.

Returns:

The config of the component.

Return type:

ComponentConfig

functional.parse_pipeline(pipeline: azure.ai.ml.entities.PipelineJob) altametris.azure_ml_sdk.configs.models.PipelineConfig

Parse an Azure ML pipeline object.

Parameters:

pipeline (PipelineComponent) – AML object, definition of a pipeline.

Returns:

The config of the pipeline.

Return type:

PipelineConfig

functional.parse_job(job: azure.ai.ml.entities.Command) altametris.azure_ml_sdk.configs.models.JobConfig

Parse an Azure ML job object.

Parameters:

job (Command) – AML object, definition of a job.

Returns:

The config of the job.

Return type:

JobConfig

functional.parse_online_endpoint(endpoint: azure.ai.ml.entities.OnlineEndpoint) altametris.azure_ml_sdk.configs.models.OnlineEndpointConfig

Parse an Azure ML online endpoint object.

Parameters:

endpoint (OnlineEndpoint) – AML object, definition of an online endpoint.

Returns:

The config of the online endpoint

Return type:

OnlineEndpointConfig

functional.parse_online_deployment(deployment: azure.ai.ml.entities.OnlineDeployment) altametris.azure_ml_sdk.configs.models.OnlineDeploymentConfig

Parse an Azure ML online deployment object.

Parameters:

deployment (OnlineDeployment) – AML object, definition of an online deployment.

Returns:

The config of the online deployment.

Return type:

OnlineDeploymentConfig