Class: Google::Apis::AdminReportsV1::UsageReport

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/admin_reports_v1/classes.rb,
lib/google/apis/admin_reports_v1/representations.rb,
lib/google/apis/admin_reports_v1/representations.rb

Overview

JSON template for a usage report.

Defined Under Namespace

Classes: Entity, Parameter

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UsageReport

Returns a new instance of UsageReport.



522
523
524
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 522

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

Instance Attribute Details

#dateString

Output only. The date of the report request. Corresponds to the JSON property date

Returns:

  • (String)


497
498
499
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 497

def date
  @date
end

#entityGoogle::Apis::AdminReportsV1::UsageReport::Entity

Output only. Information about the type of the item. Corresponds to the JSON property entity



502
503
504
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 502

def entity
  @entity
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


507
508
509
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 507

def etag
  @etag
end

#kindString

The type of API resource. For a usage report, the value is admin#reports# usageReport. Corresponds to the JSON property kind

Returns:

  • (String)


513
514
515
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 513

def kind
  @kind
end

#parametersArray<Google::Apis::AdminReportsV1::UsageReport::Parameter>

Output only. Parameter value pairs for various applications. For the Entity Usage Report parameters and values, see the Entity Usage parameters reference. Corresponds to the JSON property parameters



520
521
522
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 520

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



527
528
529
530
531
532
533
# File 'lib/google/apis/admin_reports_v1/classes.rb', line 527

def update!(**args)
  @date = args[:date] if args.key?(:date)
  @entity = args[:entity] if args.key?(:entity)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @parameters = args[:parameters] if args.key?(:parameters)
end