Which tier this target belongs to Where this source lives — used for UI grouping
| 2188 | |
| 2189 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2190 | class InstructionLocation(Enum): |
| 2191 | """Which tier this target belongs to |
| 2192 | |
| 2193 | Where this source lives — used for UI grouping |
| 2194 | """ |
| 2195 | PLUGIN = "plugin" |
| 2196 | REPOSITORY = "repository" |
| 2197 | USER = "user" |
| 2198 | WORKING_DIRECTORY = "working-directory" |
| 2199 | |
| 2200 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 2201 | class InstructionSourceType(Enum): |