mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-18 18:29:44 -05:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
// Copyright IBM Corp. 2014, 2026
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package addrs
|
|
|
|
// Targetable is an interface implemented by all address types that can be
|
|
// used as "targets" for selecting sub-graphs of a graph.
|
|
type Targetable interface {
|
|
UniqueKeyer
|
|
|
|
targetableSigil()
|
|
|
|
// TargetContains returns true if the receiver is considered to contain
|
|
// the given other address. Containment, for the purpose of targeting,
|
|
// means that if a container address is targeted then all of the
|
|
// addresses within it are also implicitly targeted.
|
|
//
|
|
// A targetable address always contains at least itself.
|
|
TargetContains(other Targetable) bool
|
|
|
|
// AddrType returns the address type for comparison with other Targetable
|
|
// addresses.
|
|
AddrType() TargetableAddrType
|
|
|
|
// String produces a string representation of the address that could be
|
|
// parsed as a HCL traversal and passed to ParseTarget to produce an
|
|
// identical result.
|
|
String() string
|
|
}
|
|
|
|
type targetable struct {
|
|
}
|
|
|
|
func (r targetable) targetableSigil() {
|
|
}
|
|
|
|
type TargetableAddrType int
|
|
|
|
const (
|
|
ConfigResourceAddrType TargetableAddrType = iota
|
|
AbsResourceInstanceAddrType
|
|
AbsResourceAddrType
|
|
ModuleAddrType
|
|
ModuleInstanceAddrType
|
|
ActionAddrType
|
|
ActionInstanceAddrType
|
|
)
|