Skip to content

Commit a84e3c7

Browse files
authored
[Internal] Generate Effective Fields (#4112)
## Changes <!-- Summary of your changes that are easy to understand --> This pull request creates the most recent effective fields from OpenAPI. It's a move towards migrating the share resource to the plugin framework. ## Tests <!-- How is this tested? Please see the checklist below and also describe any other relevant tests --> - [ ] `make test` run locally - [ ] relevant change in `docs/` folder - [ ] covered with integration tests in `internal/acceptance` - [ ] relevant acceptance tests are passing - [ ] using Go SDK --------- Co-authored-by: Omer Lachish <[email protected]>
1 parent 1f59bfd commit a84e3c7

File tree

22 files changed

+11002
-113
lines changed

22 files changed

+11002
-113
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0c86ea6dbd9a730c24ff0d4e509603e476955ac5
1+
cf9c61453990df0f9453670f2fe68e1b128647a2

go.mod

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

55
require (
6-
github.com/databricks/databricks-sdk-go v0.48.0
6+
github.com/databricks/databricks-sdk-go v0.49.0
77
github.com/golang-jwt/jwt/v4 v4.5.0
88
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320
99
github.com/hashicorp/hcl v1.0.0
1010
github.com/hashicorp/hcl/v2 v2.22.0
1111
github.com/hashicorp/terraform-plugin-framework v1.11.0
12+
github.com/hashicorp/terraform-plugin-framework-validators v0.13.0
1213
github.com/hashicorp/terraform-plugin-go v0.23.0
1314
github.com/hashicorp/terraform-plugin-log v0.9.0
1415
github.com/hashicorp/terraform-plugin-mux v0.16.0
@@ -52,7 +53,6 @@ require (
5253
github.com/hashicorp/logutils v1.0.0 // indirect
5354
github.com/hashicorp/terraform-exec v0.21.0 // indirect
5455
github.com/hashicorp/terraform-json v0.22.1 // indirect
55-
github.com/hashicorp/terraform-plugin-framework-validators v0.13.0 // indirect
5656
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
5757
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
5858
github.com/hashicorp/yamux v0.1.1 // indirect

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBS
2626
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
2727
github.com/cyphar/filepath-securejoin v0.2.4 h1:Ugdm7cg7i6ZK6x3xDF1oEu1nfkyfH53EtKeQYTC3kyg=
2828
github.com/cyphar/filepath-securejoin v0.2.4/go.mod h1:aPGpWjXOXUn2NCNjFvBE6aRxGGx79pTxQpKOJNYHHl4=
29-
github.com/databricks/databricks-sdk-go v0.48.0 h1:46KtsnRo+FGhC3izUXbpL0PXBNomvsdignYDhJZlm9s=
30-
github.com/databricks/databricks-sdk-go v0.48.0/go.mod h1:ds+zbv5mlQG7nFEU5ojLtgN/u0/9YzZmKQES/CfedzU=
29+
github.com/databricks/databricks-sdk-go v0.49.0 h1:VBTeZZMLIuBSM4kxOCfUcW9z4FUQZY2QeNRD5qm9FUQ=
30+
github.com/databricks/databricks-sdk-go v0.49.0/go.mod h1:ds+zbv5mlQG7nFEU5ojLtgN/u0/9YzZmKQES/CfedzU=
3131
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3232
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
3333
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

0 commit comments

Comments
 (0)