Class: Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult
- Inherits:
-
Object
- Object
- Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/pagespeedonline_v2/classes.rb,
generated/google/apis/pagespeedonline_v2/representations.rb,
generated/google/apis/pagespeedonline_v2/representations.rb
Overview
The enum-like identifier for this rule. For instance "EnableKeepAlive" or " AvoidCssImport". Not localized.
Defined Under Namespace
Classes: UrlBlock
Instance Attribute Summary collapse
-
#groups ⇒ Array<String>
List of rule groups that this rule belongs to.
-
#localized_rule_name ⇒ String
Localized name of the rule, intended for presentation to a user.
-
#rule_impact ⇒ Float
The impact (unbounded floating point value) that implementing the suggestions for this rule would have on making the page faster.
-
#summary ⇒ Google::Apis::PagespeedonlineV2::FormatString
A brief summary description for the rule, indicating at a high level what should be done to follow the rule and what benefit can be gained by doing so.
-
#url_blocks ⇒ Array<Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult::UrlBlock>
List of blocks of URLs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuleResult
constructor
A new instance of RuleResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RuleResult
Returns a new instance of RuleResult.
405 406 407 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 405 def initialize(**args) update!(**args) end |
Instance Attribute Details
#groups ⇒ Array<String>
List of rule groups that this rule belongs to. Each entry in the list is one
of "SPEED" or "USABILITY".
Corresponds to the JSON property groups
375 376 377 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 375 def groups @groups end |
#localized_rule_name ⇒ String
Localized name of the rule, intended for presentation to a user.
Corresponds to the JSON property localizedRuleName
380 381 382 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 380 def localized_rule_name @localized_rule_name end |
#rule_impact ⇒ Float
The impact (unbounded floating point value) that implementing the suggestions
for this rule would have on making the page faster. Impact is comparable
between rules to determine which rule's suggestions would have a higher or
lower impact on making a page faster. For instance, if enabling compression
would save 1MB, while optimizing images would save 500kB, the enable
compression rule would have 2x the impact of the image optimization rule, all
other things being equal.
Corresponds to the JSON property ruleImpact
391 392 393 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 391 def rule_impact @rule_impact end |
#summary ⇒ Google::Apis::PagespeedonlineV2::FormatString
A brief summary description for the rule, indicating at a high level what
should be done to follow the rule and what benefit can be gained by doing so.
Corresponds to the JSON property summary
397 398 399 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 397 def summary @summary end |
#url_blocks ⇒ Array<Google::Apis::PagespeedonlineV2::Result::FormattedResults::RuleResult::UrlBlock>
List of blocks of URLs. Each block may contain a heading and a list of URLs.
Each URL may optionally include additional details.
Corresponds to the JSON property urlBlocks
403 404 405 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 403 def url_blocks @url_blocks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
410 411 412 413 414 415 416 |
# File 'generated/google/apis/pagespeedonline_v2/classes.rb', line 410 def update!(**args) @groups = args[:groups] if args.key?(:groups) @localized_rule_name = args[:localized_rule_name] if args.key?(:localized_rule_name) @rule_impact = args[:rule_impact] if args.key?(:rule_impact) @summary = args[:summary] if args.key?(:summary) @url_blocks = args[:url_blocks] if args.key?(:url_blocks) end |