Sha256: 87de8aef8f0794364d497da45c1ed8d4705619526696bb7a6a35d156a9aff7f2

Contents?: true

Size: 1.15 KB

Versions: 26

Compression:

Stored size: 1.15 KB

Contents

# frozen_string_literal: true

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require "gapic/uri_template/parser"

module Gapic
  # TODO: Enter docs
  # Dooooooooocs!!!
  module UriTemplate
    # Parse arguments from a URI template.
    # @see https://tools.ietf.org/html/rfc6570 URI Template
    #
    # used to satisfy AIP-4222 Routing headers
    # @see https://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.
    def self.parse_arguments uri_template
      Parser.parse_arguments uri_template
    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
gapic-generator-0.11.0 lib/gapic/uri_template.rb
gapic-generator-0.10.1 lib/gapic/uri_template.rb
gapic-generator-0.10.0 lib/gapic/uri_template.rb
gapic-generator-0.9.1 lib/gapic/uri_template.rb
gapic-generator-0.9.0 lib/gapic/uri_template.rb
gapic-generator-0.8.0 lib/gapic/uri_template.rb
gapic-generator-0.7.5 lib/gapic/uri_template.rb
gapic-generator-0.7.4 lib/gapic/uri_template.rb
gapic-generator-0.7.2 lib/gapic/uri_template.rb
gapic-generator-0.7.1 lib/gapic/uri_template.rb
gapic-generator-0.7.0 lib/gapic/uri_template.rb
gapic-generator-0.6.15 lib/gapic/uri_template.rb
gapic-generator-0.6.14 lib/gapic/uri_template.rb
gapic-generator-0.6.13 lib/gapic/uri_template.rb
gapic-generator-0.6.12 lib/gapic/uri_template.rb
gapic-generator-0.6.11 lib/gapic/uri_template.rb
gapic-generator-0.6.10 lib/gapic/uri_template.rb
gapic-generator-0.6.9 lib/gapic/uri_template.rb
gapic-generator-0.6.8 lib/gapic/uri_template.rb
gapic-generator-0.6.7 lib/gapic/uri_template.rb