Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLinksRequest
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1SearchLinksRequest
- 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
-
#page_size ⇒ Fixnum
Optional.
-
#page_token ⇒ String
Optional.
-
#source ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
-
#target ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLinksRequest
constructor
A new instance of GoogleCloudDatacatalogLineageV1SearchLinksRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1SearchLinksRequest
Returns a new instance of GoogleCloudDatacatalogLineageV1SearchLinksRequest.
580 581 582 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 580 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_size ⇒ Fixnum
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
560 561 562 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 560 def page_size @page_size end |
#page_token ⇒ String
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
568 569 570 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 568 def page_token @page_token end |
#source ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Corresponds to the JSON property source
573 574 575 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 573 def source @source end |
#target ⇒ Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1EntityReference
The soft reference to everything you can attach a lineage event to.
Corresponds to the JSON property target
578 579 580 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 578 def target @target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
585 586 587 588 589 590 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 585 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 |