class Google::Apis::RunV2::GoogleCloudRunV2ListServicesResponse
Response message containing a list of Services.
Attributes
next_page_token[RW]
A token indicating there are more items than page_size. Use it in the next ListServices request to continue. Corresponds to the JSON property ‘nextPageToken` @return [String]
services[RW]
The resulting list of Services. Corresponds to the JSON property ‘services` @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Service>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/run_v2/classes.rb, line 367 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/run_v2/classes.rb, line 372 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @services = args[:services] if args.key?(:services) end