Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLinksRequest

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

Request message for SearchLinks.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLinksRequest

Returns a new instance of GoogleCloudDatacatalogLineageV1SearchLinksRequest.



614
615
616
# File 'lib/google/apis/datalineage_v1/classes.rb', line 614

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

Instance Attribute Details

#page_sizeFixnum

Optional. The maximum number of links to return in a single page of the response. A page may contain fewer links than this value. If unspecified, at most 10 links are returned. Maximum value is 100; values greater than 100 are reduced to 100. Corresponds to the JSON property pageSize

Returns:

  • (Fixnum)


594
595
596
# File 'lib/google/apis/datalineage_v1/classes.rb', line 594

def page_size
  @page_size
end

#page_tokenString

Optional. The page token received from a previous SearchLinksRequest call. Use it to get the next page. When requesting subsequent pages of a response, remember that all parameters must match the values you provided in the original request. Corresponds to the JSON property pageToken

Returns:

  • (String)


602
603
604
# File 'lib/google/apis/datalineage_v1/classes.rb', line 602

def page_token
  @page_token
end

#sourceGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference

The soft reference to everything you can attach a lineage event to. Corresponds to the JSON property source



607
608
609
# File 'lib/google/apis/datalineage_v1/classes.rb', line 607

def source
  @source
end

#targetGoogle::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference

The soft reference to everything you can attach a lineage event to. Corresponds to the JSON property target



612
613
614
# File 'lib/google/apis/datalineage_v1/classes.rb', line 612

def target
  @target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



619
620
621
622
623
624
# File 'lib/google/apis/datalineage_v1/classes.rb', line 619

def update!(**args)
  @page_size = args[:page_size] if args.key?(:page_size)
  @page_token = args[:page_token] if args.key?(:page_token)
  @source = args[:source] if args.key?(:source)
  @target = args[:target] if args.key?(:target)
end