Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ListLineageEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ListLineageEventsResponse
- 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 ListLineageEvents.
Instance Attribute Summary collapse
-
#lineage_events ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1LineageEvent>
Lineage events from the specified project and location.
-
#next_page_token ⇒ String
The token to specify as
page_token
in the next call to get the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ListLineageEventsResponse
constructor
A new instance of GoogleCloudDatacatalogLineageV1ListLineageEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ListLineageEventsResponse
Returns a new instance of GoogleCloudDatacatalogLineageV1ListLineageEventsResponse.
241 242 243 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 241 def initialize(**args) update!(**args) end |
Instance Attribute Details
#lineage_events ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1LineageEvent>
Lineage events from the specified project and location.
Corresponds to the JSON property lineageEvents
233 234 235 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 233 def lineage_events @lineage_events end |
#next_page_token ⇒ String
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
239 240 241 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 239 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
246 247 248 249 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 246 def update!(**args) @lineage_events = args[:lineage_events] if args.key?(:lineage_events) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |