Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ListRunsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datalineage_v1/classes.rb,
lib/google/apis/datalineage_v1/representations.rb,
lib/google/apis/datalineage_v1/representations.rb

Overview

Response message for ListRuns.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ListRunsResponse

Returns a new instance of GoogleCloudDatacatalogLineageV1ListRunsResponse.



293
294
295
# File 'lib/google/apis/datalineage_v1/classes.rb', line 293

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

Instance Attribute Details

#next_page_tokenString

The token to specify as page_token in the next call to get the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


286
287
288
# File 'lib/google/apis/datalineage_v1/classes.rb', line 286

def next_page_token
  @next_page_token
end

#runsArray<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Run>

The runs from the specified project and location. Corresponds to the JSON property runs



291
292
293
# File 'lib/google/apis/datalineage_v1/classes.rb', line 291

def runs
  @runs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



298
299
300
301
# File 'lib/google/apis/datalineage_v1/classes.rb', line 298

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