-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
02e8387
commit f772ce4
Showing
3 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package resources | ||
|
||
import ( | ||
"github.com/databricks/databricks-sdk-go/marshal" | ||
"github.com/databricks/databricks-sdk-go/service/catalog" | ||
) | ||
|
||
type Volume struct { | ||
// List of grants to apply on this schema. | ||
Grants []Grant `json:"grants,omitempty"` | ||
|
||
// Full name of the schema (catalog_name.schema_name.volume_name). This value is read from | ||
// the terraform state after deployment succeeds. | ||
ID string `json:"id,omitempty" bundle:"readonly"` | ||
|
||
*catalog.CreateVolumeRequestContent | ||
|
||
ModifiedStatus ModifiedStatus `json:"modified_status,omitempty" bundle:"internal"` | ||
} | ||
|
||
func (v *Volume) UnmarshalJSON(b []byte) error { | ||
return marshal.Unmarshal(b, v) | ||
} | ||
|
||
func (v Volume) MarshalJSON() ([]byte, error) { | ||
return marshal.Marshal(v) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package tfdyn | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"github.com/databricks/cli/bundle/internal/tf/schema" | ||
"github.com/databricks/cli/libs/dyn" | ||
"github.com/databricks/cli/libs/dyn/convert" | ||
"github.com/databricks/cli/libs/log" | ||
) | ||
|
||
func convertVolumeResource(ctx context.Context, vin dyn.Value) (dyn.Value, error) { | ||
// Normalize the output value to the target schema. | ||
v, diags := convert.Normalize(schema.ResourceVolume{}, vin) | ||
for _, diag := range diags { | ||
log.Debugf(ctx, "volume normalization diagnostic: %s", diag.Summary) | ||
} | ||
|
||
// TODO: What happens if I try to delete a UC volume that has data in it? | ||
// Do I need force destroy functionality here. | ||
|
||
// We always set force destroy as it allows DABs to manage the lifecycle | ||
// of the schema. It's the responsibility of the CLI to ensure the user | ||
// is adequately warned when they try to delete a UC Volume. | ||
vout, err := dyn.SetByPath(v, dyn.MustPathFromString("force_destroy"), dyn.V(true)) | ||
if err != nil { | ||
return dyn.InvalidValue, err | ||
} | ||
|
||
return vout, nil | ||
} | ||
|
||
type volumeConverter struct{} | ||
|
||
func (volumeConverter) Convert(ctx context.Context, key string, vin dyn.Value, out *schema.Resources) error { | ||
vout, err := convertVolumeResource(ctx, vin) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
// Add the converted resource to the output. | ||
out.Schema[key] = vout.AsAny() | ||
|
||
// Configure grants for this resource. | ||
if grants := convertGrantsResource(ctx, vin); grants != nil { | ||
grants.Schema = fmt.Sprintf("${databricks_schema.%s.id}", key) | ||
out.Grants["schema_"+key] = grants | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func init() { | ||
registerConverter("volumes", volumeConverter{}) | ||
} |