Class: Google::Apis::ServicemanagementV1::SystemParameterRule
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::SystemParameterRule
- 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
Define a system parameter rule mapping system parameter definitions to methods.
Instance Attribute Summary collapse
-
#parameters ⇒ Array<Google::Apis::ServicemanagementV1::SystemParameter>
Define parameters.
-
#selector ⇒ String
Selects the methods to which this rule applies.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SystemParameterRule
constructor
A new instance of SystemParameterRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SystemParameterRule
Returns a new instance of SystemParameterRule
3335 3336 3337 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3335 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parameters ⇒ Array<Google::Apis::ServicemanagementV1::SystemParameter>
Define parameters. Multiple names may be defined for a parameter.
For a given method call, only one of them should be used. If multiple
names are used the behavior is implementation-dependent.
If none of the specified names are present the behavior is
parameter-dependent.
Corresponds to the JSON property parameters
3333 3334 3335 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3333 def parameters @parameters end |
#selector ⇒ String
Selects the methods to which this rule applies. Use '*' to indicate all
methods in all APIs.
Refer to selector for syntax details.
Corresponds to the JSON property selector
3324 3325 3326 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3324 def selector @selector end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3340 3341 3342 3343 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 3340 def update!(**args) @selector = args[:selector] if args.key?(:selector) @parameters = args[:parameters] if args.key?(:parameters) end |