Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1ReportResultsMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1alpha1ReportResultsMetadata

Returns a new instance of GoogleCloudChannelV1alpha1ReportResultsMetadata.



3943
3944
3945
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3943

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#date_rangeGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1DateRange

A representation of usage or invoice date ranges. Corresponds to the JSON property dateRange



3925
3926
3927
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3925

def date_range
  @date_range
end

#preceding_date_rangeGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1DateRange

A representation of usage or invoice date ranges. Corresponds to the JSON property precedingDateRange



3930
3931
3932
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3930

def preceding_date_range
  @preceding_date_range
end

#reportGoogle::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Report

The ID and description of a report that was used to generate report data. For example, "GCP Daily Spend", "Google Workspace License Activity", etc. Corresponds to the JSON property report



3936
3937
3938
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3936

def report
  @report
end

#row_countFixnum

The total number of rows of data in the final report. Corresponds to the JSON property rowCount

Returns:

  • (Fixnum)


3941
3942
3943
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3941

def row_count
  @row_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3948
3949
3950
3951
3952
3953
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3948

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