mirror of
https://github.com/rancher/steve.git
synced 2025-05-10 08:54:48 +00:00
15 lines
287 B
Go
15 lines
287 B
Go
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"`
|
|
}
|