Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Fleet Management pipeline unordered matchers #2079

Merged
merged 1 commit into from
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 0 additions & 81 deletions internal/resources/fleetmanagement/generic_list_type.go

This file was deleted.

64 changes: 0 additions & 64 deletions internal/resources/fleetmanagement/generic_list_type_test.go

This file was deleted.

80 changes: 0 additions & 80 deletions internal/resources/fleetmanagement/generic_list_value.go

This file was deleted.

66 changes: 0 additions & 66 deletions internal/resources/fleetmanagement/generic_list_value_test.go

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
package fleetmanagement

import (
"context"
"fmt"

"github.com/hashicorp/terraform-plugin-framework/attr"
"github.com/hashicorp/terraform-plugin-framework/diag"
"github.com/hashicorp/terraform-plugin-framework/types"
"github.com/hashicorp/terraform-plugin-framework/types/basetypes"
"github.com/hashicorp/terraform-plugin-go/tftypes"
)

var (
_ basetypes.ListTypable = listOfPrometheusMatcherType{}
)

var (
ListOfPrometheusMatcherType = listOfPrometheusMatcherType{
ListType: basetypes.ListType{
ElemType: types.StringType,
},
}
)

type listOfPrometheusMatcherType struct {
basetypes.ListType
}

func (t listOfPrometheusMatcherType) Equal(o attr.Type) bool {
other, ok := o.(listOfPrometheusMatcherType)
if !ok {
return false
}

return t.ListType.Equal(other.ListType)
}

func (t listOfPrometheusMatcherType) String() string {
return "ListOfPrometheusMatcherType"
}

func (t listOfPrometheusMatcherType) ValueFromList(ctx context.Context, in basetypes.ListValue) (basetypes.ListValuable, diag.Diagnostics) {
if in.IsNull() {
return NewListOfPrometheusMatcherValueNull(), nil
}

if in.IsUnknown() {
return NewListOfPrometheusMatcherValueUnknown(), nil
}

return NewListOfPrometheusMatcherValue(in.Elements())
}

func (t listOfPrometheusMatcherType) ValueFromTerraform(ctx context.Context, in tftypes.Value) (attr.Value, error) {
attrValue, err := t.ListType.ValueFromTerraform(ctx, in)
if err != nil {
return nil, err
}

listValue, ok := attrValue.(basetypes.ListValue)
if !ok {
return nil, fmt.Errorf("unexpected value type of %T", attrValue)
}

listValuable, diags := t.ValueFromList(ctx, listValue)
if diags.HasError() {
return nil, fmt.Errorf("unexpected error converting ListValue to ListValuable: %v", diags)
}

return listValuable, nil
}

func (t listOfPrometheusMatcherType) ValueType(ctx context.Context) attr.Value {
return ListOfPrometheusMatcherValue{}
}
Loading
Loading