package image import ( "context" "github.com/hashicorp/terraform-plugin-framework-timeouts/datasource/timeouts" "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-log/tflog" decort "repository.basistech.ru/BASIS/decort-golang-sdk" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/client" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/constants" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/image/flattens" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/image/models" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/image/schemas" ) // Ensure the implementation satisfies the expected interfaces. var ( _ datasource.DataSource = &dataSourceImage{} ) func NewDataSourceImage() datasource.DataSource { return &dataSourceImage{} } // dataSourceImage is the data source implementation. type dataSourceImage struct { client *decort.DecortClient } func (d *dataSourceImage) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) { // Read Terraform configuration data into the model var state models.RecordImageModel resp.Diagnostics.Append(req.Config.Get(ctx, &state)...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Error read data source image state") return } tflog.Info(ctx, "Start read data source image", map[string]any{"image_id": state.ImageId.ValueInt64()}) // Set timeouts readTimeout, diags := state.Timeouts.Read(ctx, constants.Timeout30s) resp.Diagnostics.Append(diags...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Error set timeout") return } ctx, cancel := context.WithTimeout(ctx, readTimeout) defer cancel() // Map response body to schema resp.Diagnostics.Append(flattens.DataSourceImage(ctx, &state, d.client)...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Error flatten image") return } // Set state resp.Diagnostics.Append(resp.State.Set(ctx, &state)...) if resp.Diagnostics.HasError() { return } tflog.Info(ctx, "End read data source image", map[string]any{"image_id": state.ImageId.ValueInt64()}) } func (d *dataSourceImage) Schema(ctx context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) { resp.Schema = schema.Schema{ Attributes: schemas.MakeSchemaDataSourceImage(), Blocks: map[string]schema.Block{ "timeouts": timeouts.Block(ctx), }, } } func (d *dataSourceImage) Metadata(_ context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) { resp.TypeName = req.ProviderTypeName + "_image" } // Configure adds the provider configured client to the data source. func (d *dataSourceImage) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) { tflog.Info(ctx, "Get configure data source") d.client = client.DataSource(ctx, &req, resp) tflog.Info(ctx, "Getting configure data source successfully") }