You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Within a specification defined by the schema within the terraform-plugin-codegen-spec repo, associated_external_type is property that can be optionally defined for
nested_object within list_nested, map_nested, and set_nested attributes
single_nested attributes
nested_object within list_nested, and set_nested blocks
single_nested blocks
The associated_external_type field is used during code generation to signal that methods which transform to and from Terraform Plugin Framework types to API SDK types for use with API calls be autogenerated.
For example, usage of associated_external_type in the following specification results in the generation of the To<...>()/From<...>() methods.
Within a specification defined by the schema within the terraform-plugin-codegen-spec repo,
associated_external_type
is property that can be optionally defined fornested_object
withinlist_nested
,map_nested
, andset_nested
attributessingle_nested
attributesnested_object
withinlist_nested
, andset_nested
blockssingle_nested
blocksThe
associated_external_type
field is used during code generation to signal that methods which transform to and from Terraform Plugin Framework types to API SDK types for use with API calls be autogenerated.For example, usage of
associated_external_type
in the following specification results in the generation of theTo<...>()/From<...>()
methods.Proposal
Extension of the handling of
associated_external_type
for other types (e.g., bool attributes, list attributes) should be considered.The text was updated successfully, but these errors were encountered: