Class: Google::Apis::ServiceconsumermanagementV1::MethodPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1::MethodPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceconsumermanagement_v1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1/representations.rb,
lib/google/apis/serviceconsumermanagement_v1/representations.rb
Overview
Defines policies applying to an RPC method.
Instance Attribute Summary collapse
-
#request_policies ⇒ Array<Google::Apis::ServiceconsumermanagementV1::FieldPolicy>
Policies that are applicable to the request message.
-
#selector ⇒ String
Selects a method to which these policies should be enforced, for example, " google.pubsub.v1.Subscriber.CreateSubscription".
Instance Method Summary collapse
-
#initialize(**args) ⇒ MethodPolicy
constructor
A new instance of MethodPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MethodPolicy
Returns a new instance of MethodPolicy.
2128 2129 2130 |
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2128 def initialize(**args) update!(**args) end |
Instance Attribute Details
#request_policies ⇒ Array<Google::Apis::ServiceconsumermanagementV1::FieldPolicy>
Policies that are applicable to the request message.
Corresponds to the JSON property requestPolicies
2118 2119 2120 |
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2118 def request_policies @request_policies end |
#selector ⇒ String
Selects a method to which these policies should be enforced, for example, "
google.pubsub.v1.Subscriber.CreateSubscription". Refer to selector for syntax
details. NOTE: This field must not be set in the proto annotation. It will be
automatically filled by the service config compiler .
Corresponds to the JSON property selector
2126 2127 2128 |
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2126 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2133 2134 2135 2136 |
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 2133 def update!(**args) @request_policies = args[:request_policies] if args.key?(:request_policies) @selector = args[:selector] if args.key?(:selector) end |