forked from hashicorp/terraform-plugin-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpath_step_element_key_value.go
48 lines (38 loc) · 1.47 KB
/
path_step_element_key_value.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package path
import (
"fmt"
"github.com/hashicorp/terraform-plugin-framework/attr"
)
// Ensure PathStepElementKeyValue satisfies the PathStep interface.
// var _ PathStep = PathStepElementKeyValue(/* ... */)
// PathStepElementKeyValue is an attribute path transversal for a Value element
// of a set. Sets do not use integer-based indexing.
//
// List elements must be transversed by PathStepElementKeyInt.
// Map elements must be transversed by PathStepElementKeyString.
// Object attributes must be transversed by PathStepAttributeName.
type PathStepElementKeyValue struct {
// Value is an interface, so it cannot be type aliased with methods.
attr.Value
}
// Equal returns true if the given PathStep is a PathStepAttributeName and the
// attribute name is equivalent.
func (s PathStepElementKeyValue) Equal(o PathStep) bool {
other, ok := o.(PathStepElementKeyValue)
if !ok {
return false
}
return s.Value.Equal(other.Value)
}
// ExpressionStep returns the ExpressionStep for the PathStep.
func (s PathStepElementKeyValue) ExpressionStep() ExpressionStep {
return ExpressionStepElementKeyValueExact(s)
}
// String returns the human-readable representation of the element key.
// It is intended for logging and error messages and is not protected by
// compatibility guarantees.
func (s PathStepElementKeyValue) String() string {
return fmt.Sprintf("[Value(%s)]", s.Value.String())
}
// unexported satisfies the PathStep interface.
func (s PathStepElementKeyValue) unexported() {}