Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Report
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Report
- 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
-
#columns ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Column>
The list of columns included in the report.
-
#description ⇒ String
A description of other aspects of the report, such as the products it supports.
-
#display_name ⇒ String
A human-readable name for this report.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1Report
constructor
A new instance of GoogleCloudChannelV1alpha1Report.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1alpha1Report
Returns a new instance of GoogleCloudChannelV1alpha1Report.
3877 3878 3879 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3877 def initialize(**args) update!(**args) end |
Instance Attribute Details
#columns ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1Column>
The list of columns included in the report. This defines the schema of the
report results.
Corresponds to the JSON property columns
3858 3859 3860 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3858 def columns @columns end |
#description ⇒ String
A description of other aspects of the report, such as the products it supports.
Corresponds to the JSON property description
3863 3864 3865 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3863 def description @description end |
#display_name ⇒ String
A human-readable name for this report.
Corresponds to the JSON property displayName
3868 3869 3870 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3868 def display_name @display_name end |
#name ⇒ String
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
3875 3876 3877 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3875 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3882 3883 3884 3885 3886 3887 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3882 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 |