| |
- builtins.object
-
- InputArtifactBinding
class InputArtifactBinding(builtins.object) |
|
InputArtifactBinding(key: str, artifact_id: str, **kwargs)
The InputArtifactBinding object defines the input artifact specified in the configuration.
:param key: matches the input artifact name in the executable definition
:type key: str
:param id: ID of the artifact
:type id: str
:param `**kwargs`: The keyword arguments are there in case there are additional attributes returned from server |
|
Methods defined here:
- __eq__(self, other)
- Return self==value.
- __init__(self, key: str, artifact_id: str, **kwargs)
- Initialize self. See help(type(self)) for accurate signature.
- to_dict(self) -> Dict[str, str]
- Returns the attributes of the object as a dictionary
:return: A dict, including all the attributes of the object
:rtype: Dict[str, str]
Static methods defined here:
- from_dict(input_artifact_binding_dict: Dict[str, str])
- Returns a :class:`ai_api_client_sdk.models.input_artifact_binding.InputArtifactBinding` object, created from
the values in the dict provided as parameter
:param input_artifact_binding_dict: Dict which includes the necessary values to create the object
:type input_artifact_binding_dict: Dict[str, Any]
:return: An object, created from the values provided
:rtype: class:`ai_api_client_sdk.models.input_artifact_binding.InputArtifactBinding`
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
| |