Class: Google::Apis::ServiceuserV1::ContextRule
- Inherits:
-
Object
- Object
- Google::Apis::ServiceuserV1::ContextRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceuser_v1/classes.rb,
generated/google/apis/serviceuser_v1/representations.rb,
generated/google/apis/serviceuser_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
1178 1179 1180 |
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1178 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
1171 1172 1173 |
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1171 def provided @provided end |
#requested ⇒ Array<String>
A list of full type names of requested contexts.
Corresponds to the JSON property requested
1176 1177 1178 |
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1176 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
1166 1167 1168 |
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1166 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1183 1184 1185 1186 1187 |
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1183 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 |