class Google::Apis::ApigeeV1::GoogleCloudApigeeV1Operation
Represents the pairing of REST resource path and the actions (verbs) allowed on the resource path.
Attributes
methods_prop[RW]
methods refers to the REST verbs as in www.w3.org/Protocols/rfc2616/ rfc2616-sec9.html. When none specified, all verb types are allowed. Corresponds to the JSON property `methods` @return [Array<String>]
resource[RW]
Required. REST resource path associated with the API proxy or remote service. Corresponds to the JSON property `resource` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4708 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 4713 def update!(**args) @methods_prop = args[:methods_prop] if args.key?(:methods_prop) @resource = args[:resource] if args.key?(:resource) end