We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c4e81 commit 5498204Copy full SHA for 5498204
infrahub_sdk/convert_object_type.py
@@ -45,7 +45,8 @@ class ConversionFieldInput(BaseModel):
45
Indicates how to fill in the value of the destination field during an object conversion.
46
Use `source_field` to reuse the value of the corresponding field of the object being converted.
47
Use `data` to specify the new value for the field.
48
- Only one of `source_field` or `data` can be specified.
+ Use `use_default_value` to set the destination field to its schema default.
49
+ Only one of `source_field`, `data`, or `use_default_value` can be specified.
50
"""
51
52
source_field: str | None = None
0 commit comments