You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.2 KiB
90 lines
3.2 KiB
7 months ago
|
package rg
|
||
|
|
||
|
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/rg/flattens"
|
||
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/rg/models"
|
||
|
"repository.basistech.ru/BASIS/terraform-provider-dynamix/internal/service/cloudapi/rg/schemas"
|
||
|
)
|
||
|
|
||
|
// Ensure the implementation satisfies the expected interfaces.
|
||
|
var (
|
||
|
_ datasource.DataSource = &dataSourceRGAudits{}
|
||
|
)
|
||
|
|
||
|
func NewDataSourceRGAudits() datasource.DataSource {
|
||
|
return &dataSourceRGAudits{}
|
||
|
}
|
||
|
|
||
|
// dataSourceRGAudits is the data source implementation.
|
||
|
type dataSourceRGAudits struct {
|
||
|
client *decort.DecortClient
|
||
|
}
|
||
|
|
||
|
func (d *dataSourceRGAudits) Read(ctx context.Context, req datasource.ReadRequest, resp *datasource.ReadResponse) {
|
||
|
// Read Terraform configuration data into the model
|
||
|
var state models.DataSourceRGAuditsModel
|
||
|
resp.Diagnostics.Append(req.Config.Get(ctx, &state)...)
|
||
|
if resp.Diagnostics.HasError() {
|
||
|
tflog.Error(ctx, "Read dataSourceRGAudits: Error get state")
|
||
|
return
|
||
|
}
|
||
|
tflog.Info(ctx, "Read dataSourceRGAudits: got state successfully")
|
||
|
|
||
|
// Set timeouts
|
||
|
readTimeout, diags := state.Timeouts.Read(ctx, constants.Timeout30s)
|
||
|
resp.Diagnostics.Append(diags...)
|
||
|
if resp.Diagnostics.HasError() {
|
||
|
tflog.Error(ctx, "Read dataSourceRGAudits: Error set timeout")
|
||
|
return
|
||
|
}
|
||
|
tflog.Info(ctx, "Read dataSourceRGAudits: set timeouts successfully", map[string]any{
|
||
|
"readTimeout": readTimeout})
|
||
|
|
||
|
ctx, cancel := context.WithTimeout(ctx, readTimeout)
|
||
|
defer cancel()
|
||
|
|
||
|
// Map response body to schema
|
||
|
resp.Diagnostics.Append(flattens.RGAuditsDataSource(ctx, &state, d.client)...)
|
||
|
if resp.Diagnostics.HasError() {
|
||
|
tflog.Error(ctx, "Read dataSourceRGAudits: Error flatten data source rg audits")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
// Set refreshed state
|
||
|
resp.Diagnostics.Append(resp.State.Set(ctx, &state)...)
|
||
|
if resp.Diagnostics.HasError() {
|
||
|
tflog.Error(ctx, "Read dataSourceRGAudits: Error set state")
|
||
|
return
|
||
|
}
|
||
|
tflog.Info(ctx, "End read dataSourceRGAudits")
|
||
|
}
|
||
|
|
||
|
func (d *dataSourceRGAudits) Schema(ctx context.Context, _ datasource.SchemaRequest, resp *datasource.SchemaResponse) {
|
||
|
resp.Schema = schema.Schema{
|
||
|
Attributes: schemas.MakeSchemaDataSourceRGAudits(),
|
||
|
Blocks: map[string]schema.Block{
|
||
|
"timeouts": timeouts.Block(ctx),
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (d *dataSourceRGAudits) Metadata(_ context.Context, req datasource.MetadataRequest, resp *datasource.MetadataResponse) {
|
||
|
resp.TypeName = req.ProviderTypeName + "_rg_audits"
|
||
|
}
|
||
|
|
||
|
// Configure adds the provider configured client to the data source.
|
||
|
func (d *dataSourceRGAudits) Configure(ctx context.Context, req datasource.ConfigureRequest, resp *datasource.ConfigureResponse) {
|
||
|
tflog.Info(ctx, "Get Configure dataSourceRGAudits")
|
||
|
d.client = client.DataSource(ctx, &req, resp)
|
||
|
tflog.Info(ctx, "Getting Configure dataSourceRGAudits successfully")
|
||
|
}
|