Class: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/datapipelines_v1/classes.rb,
lib/google/apis/datapipelines_v1/representations.rb,
lib/google/apis/datapipelines_v1/representations.rb

Overview

Response message for ListPipelines.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDatapipelinesV1ListPipelinesResponse

Returns a new instance of GoogleCloudDatapipelinesV1ListPipelinesResponse.



493
494
495
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 493

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

Instance Attribute Details

#next_page_tokenString

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


485
486
487
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 485

def next_page_token
  @next_page_token
end

#pipelinesArray<Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1Pipeline>

Results that matched the filter criteria and were accessible to the caller. Results are always in descending order of pipeline creation date. Corresponds to the JSON property pipelines



491
492
493
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 491

def pipelines
  @pipelines
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



498
499
500
501
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 498

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @pipelines = args[:pipelines] if args.key?(:pipelines)
end