Skip to content

Commit 1bf2981

Browse files
authored
[Internal] Bump Go SDK to v0.90.0 & Generate Latest TF Structs (#5195)
## Changes <!-- Summary of your changes that are easy to understand --> Bump Go SDK to v0.90.0 & Generate Latest TF Structs ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [x] `make test` run locally NO_CHANGELOG=true --------- Co-authored-by: Omer Lachish <[email protected]>
1 parent 92f2b58 commit 1bf2981

File tree

9 files changed

+188
-50
lines changed

9 files changed

+188
-50
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e2018bb00cba203508f8afe5a6d41bd49789ba25
1+
59c4c0f3d5f0ef00cd5350b5674e941a7606d91a

go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ module github.com/databricks/terraform-provider-databricks
33
go 1.24.0
44

55
require (
6-
github.com/databricks/databricks-sdk-go v0.89.0
6+
github.com/databricks/databricks-sdk-go v0.90.0
77
github.com/golang-jwt/jwt/v4 v4.5.2
88
github.com/hashicorp/go-cty v1.5.0
99
github.com/hashicorp/hcl v1.0.0
1010
github.com/hashicorp/hcl/v2 v2.24.0
1111
github.com/hashicorp/terraform-plugin-framework v1.16.1
12+
github.com/hashicorp/terraform-plugin-framework-jsontypes v0.2.0
1213
github.com/hashicorp/terraform-plugin-framework-timetypes v0.5.0
1314
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0
1415
github.com/hashicorp/terraform-plugin-go v0.29.0

go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ github.com/cloudflare/circl v1.6.1 h1:zqIqSPIndyBh1bjLVVDHMPpVKqp8Su/V+6MeDzzQBQ
2525
github.com/cloudflare/circl v1.6.1/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs=
2626
github.com/cyphar/filepath-securejoin v0.4.1 h1:JyxxyPEaktOD+GAnqIqTf9A8tHyAG22rowi7HkoSU1s=
2727
github.com/cyphar/filepath-securejoin v0.4.1/go.mod h1:Sdj7gXlvMcPZsbhwhQ33GguGLDGQL7h7bg04C/+u9jI=
28-
github.com/databricks/databricks-sdk-go v0.89.0 h1:x3bolIsX49Hov08O/BvH3QGcibD0VuiIOCBnTUGI8zs=
29-
github.com/databricks/databricks-sdk-go v0.89.0/go.mod h1:hWoHnHbNLjPKiTm5K/7bcIv3J3Pkgo5x9pPzh8K3RVE=
28+
github.com/databricks/databricks-sdk-go v0.90.0 h1:yS9kBd/4LEp3WzzFZ/th49A+WXn0bb6rEWLAYL4T6/8=
29+
github.com/databricks/databricks-sdk-go v0.90.0/go.mod h1:hWoHnHbNLjPKiTm5K/7bcIv3J3Pkgo5x9pPzh8K3RVE=
3030
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3131
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3232
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
@@ -118,6 +118,8 @@ github.com/hashicorp/terraform-json v0.27.2 h1:BwGuzM6iUPqf9JYM/Z4AF1OJ5VVJEEzoK
118118
github.com/hashicorp/terraform-json v0.27.2/go.mod h1:GzPLJ1PLdUG5xL6xn1OXWIjteQRT2CNT9o/6A9mi9hE=
119119
github.com/hashicorp/terraform-plugin-framework v1.16.1 h1:1+zwFm3MEqd/0K3YBB2v9u9DtyYHyEuhVOfeIXbteWA=
120120
github.com/hashicorp/terraform-plugin-framework v1.16.1/go.mod h1:0xFOxLy5lRzDTayc4dzK/FakIgBhNf/lC4499R9cV4Y=
121+
github.com/hashicorp/terraform-plugin-framework-jsontypes v0.2.0 h1:SJXL5FfJJm17554Kpt9jFXngdM6fXbnUnZ6iT2IeiYA=
122+
github.com/hashicorp/terraform-plugin-framework-jsontypes v0.2.0/go.mod h1:p0phD0IYhsu9bR4+6OetVvvH59I6LwjXGnTVEr8ox6E=
121123
github.com/hashicorp/terraform-plugin-framework-timetypes v0.5.0 h1:v3DapR8gsp3EM8fKMh6up9cJUFQ2iRaFsYLP8UJnCco=
122124
github.com/hashicorp/terraform-plugin-framework-timetypes v0.5.0/go.mod h1:c3PnGE9pHBDfdEVG9t1S1C9ia5LW+gkFR0CygXlM8ak=
123125
github.com/hashicorp/terraform-plugin-framework-validators v0.19.0 h1:Zz3iGgzxe/1XBkooZCewS0nJAaCFPFPHdNJd8FgE4Ow=

internal/providers/pluginfw/converters/go_to_tf.go

Lines changed: 93 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)