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.
466 467 468 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 466 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
458 459 460 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 458 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
464 465 466 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 464 def pipelines @pipelines end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
471 472 473 474 |
# File 'lib/google/apis/datapipelines_v1/classes.rb', line 471 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @pipelines = args[:pipelines] if args.key?(:pipelines) end |