TransformationConfiguration¶
A named, versioned set of settings used to tune how a transformation image runs.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| archived | bool | Whether the configuration has been archived. Archived configurations are hidden from the default listing and cannot be updated, but remain retrievable. | [optional] |
| create_time | datetime | Timestamp at which this version of the configuration was created. | [optional] |
| data | Dict[str, object] | Transformation image-specific settings as a JSON object. Accepted keys, structure, and validation are defined by the target transformation image. | |
| description | str | Optional free-text description of what the configuration is for. | [optional] |
| id | int | Unique numeric identifier of the transformation configuration. | |
| name | str | Human-readable name of the configuration. | [optional] |
| version | int | Version number of the transformation configuration. When omitted, the latest version is used. | [optional] |
Example¶
from odm_api.models.transformation_configuration import TransformationConfiguration
# TODO update the JSON string below
json = "{}"
# create an instance of TransformationConfiguration from a JSON string
transformation_configuration_instance = TransformationConfiguration.from_json(json)
# print the JSON string representation of the object
print(TransformationConfiguration.to_json())
# convert the object into a dict
transformation_configuration_dict = transformation_configuration_instance.to_dict()
# create an instance of TransformationConfiguration from a dict
transformation_configuration_from_dict = TransformationConfiguration.from_dict(transformation_configuration_dict)