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.
614 615 616 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 614 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
594 595 596 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 594 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
602 603 604 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 602 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
607 608 609 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 607 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
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 |