1
0
mirror of https://github.com/rancher/types.git synced 2025-09-24 19:39:13 +00:00

go generate

This commit is contained in:
kinarashah
2019-03-04 13:54:14 -08:00
committed by Alena Prokharchyk
parent ac1d1af8d0
commit 445c704bdf

View File

@@ -1,12 +1,10 @@
package client
const (
UpdateGlobalDNSTargetsInputType = "updateGlobalDNSTargetsInput"
UpdateGlobalDNSTargetsInputFieldMultiClusterAppID = "multiClusterAppId"
UpdateGlobalDNSTargetsInputFieldProjectIDs = "projectIds"
UpdateGlobalDNSTargetsInputType = "updateGlobalDNSTargetsInput"
UpdateGlobalDNSTargetsInputFieldProjectIDs = "projectIds"
)
type UpdateGlobalDNSTargetsInput struct {
MultiClusterAppID string `json:"multiClusterAppId,omitempty" yaml:"multiClusterAppId,omitempty"`
ProjectIDs []string `json:"projectIds,omitempty" yaml:"projectIds,omitempty"`
ProjectIDs []string `json:"projectIds,omitempty" yaml:"projectIds,omitempty"`
}