Class: Google::Apis::WorkloadmanagerV1::ListRulesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListRulesResponse

Returns a new instance of ListRulesResponse.



826
827
828
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 826

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


819
820
821
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 819

def next_page_token
  @next_page_token
end

#rulesArray<Google::Apis::WorkloadmanagerV1::Rule>

all rules in response Corresponds to the JSON property rules



824
825
826
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 824

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



831
832
833
834
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 831

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @rules = args[:rules] if args.key?(:rules)
end