Jon Perritt | f63c909 | 2015-02-09 11:23:59 -0700 | [diff] [blame] | 1 | package stacktemplates |
| 2 | |
| 3 | import ( |
| 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. |
| 9 | func 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. |
| 14 | func Validate(c *gophercloud.ServiceClient, opts os.ValidateOptsBuilder) os.ValidateResult { |
| 15 | return os.Validate(c, opts) |
| 16 | } |