"). (Note that a trailing verb without a * leading slash is not permitted). * * Examples: * projects * /projects * foo/{bar=**}/fizz/* * /foo/{bar=**}/fizz/*:action * * Templates use the syntax of the API platform; see * https://github.com/googleapis/api-common-protos/blob/master/google/api/http.proto * for details. A template consists of a sequence of literals, wildcards, and variable bindings, * where each binding can have a sub-path. A string representation can be parsed into an * instance of AbsoluteResourceTemplate, which can then be used to perform matching and instantiation. * * @internal */ interface ResourceTemplateInterface { /** * @return string A string representation of the resource template */ public function __toString(); /** * Renders a resource template using the provided bindings. * * @param array $bindings An array matching var names to binding strings. * @return string A rendered representation of this resource template. * @throws ValidationException If $bindings does not contain all required keys * or if a sub-template can't be parsed. */ public function render(array $bindings); /** * Check if $path matches a resource string. * * @param string $path A resource string. * @return bool */ public function matches(string $path); /** * Matches a given $path to a resource template, and returns an array of bindings between * wildcards / variables in the template and values in the path. If $path does not match the * template, then a ValidationException is thrown. * * @param string $path A resource string. * @throws ValidationException if path can't be matched to the template. * @return array Array matching var names to binding values. */ public function match(string $path); }