-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add logging for unsupported types present when generating to/from met…
…hods (#85) * Bumping dependencies (#84) * Adding logging for unimplemented element type to go type conversion (#84) * Adding handling for unimplemented error when generating custom value type from functions (#84) * Return unimplemented error when object attributes contain anything other than primitives (#84) * Defining type to use with context value (#84) * Adding To/From methods to nested attributes and blocks (#84) * Handle To/From unimplemented errors for blocks (#84) * Return unimplemented error for collections containing collections or objects (#84) * Return unimplemented error for objects containing collections or objects (#84)
- Loading branch information
1 parent
6bb8db3
commit b66db47
Showing
46 changed files
with
817 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
module github.com/hashicorp/terraform-plugin-codegen-framework | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/hashicorp/terraform-plugin-codegen-spec v0.1.1-0.20231024091233-c659ac8a54fc | ||
github.com/hashicorp/terraform-plugin-framework v1.4.0 | ||
github.com/hashicorp/terraform-plugin-go v0.19.0 | ||
github.com/mattn/go-colorable v0.1.12 | ||
github.com/hashicorp/terraform-plugin-framework v1.4.2 | ||
github.com/mattn/go-colorable v0.1.13 | ||
github.com/mitchellh/cli v1.1.5 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.1 // indirect | ||
github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.3 // indirect | ||
github.com/armon/go-radix v1.0.0 // indirect | ||
github.com/bgentry/speakeasy v0.1.0 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/google/uuid v1.1.2 // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/fatih/color v1.15.0 // indirect | ||
github.com/google/uuid v1.4.0 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-hclog v1.5.0 // indirect | ||
github.com/hashicorp/go-multierror v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/terraform-plugin-go v0.19.0 // indirect | ||
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.0 // indirect | ||
github.com/posener/complete v1.1.1 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/posener/complete v1.2.3 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect | ||
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
golang.org/x/crypto v0.11.0 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.