1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
package stacktemplates
import (
"github.com/rackspace/gophercloud"
os "github.com/rackspace/gophercloud/openstack/orchestration/v1/stacktemplates"
)
// Get retreives data for the given stack template.
func Get(c *gophercloud.ServiceClient, stackName, stackID string) os.GetResult {
return os.Get(c, stackName, stackID)
}
// Validate validates the given stack template.
func Validate(c *gophercloud.ServiceClient, opts os.ValidateOptsBuilder) os.ValidateResult {
return os.Validate(c, opts)
}
|