| |
- builtins.object
-
- InputArtifact
class InputArtifact(builtins.object) |
|
InputArtifact(name: str, kind: str = None, description: str = None, labels: List[ai_api_client_sdk.models.label.Label] = None)
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`] |
|
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(input_artifact_dict: Dict[str, Any])
- Returns a :class:`ai_api_client_sdk.models.input_artifact.InputArtifact` object, created from the values
in the dict provided as parameter
:param input_artifact_dict: Dict which includes the necessary values to create the object
:type input_artifact_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.input_artifact.InputArtifact`
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
| |