package audit 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" "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/audit/flattens" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/audit/models" "repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/audit/schemas" ) // Ensure the implementation satisfies the expected interfaces. var ( _ datasource.DataSource = &dataSourceAudit{} ) func NewDataSourceAudit() datasource.DataSource { return &dataSourceAudit{} } // dataSourceAudit is the data source implementation. type dataSourceAudit struct { client *client.Client } func (d *dataSourceAudit) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) { // Read Terraform configuration data into the model var state models.DataSourceAudit resp.Diagnostics.Append(req.Config.Get(ctx, &state)...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Read dataSourceAudit: Error get state") return } auditGuid := state.AuditGuid.ValueString() tflog.Info(ctx, "Read dataSourceAudit: got state successfully", map[string]any{"audit_guid": auditGuid}) // Set timeouts readTimeout, diags := state.Timeouts.Read(ctx, constants.Timeout180s) resp.Diagnostics.Append(diags...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Read dataSourceAudit: Error set timeout") return } tflog.Info(ctx, "Read dataSourceAudit: set timeouts successfully", map[string]any{ "audit_guid": auditGuid, "readTimeout": readTimeout}) ctx, cancel := context.WithTimeout(ctx, readTimeout) defer cancel() // Map response body to schema resp.Diagnostics.Append(flattens.AuditDataSource(ctx, &state, d.client)...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Read dataSourceAudit: Error flatten") return } // Set refreshed state resp.Diagnostics.Append(resp.State.Set(ctx, &state)...) if resp.Diagnostics.HasError() { tflog.Error(ctx, "Read dataSourceAudit: Error set state") return } tflog.Info(ctx, "End read dataSourceAudit", map[string]any{"audit_guid": auditGuid}) } func (d *dataSourceAudit) Schema(ctx context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) { resp.Schema = schema.Schema{ Attributes: schemas.MakeSchemaDataSourceAudit(), Blocks: map[string]schema.Block{ "timeouts": timeouts.Block(ctx), }, } } func (d *dataSourceAudit) Metadata(_ context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) { resp.TypeName = req.ProviderTypeName + "_audit" } // Configure adds the provider configured client to the data source. func (d *dataSourceAudit) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) { tflog.Info(ctx, "Get Configure dataSourceAudit") d.client = client.DataSource(ctx, &req, resp) tflog.Info(ctx, "Getting Configure dataSourceAudit successfully") }