module Gapic::UriTemplate

TODO: Enter docs Dooooooooocs!!!

Public Class Methods

parse_arguments(uri_template) click to toggle source

Parse arguments from a URI template. @see tools.ietf.org/html/rfc6570 URI Template

used to satisfy AIP-4222 Routing headers @see google.aip.dev/client-libraries/4222

@param uri_template [String] The URI template to be parsed.

@return [Array<String>] The arguments of the URI template.

# File lib/gapic/uri_template.rb, line 32
def self.parse_arguments uri_template
  Parser.parse_arguments uri_template
end