Class: Google::Apis::AdminReportsV1::UsageReports

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

Defined Under Namespace

Classes: Warning

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) ⇒ UsageReports

Returns a new instance of UsageReports.



660
661
662
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 660

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

Instance Attribute Details

#etagString

ETag of the resource. Corresponds to the JSON property etag

Returns:

  • (String)


635
636
637
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 635

def etag
  @etag
end

#kindString

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

Returns:

  • (String)


641
642
643
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 641

def kind
  @kind
end

#next_page_tokenString

Token to specify next page. A report with multiple pages has a nextPageToken property in the response. For your follow-on requests getting all of the report's pages, enter the nextPageToken value in the pageToken query string. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


648
649
650
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 648

def next_page_token
  @next_page_token
end

#usage_reportsArray<Google::Apis::AdminReportsV1::UsageReport>

Various application parameter records. Corresponds to the JSON property usageReports



653
654
655
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 653

def usage_reports
  @usage_reports
end

#warningsArray<Google::Apis::AdminReportsV1::UsageReports::Warning>

Warnings, if any. Corresponds to the JSON property warnings



658
659
660
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 658

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



665
666
667
668
669
670
671
# File 'generated/google/apis/admin_reports_v1/classes.rb', line 665

def update!(**args)
  @etag = args[:etag] if args.key?(:etag)
  @kind = args[:kind] if args.key?(:kind)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @usage_reports = args[:usage_reports] if args.key?(:usage_reports)
  @warnings = args[:warnings] if args.key?(:warnings)
end