Class: Google::Apis::ServicemanagementV1::ContextRule
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::ContextRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_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
708 709 710 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 708 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
701 702 703 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 701 def provided @provided end |
#requested ⇒ Array<String>
A list of full type names of requested contexts.
Corresponds to the JSON property requested
706 707 708 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 706 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
696 697 698 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 696 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
713 714 715 716 717 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 713 def update!(**args) @selector = args[:selector] if args.key?(:selector) @provided = args[:provided] if args.key?(:provided) @requested = args[:requested] if args.key?(:requested) end |