Some checks failed
CI Workflow / Check GoReleaser config (pull_request) Successful in 4s
CI Workflow / Test readiness for publishing provider (pull_request) Failing after 3m57s
CI Workflow / CI run tests (pull_request) Failing after 5m5s
CI Workflow / CI run build and linting (pull_request) Failing after 4m50s
CI Workflow / Code coverage report (pull_request) Has been skipped
92 lines
2.6 KiB
Go
92 lines
2.6 KiB
Go
package postgresflexalpha
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hashicorp/terraform-plugin-framework/types"
|
|
"github.com/stackitcloud/stackit-sdk-go/services/postgresflex/v3alpha1api"
|
|
|
|
"tf-provider.git.onstackit.cloud/stackit-dev-tools/terraform-provider-stackitprivatepreview/stackit/internal/utils"
|
|
)
|
|
|
|
// mapFields maps fields from a ListDatabase API response to a resourceModel for the data source.
|
|
func mapFields(
|
|
source *v3alpha1api.ListDatabase,
|
|
model *dataSourceModel,
|
|
region string,
|
|
) error {
|
|
if source == nil {
|
|
return fmt.Errorf("response is nil")
|
|
}
|
|
if source.Id == 0 {
|
|
return fmt.Errorf("id not present")
|
|
}
|
|
if model == nil {
|
|
return fmt.Errorf("model given is nil")
|
|
}
|
|
|
|
var databaseId int32
|
|
if model.DatabaseId.ValueInt32() != 0 {
|
|
databaseId = model.DatabaseId.ValueInt32()
|
|
} else if source.Id != 0 {
|
|
databaseId = source.Id
|
|
} else {
|
|
return fmt.Errorf("database id not present")
|
|
}
|
|
|
|
model.Id = types.Int32Value(databaseId)
|
|
model.DatabaseId = types.Int32Value(databaseId)
|
|
model.Name = types.StringValue(source.GetName())
|
|
model.Owner = types.StringValue(cleanString(source.Owner))
|
|
model.Region = types.StringValue(region)
|
|
model.ProjectId = types.StringValue(model.ProjectId.ValueString())
|
|
model.InstanceId = types.StringValue(model.InstanceId.ValueString())
|
|
model.TerraformID = utils.BuildInternalTerraformId(
|
|
model.ProjectId.ValueString(),
|
|
region,
|
|
model.InstanceId.ValueString(),
|
|
string(databaseId),
|
|
)
|
|
|
|
return nil
|
|
}
|
|
|
|
// mapResourceFields maps fields from a GetDatabase API response to a resourceModel for the resource.
|
|
func mapResourceFields(source *v3alpha1api.GetDatabaseResponse, model *resourceModel) error {
|
|
if source == nil {
|
|
return fmt.Errorf("response is nil")
|
|
}
|
|
if source.Id == 0 {
|
|
return fmt.Errorf("id not present")
|
|
}
|
|
if model == nil {
|
|
return fmt.Errorf("model input is nil")
|
|
}
|
|
|
|
var databaseId int32
|
|
if model.Id.ValueInt32() != 0 {
|
|
databaseId = model.Id.ValueInt32()
|
|
} else if source.Id != 0 {
|
|
databaseId = source.Id
|
|
} else {
|
|
return fmt.Errorf("database id not present")
|
|
}
|
|
|
|
model.Id = types.Int32Value(databaseId)
|
|
model.DatabaseId = types.Int32Value(databaseId)
|
|
model.Name = types.StringValue(source.GetName())
|
|
model.Owner = types.StringValue(cleanString(source.Owner))
|
|
return nil
|
|
}
|
|
|
|
// toCreatePayload converts the resource model to an API create payload.
|
|
func toCreatePayload(model *resourceModel) (*v3alpha1api.CreateDatabaseRequestPayload, error) {
|
|
if model == nil {
|
|
return nil, fmt.Errorf("nil model")
|
|
}
|
|
|
|
return &v3alpha1api.CreateDatabaseRequestPayload{
|
|
Name: model.Name.ValueString(),
|
|
Owner: model.Owner.ValueStringPointer(),
|
|
}, nil
|
|
}
|