Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse
- 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 BatchSearchLinkProcesses.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token to specify as
page_token
in the subsequent call to get the next page. -
#process_links ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ProcessLinks>
An array of processes associated with the specified links.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse
constructor
A new instance of GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse
Returns a new instance of GoogleCloudDatacatalogLineageV1BatchSearchLinkProcessesResponse.
78 79 80 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 78 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
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
71 72 73 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 71 def next_page_token @next_page_token end |
#process_links ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ProcessLinks>
An array of processes associated with the specified links.
Corresponds to the JSON property processLinks
76 77 78 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 76 def process_links @process_links end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
83 84 85 86 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 83 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @process_links = args[:process_links] if args.key?(:process_links) end |