Deployment Class
Endpoint Deployment base class.
Constructor
Deployment(name: str | None = None, *, endpoint_name: str | None = None, description: str | None = None, tags: Dict[str, Any] | None = None, properties: Dict[str, Any] | None = None, model: str | Model | None = None, code_configuration: CodeConfiguration | None = None, environment: str | Environment | None = None, environment_variables: Dict[str, str] | None = None, code_path: PathLike | str | None = None, scoring_script: PathLike | str | None = None, **kwargs: Any)
Parameters
| Name | Description |
|---|---|
|
name
|
Name of the deployment resource, defaults to None Default value: None
|
Keyword-Only Parameters
| Name | Description |
|---|---|
|
endpoint_name
|
Name of the Endpoint resource, defaults to None Default value: None
|
|
description
|
Description of the deployment resource, defaults to None Default value: None
|
|
tags
|
Tag dictionary. Tags can be added, removed, and updated, defaults to None Default value: None
|
|
properties
|
The asset property dictionary, defaults to None Default value: None
|
|
model
|
The Model entity, defaults to None Default value: None
|
|
code_configuration
|
Code Configuration, defaults to None Default value: None
|
|
environment
|
The Environment entity, defaults to None Default value: None
|
|
environment_variables
|
Environment variables that will be set in deployment, defaults to None Default value: None
|
|
code_path
|
Folder path to local code assets. Equivalent to code_configuration.code.path , defaults to None Default value: None
|
|
scoring_script
|
Scoring script name. Equivalent to code_configuration.code.scoring_script , defaults to None Default value: None
|
Methods
| dump |
Dump the deployment content into a file in yaml format. |
dump
Dump the deployment content into a file in yaml format.
dump(dest: str | PathLike | IO, **kwargs: Any) -> None
Parameters
| Name | Description |
|---|---|
|
dest
Required
|
The destination to receive this deployment's content. Must be either a path to a local file, or an already-open file stream. If dest is a file path, a new file will be created, and an exception is raised if the file exists. If dest is an open file, the file will be written to directly, and an exception will be raised if the file is not writable. |
Attributes
base_path
code_path
creation_context
The creation context of the resource.
Returns
| Type | Description |
|---|---|
|
The creation metadata for the resource. |