Class: Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1ListPipelinesResponse
- 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
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#pipelines ⇒ Array<Google::Apis::DatapipelinesV1::GoogleCloudDatapipelinesV1Pipeline>
Results that matched the filter criteria and were accessible to the caller.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatapipelinesV1ListPipelinesResponse
constructor
A new instance of GoogleCloudDatapipelinesV1ListPipelinesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_token ⇒ String
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
485 486 487 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 485 def next_page_token @next_page_token end |
#pipelines ⇒ Array<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 |