class Google::Apis::RunV2::GoogleCloudRunV2ListRevisionsResponse
Response message containing a list of Revisions.
Attributes
next_page_token[RW]
A token indicating there are more items than page_size. Use it in the next ListRevisions request to continue. Corresponds to the JSON property ‘nextPageToken` @return [String]
revisions[RW]
The resulting list of Revisions. Corresponds to the JSON property ‘revisions` @return [Array<Google::Apis::RunV2::GoogleCloudRunV2Revision>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/run_v2/classes.rb, line 341 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 346 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @revisions = args[:revisions] if args.key?(:revisions) end