class Google::Apis::ServiceconsumermanagementV1::CustomHttpPattern

A custom pattern is used for defining custom HTTP verb.

Attributes

kind[RW]

The name of this custom HTTP verb. Corresponds to the JSON property `kind` @return [String]

path[RW]

The path matched by this custom verb. Corresponds to the JSON property `path` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 789
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 794
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @path = args[:path] if args.key?(:path)
end