package models type Provenance string const ( ProvenanceNone Provenance = "" ProvenanceApi Provenance = "api" ProvenanceFile Provenance = "file" ) // Provisionable represents a resource that can be created through a provisioning mechanism, such as Terraform or config file. type Provisionable interface { ResourceType() string ResourceID() string ResourceOrgID() int64 }