Class: Google::Apis::BigquerydatatransferV1::ListTransferResourcesResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::ListTransferResourcesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquerydatatransfer_v1/classes.rb,
lib/google/apis/bigquerydatatransfer_v1/representations.rb,
lib/google/apis/bigquerydatatransfer_v1/representations.rb
Overview
Response for the ListTransferResources RPC.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Output only.
-
#transfer_resources ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferResource>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTransferResourcesResponse
constructor
A new instance of ListTransferResourcesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListTransferResourcesResponse
Returns a new instance of ListTransferResourcesResponse.
561 562 563 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 561 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Output only. 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
554 555 556 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 554 def next_page_token @next_page_token end |
#transfer_resources ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferResource>
Output only. The transfer resources.
Corresponds to the JSON property transferResources
559 560 561 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 559 def transfer_resources @transfer_resources end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
566 567 568 569 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 566 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_resources = args[:transfer_resources] if args.key?(:transfer_resources) end |