Class: Google::Apis::PagespeedonlineV1::Result::PageStats

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

Overview

Summary statistics for the page, such as number of JavaScript bytes, number of HTML bytes, etc.

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

Returns a new instance of PageStats.



455
456
457
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 455

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

Instance Attribute Details

#css_response_bytesFixnum

Number of uncompressed response bytes for CSS resources on the page. Corresponds to the JSON property cssResponseBytes

Returns:

  • (Fixnum)


391
392
393
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 391

def css_response_bytes
  @css_response_bytes
end

#flash_response_bytesFixnum

Number of response bytes for flash resources on the page. Corresponds to the JSON property flashResponseBytes

Returns:

  • (Fixnum)


396
397
398
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 396

def flash_response_bytes
  @flash_response_bytes
end

#html_response_bytesFixnum

Number of uncompressed response bytes for the main HTML document and all iframes on the page. Corresponds to the JSON property htmlResponseBytes

Returns:

  • (Fixnum)


402
403
404
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 402

def html_response_bytes
  @html_response_bytes
end

#image_response_bytesFixnum

Number of response bytes for image resources on the page. Corresponds to the JSON property imageResponseBytes

Returns:

  • (Fixnum)


407
408
409
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 407

def image_response_bytes
  @image_response_bytes
end

#javascript_response_bytesFixnum

Number of uncompressed response bytes for JS resources on the page. Corresponds to the JSON property javascriptResponseBytes

Returns:

  • (Fixnum)


412
413
414
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 412

def javascript_response_bytes
  @javascript_response_bytes
end

#number_css_resourcesFixnum

Number of CSS resources referenced by the page. Corresponds to the JSON property numberCssResources

Returns:

  • (Fixnum)


417
418
419
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 417

def number_css_resources
  @number_css_resources
end

#number_hostsFixnum

Number of unique hosts referenced by the page. Corresponds to the JSON property numberHosts

Returns:

  • (Fixnum)


422
423
424
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 422

def number_hosts
  @number_hosts
end

#number_js_resourcesFixnum

Number of JavaScript resources referenced by the page. Corresponds to the JSON property numberJsResources

Returns:

  • (Fixnum)


427
428
429
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 427

def number_js_resources
  @number_js_resources
end

#number_resourcesFixnum

Number of HTTP resources loaded by the page. Corresponds to the JSON property numberResources

Returns:

  • (Fixnum)


432
433
434
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 432

def number_resources
  @number_resources
end

#number_static_resourcesFixnum

Number of static (i.e. cacheable) resources on the page. Corresponds to the JSON property numberStaticResources

Returns:

  • (Fixnum)


437
438
439
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 437

def number_static_resources
  @number_static_resources
end

#other_response_bytesFixnum

Number of response bytes for other resources on the page. Corresponds to the JSON property otherResponseBytes

Returns:

  • (Fixnum)


442
443
444
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 442

def other_response_bytes
  @other_response_bytes
end

#text_response_bytesFixnum

Number of uncompressed response bytes for text resources not covered by other statistics (i.e non-HTML, non-script, non-CSS resources) on the page. Corresponds to the JSON property textResponseBytes

Returns:

  • (Fixnum)


448
449
450
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 448

def text_response_bytes
  @text_response_bytes
end

#total_request_bytesFixnum

Total size of all request bytes sent by the page. Corresponds to the JSON property totalRequestBytes

Returns:

  • (Fixnum)


453
454
455
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 453

def total_request_bytes
  @total_request_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
# File 'generated/google/apis/pagespeedonline_v1/classes.rb', line 460

def update!(**args)
  @css_response_bytes = args[:css_response_bytes] if args.key?(:css_response_bytes)
  @flash_response_bytes = args[:flash_response_bytes] if args.key?(:flash_response_bytes)
  @html_response_bytes = args[:html_response_bytes] if args.key?(:html_response_bytes)
  @image_response_bytes = args[:image_response_bytes] if args.key?(:image_response_bytes)
  @javascript_response_bytes = args[:javascript_response_bytes] if args.key?(:javascript_response_bytes)
  @number_css_resources = args[:number_css_resources] if args.key?(:number_css_resources)
  @number_hosts = args[:number_hosts] if args.key?(:number_hosts)
  @number_js_resources = args[:number_js_resources] if args.key?(:number_js_resources)
  @number_resources = args[:number_resources] if args.key?(:number_resources)
  @number_static_resources = args[:number_static_resources] if args.key?(:number_static_resources)
  @other_response_bytes = args[:other_response_bytes] if args.key?(:other_response_bytes)
  @text_response_bytes = args[:text_response_bytes] if args.key?(:text_response_bytes)
  @total_request_bytes = args[:total_request_bytes] if args.key?(:total_request_bytes)
end