1
0
mirror of https://github.com/rancher/types.git synced 2025-08-27 08:18:24 +00:00

update generated

This commit is contained in:
gitlawr 2019-01-03 17:00:24 +08:00 committed by Alena Prokharchyk
parent eda6aff214
commit 9c1fdca0fc
2 changed files with 17 additions and 17 deletions

View File

@ -3,7 +3,7 @@ package client
const (
ApplyAppConfigType = "applyAppConfig"
ApplyAppConfigFieldAnswers = "answers"
ApplyAppConfigFieldCatalog = "catalog"
ApplyAppConfigFieldCatalogTemplate = "catalogTemplate"
ApplyAppConfigFieldName = "name"
ApplyAppConfigFieldTargetNamespace = "targetNamespace"
ApplyAppConfigFieldVersion = "version"
@ -11,7 +11,7 @@ const (
type ApplyAppConfig struct {
Answers map[string]string `json:"answers,omitempty" yaml:"answers,omitempty"`
Catalog string `json:"catalog,omitempty" yaml:"catalog,omitempty"`
CatalogTemplate string `json:"catalogTemplate,omitempty" yaml:"catalogTemplate,omitempty"`
Name string `json:"name,omitempty" yaml:"name,omitempty"`
TargetNamespace string `json:"targetNamespace,omitempty" yaml:"targetNamespace,omitempty"`
Version string `json:"version,omitempty" yaml:"version,omitempty"`

View File

@ -1,22 +1,22 @@
package client
const (
PublishCatalogConfigType = "publishCatalogConfig"
PublishCatalogConfigFieldCatalog = "catalog"
PublishCatalogConfigFieldGitAuthor = "gitAuthor"
PublishCatalogConfigFieldGitBranch = "gitBranch"
PublishCatalogConfigFieldGitEmail = "gitEmail"
PublishCatalogConfigFieldGitURL = "gitUrl"
PublishCatalogConfigFieldPath = "path"
PublishCatalogConfigFieldVersion = "version"
PublishCatalogConfigType = "publishCatalogConfig"
PublishCatalogConfigFieldCatalogTemplate = "catalogTemplate"
PublishCatalogConfigFieldGitAuthor = "gitAuthor"
PublishCatalogConfigFieldGitBranch = "gitBranch"
PublishCatalogConfigFieldGitEmail = "gitEmail"
PublishCatalogConfigFieldGitURL = "gitUrl"
PublishCatalogConfigFieldPath = "path"
PublishCatalogConfigFieldVersion = "version"
)
type PublishCatalogConfig struct {
Catalog string `json:"catalog,omitempty" yaml:"catalog,omitempty"`
GitAuthor string `json:"gitAuthor,omitempty" yaml:"gitAuthor,omitempty"`
GitBranch string `json:"gitBranch,omitempty" yaml:"gitBranch,omitempty"`
GitEmail string `json:"gitEmail,omitempty" yaml:"gitEmail,omitempty"`
GitURL string `json:"gitUrl,omitempty" yaml:"gitUrl,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Version string `json:"version,omitempty" yaml:"version,omitempty"`
CatalogTemplate string `json:"catalogTemplate,omitempty" yaml:"catalogTemplate,omitempty"`
GitAuthor string `json:"gitAuthor,omitempty" yaml:"gitAuthor,omitempty"`
GitBranch string `json:"gitBranch,omitempty" yaml:"gitBranch,omitempty"`
GitEmail string `json:"gitEmail,omitempty" yaml:"gitEmail,omitempty"`
GitURL string `json:"gitUrl,omitempty" yaml:"gitUrl,omitempty"`
Path string `json:"path,omitempty" yaml:"path,omitempty"`
Version string `json:"version,omitempty" yaml:"version,omitempty"`
}