Class: Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ListProcessesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1ListProcessesResponse
- 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 ListProcesses.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The token to specify as
page_token
in the next call to get the next page. -
#processes ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Process>
The processes from the specified project and location.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ListProcessesResponse
constructor
A new instance of GoogleCloudDatacatalogLineageV1ListProcessesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogLineageV1ListProcessesResponse
Returns a new instance of GoogleCloudDatacatalogLineageV1ListProcessesResponse.
267 268 269 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 267 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The token to specify as page_token
in the next call to get the next page. If
this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
260 261 262 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 260 def next_page_token @next_page_token end |
#processes ⇒ Array<Google::Apis::DatalineageV1::GoogleCloudDatacatalogLineageV1Process>
The processes from the specified project and location.
Corresponds to the JSON property processes
265 266 267 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 265 def processes @processes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
272 273 274 275 |
# File 'lib/google/apis/datalineage_v1/classes.rb', line 272 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @processes = args[:processes] if args.key?(:processes) end |