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, "GCP 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.



2416
2417
2418
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2416

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



2397
2398
2399
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2397

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)


2402
2403
2404
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2402

def description
  @description
end

#display_nameString

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

Returns:

  • (String)


2407
2408
2409
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2407

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)


2414
2415
2416
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2414

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2421
2422
2423
2424
2425
2426
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 2421

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