Class: Google::Apis::ServiceconsumermanagementV1::ContextRule
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1::ContextRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceconsumermanagement_v1/classes.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb
Overview
A context rule provides information about the context for an individual API element.
Instance Attribute Summary collapse
-
#provided ⇒ Array<String>
A list of full type names of provided contexts.
-
#requested ⇒ Array<String>
A list of full type names of requested contexts.
-
#selector ⇒ String
Selects the methods to which this rule applies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContextRule
constructor
A new instance of ContextRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContextRule
Returns a new instance of ContextRule
641 642 643 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 641 def initialize(**args) update!(**args) end |
Instance Attribute Details
#provided ⇒ Array<String>
A list of full type names of provided contexts.
Corresponds to the JSON property provided
628 629 630 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 628 def provided @provided end |
#requested ⇒ Array<String>
A list of full type names of requested contexts.
Corresponds to the JSON property requested
633 634 635 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 633 def requested @requested end |
#selector ⇒ String
Selects the methods to which this rule applies.
Refer to selector for syntax details.
Corresponds to the JSON property selector
639 640 641 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 639 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
646 647 648 649 650 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 646 def update!(**args) @provided = args[:provided] if args.key?(:provided) @requested = args[:requested] if args.key?(:requested) @selector = args[:selector] if args.key?(:selector) end |