Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLinksResponse

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 SearchLinks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLinksResponse

Returns a new instance of GoogleCloudDatacatalogLineageV1SearchLinksResponse.



643
644
645
# File 'lib/google/apis/datalineage_v1/classes.rb', line 643

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

Instance Attribute Details

The list of links for a given asset. Can be empty if the asset has no relations of requested type (source or target). Corresponds to the JSON property links



635
636
637
# File 'lib/google/apis/datalineage_v1/classes.rb', line 635

def links
  @links
end

#next_page_tokenString

The token to specify as page_token in the subsequent call to get the next page. Omitted if there are no more pages in the response. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


641
642
643
# File 'lib/google/apis/datalineage_v1/classes.rb', line 641

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



648
649
650
651
# File 'lib/google/apis/datalineage_v1/classes.rb', line 648

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