blob: 3b5d46e1c9e2044ac8bb4d1323145e224981d02e [file] [log] [blame]
Jon Perrittf63c9092015-02-09 11:23:59 -07001package stacktemplates
2
3import (
4 "github.com/rackspace/gophercloud"
5 os "github.com/rackspace/gophercloud/openstack/orchestration/v1/stacktemplates"
6)
7
8// Get retreives data for the given stack template.
9func Get(c *gophercloud.ServiceClient, stackName, stackID string) os.GetResult {
10 return os.Get(c, stackName, stackID)
11}
12
13// Validate validates the given stack template.
14func Validate(c *gophercloud.ServiceClient, opts os.ValidateOptsBuilder) os.ValidateResult {
15 return os.Validate(c, opts)
16}