1 Star 0 Fork 0

zhuchance / kubernetes

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
results.go 1.48 KB
一键复制 编辑 原始数据 按行查看 历史
package stacktemplates
import (
"github.com/mitchellh/mapstructure"
"github.com/rackspace/gophercloud"
)
// Template represents a stack template.
type Template struct {
Description string `mapstructure:"description"`
HeatTemplateVersion string `mapstructure:"heat_template_version"`
Parameters map[string]interface{} `mapstructure:"parameters"`
Resources map[string]interface{} `mapstructure:"resources"`
}
// GetResult represents the result of a Get operation.
type GetResult struct {
gophercloud.Result
}
// Extract returns a pointer to a Template object and is called after a
// Get operation.
func (r GetResult) Extract() (*Template, error) {
if r.Err != nil {
return nil, r.Err
}
var res Template
if err := mapstructure.Decode(r.Body, &res); err != nil {
return nil, err
}
return &res, nil
}
// ValidatedTemplate represents the parsed object returned from a Validate request.
type ValidatedTemplate struct {
Description string
Parameters map[string]interface{}
}
// ValidateResult represents the result of a Validate operation.
type ValidateResult struct {
gophercloud.Result
}
// Extract returns a pointer to a ValidatedTemplate object and is called after a
// Validate operation.
func (r ValidateResult) Extract() (*ValidatedTemplate, error) {
if r.Err != nil {
return nil, r.Err
}
var res ValidatedTemplate
if err := mapstructure.Decode(r.Body, &res); err != nil {
return nil, err
}
return &res, nil
}
Go
1
https://gitee.com/meoom/kubernetes.git
git@gitee.com:meoom/kubernetes.git
meoom
kubernetes
kubernetes
v1.0.0

搜索帮助