ai_api_client_sdk.models.input_artifact module

class ai_api_client_sdk.models.input_artifact.InputArtifact(name: str, kind: str = None, description: str = None, labels: List[Label] = None)

Bases: object

The InputArtifact object defines the input artifact specified in the executable definition. :param name: name of artifact :type name: str :param kind: kind of artifact (Dataset, Model, ResultSet) :type kind: str :param description: description of artifact :type description: str :param labels: labels for artifact :type labels: List[class:ai_api_client_sdk.models.label.Label]

__init__(name: str, kind: str = None, description: str = None, labels: List[Label] = None)
static from_dict(input_artifact_dict: Dict[str, Any])

Returns a ai_api_client_sdk.models.input_artifact.InputArtifact object, created from the values in the dict provided as parameter

Parameters:

input_artifact_dict (Dict[str, Any]) – Dict which includes the necessary values to create the object

Returns:

An object, created from the values provided

Return type:

class:ai_api_client_sdk.models.input_artifact.InputArtifact