mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
31 lines
952 B
Go
31 lines
952 B
Go
|
package client
|
||
|
|
||
|
type (
|
||
|
// ResourceType represents a type of Docker or Portainer resource
|
||
|
ResourceType string
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
// ResourceContainer represents a Docker resource of type container
|
||
|
ResourceContainer = ResourceType("container")
|
||
|
|
||
|
// ResourceService represents a Docker resource of type service
|
||
|
ResourceService = ResourceType("service")
|
||
|
|
||
|
// ResourceVolume represents a Docker resource of type volume
|
||
|
ResourceVolume = ResourceType("volume")
|
||
|
|
||
|
// ResourceNetwork represents a Docker resource of type network
|
||
|
ResourceNetwork = ResourceType("network")
|
||
|
|
||
|
// ResourceSecret represents a Docker resource of type secret
|
||
|
ResourceSecret = ResourceType("secret")
|
||
|
|
||
|
// ResourceConfig represents a Docker resource of type config
|
||
|
ResourceConfig = ResourceType("config")
|
||
|
|
||
|
// ResourceStack represents a Portainer resource of type stack
|
||
|
// A Portainer stack is pretty much like a Docker stack, but not the same
|
||
|
ResourceStack = ResourceType("stack")
|
||
|
)
|