blob: 3b5d46e1c9e2044ac8bb4d1323145e224981d02e [file] [log] [blame]
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)
}