Class: Google::Apis::ServiceconsumermanagementV1beta1::ContextRule
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1beta1::ContextRule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/representations.rb,
lib/google/apis/serviceconsumermanagement_v1beta1/representations.rb
Overview
A context rule provides information about the context for an individual API element.
Instance Attribute Summary collapse
-
#allowed_request_extensions ⇒ Array<String>
A list of full type names or extension IDs of extensions allowed in grpc side channel from client to backend.
-
#allowed_response_extensions ⇒ Array<String>
A list of full type names or extension IDs of extensions allowed in grpc side channel from backend to client.
-
#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.
Constructor Details
#initialize(**args) ⇒ ContextRule
Returns a new instance of ContextRule.
654 655 656 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 654 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowed_request_extensions ⇒ Array<String>
A list of full type names or extension IDs of extensions allowed in grpc side
channel from client to backend.
Corresponds to the JSON property allowedRequestExtensions
630 631 632 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 630 def allowed_request_extensions @allowed_request_extensions end |
#allowed_response_extensions ⇒ Array<String>
A list of full type names or extension IDs of extensions allowed in grpc side
channel from backend to client.
Corresponds to the JSON property allowedResponseExtensions
636 637 638 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 636 def allowed_response_extensions @allowed_response_extensions end |
#provided ⇒ Array<String>
A list of full type names of provided contexts.
Corresponds to the JSON property provided
641 642 643 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 641 def provided @provided end |
#requested ⇒ Array<String>
A list of full type names of requested contexts.
Corresponds to the JSON property requested
646 647 648 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 646 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
652 653 654 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 652 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
659 660 661 662 663 664 665 |
# File 'lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb', line 659 def update!(**args) @allowed_request_extensions = args[:allowed_request_extensions] if args.key?(:allowed_request_extensions) @allowed_response_extensions = args[:allowed_response_extensions] if args.key?(:allowed_response_extensions) @provided = args[:provided] if args.key?(:provided) @requested = args[:requested] if args.key?(:requested) @selector = args[:selector] if args.key?(:selector) end |