databricks-sdk-go icon indicating copy to clipboard operation
databricks-sdk-go copied to clipboard

Databricks SDK for Go

Results 155 databricks-sdk-go issues
Sort by recently updated
recently updated
newest added

## Changes DebugHeaders by default prints all headers, including the sensitive Authorization header. To allow users to print debug logs with headers but without including this sensitive header, we introduce...

Observed in 0.26.1 that if I'm using the following fixture in test: ``` userListIdUsernameFixture = qa.HTTPFixture{ Method: "GET", Resource: "/api/2.0/preview/scim/v2/Users?attributes=id%2CuserName&count=100&startIndex=1", Response: iam.ListUsersResponse{ Resources: []iam.User{ { Id: "id", UserName: "[email protected]", },...

**Description** The [content](https://github.com/databricks/databricks-sdk-go/blob/main/service/workspace/model.go#L390) field is marked as optional, so Terraform provider isn't able to create empty files, such as, `__init__.py`. **Expected behavior** I should be able to create empty files...

**Description** `workspaceClient.Users.ListAll` is doing an additional API call even if `TotalResults` is specified and the number of returned users matches it. **Reproduction** In Terraform exporter I'm returning following answer to...

## Changes Add check for updating owner in Share resource ## Tests Integration test - [ ] `make test` passing - [ ] `make fmt` applied - [ ] relevant...

## Changes WIP PR with the idea to support empty string in `Set()` methods for enums. This allows simpler setting of optional enum values, bypassing validation for optional fields in...

do-not-merge

WIP for google auth unit tests

In Go SDK, the `JobParameters` field in the `RunJobTask` struct is generated as `any` ([doc](https://pkg.go.dev/github.com/databricks/databricks-sdk-go/service/jobs#RunJobTask)). In the `.proto` file, it’s declared as `json_map`. For similarly declared base_parameters in the notebook...

**Description** Getting error `Error: Your token is missing the required scopes for this endpoint` when calling function `func (*provisioning.CredentialsAPI).GetByCredentialsId` in the SDK. While this call using the same token works...

**Description** While many models properly set the `omitempty` flag in the json annotation, they do not use pointers, causing default values to populate. This is particularly problematic for ColumnInfo where...