Skip to content

Commit

Permalink
resolved merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
dgomez04 committed Oct 23, 2024
2 parents 4bf4280 + 7e4b3d9 commit 252f9cf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions scim/data_users.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ import (
"context"
"fmt"

<<<<<<< HEAD

Check failure on line 7 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / compute_diff

missing import path

Check failure on line 7 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / Analyze (go)

missing import path

Check failure on line 7 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

missing import path

Check failure on line 7 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: missing import path
=======

Check failure on line 8 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

missing import path

Check failure on line 8 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: missing import path
"github.com/databricks/databricks-sdk-go"
>>>>>>> 7e4b3d96d571ea9f8ff140b2b53b8d53cfa5c5d3

Check failure on line 10 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

missing import path

Check failure on line 10 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: missing import path
"github.com/databricks/databricks-sdk-go/service/iam"
"github.com/databricks/terraform-provider-databricks/common"
)
Expand All @@ -22,7 +26,11 @@ func DataSourceUsers() common.Resource {
Users []UserInfo `json:"users,omitempty" tf:"computed"`
}

<<<<<<< HEAD

Check failure on line 29 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

expected statement, found '<<'

Check failure on line 29 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: unexpected <<, expected }
return common.Data(func(ctx context.Context, data *DataUsers, c *common.DatabricksClient) error {

Check failure on line 30 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

method has multiple receivers

Check failure on line 30 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: unexpected {, expected (
=======

Check failure on line 31 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

expected statement, found '=='

Check failure on line 31 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: unexpected ==, expected )
return common.AccountData(func(ctx context.Context, data *DataUsers, acc *databricks.AccountClient) error {
>>>>>>> 7e4b3d96d571ea9f8ff140b2b53b8d53cfa5c5d3

Check failure on line 33 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / fmt

expected statement, found '>>'

Check failure on line 33 in scim/data_users.go

View workflow job for this annotation

GitHub Actions / tests

syntax error: unexpected >>, expected }
listRequest := iam.ListAccountUsersRequest{
Attributes: "id,userName,displayName",
}
Expand Down

0 comments on commit 252f9cf

Please sign in to comment.