class Google::Apis::SpannerV1::ListScansResponse

Response method from the ListScans method.

Attributes

next_page_token[RW]

Token to retrieve the next page of results, or empty if there are no more results in the list. Corresponds to the JSON property `nextPageToken` @return [String]

scans[RW]

Available scans based on the list query parameters. Corresponds to the JSON property `scans` @return [Array<Google::Apis::SpannerV1::Scan>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 2182
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/spanner_v1/classes.rb, line 2187
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @scans = args[:scans] if args.key?(:scans)
end