Class: Google::Apis::ServiceusageV1beta1::RemoveEnableRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServiceusageV1beta1::RemoveEnableRulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/serviceusage_v1beta1/classes.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb,
lib/google/apis/serviceusage_v1beta1/representations.rb
Overview
The response message of "RemoveEnableRules" method.
Instance Attribute Summary collapse
-
#parent ⇒ String
The parent consumer policy.
-
#removed_values ⇒ Array<String>
The values removed from the parent consumer policy.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveEnableRulesResponse
constructor
A new instance of RemoveEnableRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveEnableRulesResponse
Returns a new instance of RemoveEnableRulesResponse.
4463 4464 4465 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4463 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parent ⇒ String
The parent consumer policy. It can be projects/12345/consumerPolicies/default
, or folders/12345/consumerPolicies/default, or organizations/12345/
consumerPolicies/default.
Corresponds to the JSON property parent
4456 4457 4458 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4456 def parent @parent end |
#removed_values ⇒ Array<String>
The values removed from the parent consumer policy.
Corresponds to the JSON property removedValues
4461 4462 4463 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4461 def removed_values @removed_values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4468 4469 4470 4471 |
# File 'lib/google/apis/serviceusage_v1beta1/classes.rb', line 4468 def update!(**args) @parent = args[:parent] if args.key?(:parent) @removed_values = args[:removed_values] if args.key?(:removed_values) end |