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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_reports_v1/classes.rb,
generated/google/apis/admin_reports_v1/representations.rb,
generated/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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UsageReport

Returns a new instance of UsageReport.



379
380
381
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 379

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

Instance Attribute Details

#dateString

The date to which the record belongs. Corresponds to the JSON property date

Returns:

  • (String)


357
358
359
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 357

def date
  @date
end

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

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



362
363
364
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 362

def entity
  @entity
end

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


367
368
369
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 367

def etag
  @etag
end

#kindString

The kind of object. Corresponds to the JSON property kind

Returns:

  • (String)


372
373
374
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 372

def kind
  @kind
end

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

Parameter value pairs for various applications. Corresponds to the JSON property parameters



377
378
379
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 377

def parameters
  @parameters
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



384
385
386
387
388
389
390
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 384

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