-
Notifications
You must be signed in to change notification settings - Fork 394
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Internal] Refactored databricks_zones
and databricks_spark_versions
data sources to Go SDK
#3687
Merged
Conversation
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
alexott
approved these changes
Jul 2, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, small comment
nkvuong
force-pushed
the
refactor/data_zones_spark
branch
from
July 2, 2024 15:59
6eff9c9
to
dd78ab8
Compare
alexott
approved these changes
Jul 2, 2024
tanmay-db
approved these changes
Jul 18, 2024
alexott
changed the title
Refactored
[Internal] Refactored Jul 19, 2024
databricks_zones
and databricks_spark_versions
data sources to Go SDKdatabricks_zones
and databricks_spark_versions
data sources to Go SDK
tanmay-db
added a commit
that referenced
this pull request
Jul 23, 2024
### Bug Fixes * Fixed reading of permissions for SQL objects ([#3800](#3800)). * don't update `databricks_metastore` during creation if not required ([#3783](#3783)). ### Documentation * Clarified schedule block in `databricks_job` ([#3805](#3805)). * Use correct names for isolation mode for storage credentials and external locations ([#3804](#3804)). ### Internal Changes * Refactored `databricks_zones` and `databricks_spark_versions` data sources to Go SDK ([#3687](#3687)). ### Exporter * Add support for exporting of Lakeview dashboards ([#3779](#3779)).
github-merge-queue bot
pushed a commit
that referenced
this pull request
Jul 24, 2024
## 1.49.1 ### Bug Fixes * Fixed reading of permissions for SQL objects ([#3800](#3800)). * don't update `databricks_metastore` during creation if not required ([#3783](#3783)). ### Documentation * Clarified schedule block in `databricks_job` ([#3805](#3805)). * Use correct names for isolation mode for storage credentials and external locations ([#3804](#3804)). * Fix incomplete note in databricks_workspace_binding resource ([#3806](#3806)) ### Internal Changes * Refactored `databricks_zones` and `databricks_spark_versions` data sources to Go SDK ([#3687](#3687)). ### Exporter * Add support for exporting of Lakeview dashboards ([#3779](#3779)). * Adding more retries for SCIM API calls ([#3807](#3807))
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
LatestSparkVersionOrDefault
now returns 11.3 LTS, as 7.3 LTS is deprecateddatabricks_zones
to Go SDKdatabricks_spark_versions
to Go SDK. This refactoring require one additional change toresource.go
:WorkspaceDataWithCustomizeFunc
to allow customization of the data source schemaLatestSparkVersionOrDefault
to a Go SDK method, which requires changing existing structs in Terraform provider to equivalent in Go SDK (clusters.SparkVersionsList
tocompute.GetSparkVersionsResponse
, etc.)Tests
make test
run locallyinternal/acceptance