| |
- builtins.object
-
- OutputArtifact
class OutputArtifact(builtins.object) |
|
OutputArtifact(name: str, kind: str = None, description: str = None, labels: List[ai_api_client_sdk.models.label.Label] = None)
The OutputArtifact object defines the output 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`] |
|
Methods defined here:
- __eq__(self, other)
- Return self==value.
- __init__(self, name: str, kind: str = None, description: str = None, labels: List[ai_api_client_sdk.models.label.Label] = None)
- Initialize self. See help(type(self)) for accurate signature.
- __str__(self)
- Return str(self).
Static methods defined here:
- from_dict(output_artifact_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.output_artifact.OutputArtifact` object, created from the values
in the dict provided as parameter
:param output_artifact_dict: Dict which includes the necessary values to create the object
:type output_artifact_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.output_artifact.OutputArtifact`
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
Data and other attributes defined here:
- __hash__ = None
| |