Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportResultsMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ReportResultsMetadata
- 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
The features describing the data. Returned by CloudChannelReportsService. RunReportJob and CloudChannelReportsService.FetchReportResults.
Instance Attribute Summary collapse
-
#date_range ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1DateRange
A representation of usage or invoice date ranges.
-
#preceding_date_range ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1DateRange
A representation of usage or invoice date ranges.
-
#report ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Report
The ID and description of a report that was used to generate report data.
-
#row_count ⇒ Fixnum
The total number of rows of data in the final report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ReportResultsMetadata
constructor
A new instance of GoogleCloudChannelV1ReportResultsMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ReportResultsMetadata
Returns a new instance of GoogleCloudChannelV1ReportResultsMetadata.
2849 2850 2851 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2849 def initialize(**args) update!(**args) end |
Instance Attribute Details
#date_range ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1DateRange
A representation of usage or invoice date ranges.
Corresponds to the JSON property dateRange
2831 2832 2833 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2831 def date_range @date_range end |
#preceding_date_range ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1DateRange
A representation of usage or invoice date ranges.
Corresponds to the JSON property precedingDateRange
2836 2837 2838 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2836 def preceding_date_range @preceding_date_range end |
#report ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1Report
The ID and description of a report that was used to generate report data. For
example, "Google Cloud Daily Spend", "Google Workspace License Activity", etc.
Corresponds to the JSON property report
2842 2843 2844 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2842 def report @report end |
#row_count ⇒ Fixnum
The total number of rows of data in the final report.
Corresponds to the JSON property rowCount
2847 2848 2849 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2847 def row_count @row_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2854 2855 2856 2857 2858 2859 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2854 def update!(**args) @date_range = args[:date_range] if args.key?(:date_range) @preceding_date_range = args[:preceding_date_range] if args.key?(:preceding_date_range) @report = args[:report] if args.key?(:report) @row_count = args[:row_count] if args.key?(:row_count) end |