1
0
mirror of https://github.com/rancher/steve.git synced 2025-05-10 08:54:48 +00:00
steve/pkg/resources/cluster/rest.go

15 lines
287 B
Go
Raw Permalink Normal View History

package cluster
import (
"k8s.io/apimachinery/pkg/runtime"
)
type ApplyInput struct {
DefaultNamespace string `json:"defaultNamespace,omitempty"`
YAML string `json:"yaml,omitempty"`
}
type ApplyOutput struct {
Resources []runtime.Object `json:"resources,omitempty"`
}