Class: Google::Apis::WorkloadmanagerV1::ListRulesResponse
- Inherits:
-
Object
- Object
- Google::Apis::WorkloadmanagerV1::ListRulesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/workloadmanager_v1/classes.rb,
lib/google/apis/workloadmanager_v1/representations.rb,
lib/google/apis/workloadmanager_v1/representations.rb
Overview
Mesesage of response of list rules
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token identifying a page of results the server should return.
-
#rules ⇒ Array<Google::Apis::WorkloadmanagerV1::Rule>
all rules in response Corresponds to the JSON property
rules.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRulesResponse
constructor
A new instance of ListRulesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRulesResponse
Returns a new instance of ListRulesResponse.
636 637 638 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 636 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
629 630 631 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 629 def next_page_token @next_page_token end |
#rules ⇒ Array<Google::Apis::WorkloadmanagerV1::Rule>
all rules in response
Corresponds to the JSON property rules
634 635 636 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 634 def rules @rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
641 642 643 644 |
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 641 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rules = args[:rules] if args.key?(:rules) end |