Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1Report

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 ID and description of a report that was used to generate report data. For example, "Google Cloud Daily Spend", "Google Workspace License Activity", etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudChannelV1Report

Returns a new instance of GoogleCloudChannelV1Report.



2782
2783
2784
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2782

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

Instance Attribute Details

#columnsArray<Google::Apis::CloudchannelV1::GoogleCloudChannelV1Column>

The list of columns included in the report. This defines the schema of the report results. Corresponds to the JSON property columns



2763
2764
2765
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2763

def columns
  @columns
end

#descriptionString

A description of other aspects of the report, such as the products it supports. Corresponds to the JSON property description

Returns:

  • (String)


2768
2769
2770
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2768

def description
  @description
end

#display_nameString

A human-readable name for this report. Corresponds to the JSON property displayName

Returns:

  • (String)


2773
2774
2775
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2773

def display_name
  @display_name
end

#nameString

Required. The report's resource name. Specifies the account and report used to generate report data. The report_id identifier is a UID (for example, 613bf59q). Name uses the format: accounts/account_id/reports/report_id Corresponds to the JSON property name

Returns:

  • (String)


2780
2781
2782
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2780

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2787
2788
2789
2790
2791
2792
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2787

def update!(**args)
  @columns = args[:columns] if args.key?(:columns)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
end