Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1FetchReportResultsResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1FetchReportResultsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Response message for CloudChannelReportsService.FetchReportResults. Contains a tabular representation of the report results.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Pass this token to FetchReportResultsRequest.page_token to retrieve the next page of results.
-
#report_metadata ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportResultsMetadata
The features describing the data.
-
#rows ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Row>
The report's lists of values.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1FetchReportResultsResponse
constructor
A new instance of GoogleCloudChannelV1FetchReportResultsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1FetchReportResultsResponse
Returns a new instance of GoogleCloudChannelV1FetchReportResultsResponse.
1395 1396 1397 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1395 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Pass this token to FetchReportResultsRequest.page_token to retrieve the next
page of results.
Corresponds to the JSON property nextPageToken
1381 1382 1383 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1381 def next_page_token @next_page_token end |
#report_metadata ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportResultsMetadata
The features describing the data. Returned by CloudChannelReportsService.
RunReportJob and CloudChannelReportsService.FetchReportResults.
Corresponds to the JSON property reportMetadata
1387 1388 1389 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1387 def @report_metadata end |
#rows ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Row>
The report's lists of values. Each row follows the settings and ordering of
the columns from report_metadata
.
Corresponds to the JSON property rows
1393 1394 1395 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1393 def rows @rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1400 1401 1402 1403 1404 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1400 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @report_metadata = args[:report_metadata] if args.key?(:report_metadata) @rows = args[:rows] if args.key?(:rows) end |