google-apis-pagespeedonline_v5 0.4.0 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c750be65105167d2783fa8246bdbfb39c46a3328c4c45a819924b50ed8593cb6
4
- data.tar.gz: 267ef91d1506eb3771d5a357532c205a89344c1acc4e51ca7971c360521f2cc8
3
+ metadata.gz: e148e5fc3cb726430da8ec4a79d06fcf5a4bc4868abb518ca7674ff8685bf948
4
+ data.tar.gz: 9f86acff46d54b293efac29cb696580db296fa0b895f93dc5bb4305be4d056a9
5
5
  SHA512:
6
- metadata.gz: f05085772ccc6cce4f8053696f6813bd8b9e0ed550c4d753c61aa2f08b4bd09a3e7de508419f424d0742b1b1e4bb62e7f478d89963f39b7da03ff6f94797f121
7
- data.tar.gz: 7a84bf10d1d1e7abc6c1f4175f12e7d112ee07baea8c63dfef7ed6b1c5c5495cef2500adad14fb0e477da8041be9ac20ba86137a03ff6447cb51ca0830bce2c6
6
+ metadata.gz: 9b77e99b3a01882c7af8ea14fb4e6218a501420faf19c1f47c6f2106762524b1d8e27d33456273cc76751650272d3f780a9aad11354ffa3e95b40c78235924f0
7
+ data.tar.gz: 27ce3937f4bef79b243db38e21cda6ee5273dd2e6ebefab1dc2d92397e28280e04a7e351a74460eb852f23775f7f4e471861f94fdbaa292a5182f0dae49d1294
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-pagespeedonline_v5
2
2
 
3
+ ### v0.5.0 (2021-06-05)
4
+
5
+ * Regenerated from discovery document revision 20210603
6
+ * Regenerated using generator version 0.3.0
7
+
3
8
  ### v0.4.0 (2021-05-19)
4
9
 
5
10
  * Regenerated using generator version 0.2.0
@@ -27,6 +27,11 @@ module Google
27
27
  class AuditRefs
28
28
  include Google::Apis::Core::Hashable
29
29
 
30
+ # The conventional acronym for the audit/metric.
31
+ # Corresponds to the JSON property `acronym`
32
+ # @return [String]
33
+ attr_accessor :acronym
34
+
30
35
  # The category group that the audit belongs to (optional).
31
36
  # Corresponds to the JSON property `group`
32
37
  # @return [String]
@@ -37,6 +42,11 @@ module Google
37
42
  # @return [String]
38
43
  attr_accessor :id
39
44
 
45
+ # Any audit IDs closely relevant to this one.
46
+ # Corresponds to the JSON property `relevantAudits`
47
+ # @return [Array<String>]
48
+ attr_accessor :relevant_audits
49
+
40
50
  # The weight this audit's score has on the overall category score.
41
51
  # Corresponds to the JSON property `weight`
42
52
  # @return [Float]
@@ -48,8 +58,10 @@ module Google
48
58
 
49
59
  # Update properties of this object
50
60
  def update!(**args)
61
+ @acronym = args[:acronym] if args.key?(:acronym)
51
62
  @group = args[:group] if args.key?(:group)
52
63
  @id = args[:id] if args.key?(:id)
64
+ @relevant_audits = args[:relevant_audits] if args.key?(:relevant_audits)
53
65
  @weight = args[:weight] if args.key?(:weight)
54
66
  end
55
67
  end
@@ -283,6 +295,12 @@ module Google
283
295
  # @return [String]
284
296
  attr_accessor :id
285
297
 
298
+ # The unit of the numeric_value field. Used to format the numeric value for
299
+ # display.
300
+ # Corresponds to the JSON property `numericUnit`
301
+ # @return [String]
302
+ attr_accessor :numeric_unit
303
+
286
304
  # A numeric value that has a meaning specific to the audit, e.g. the number of
287
305
  # nodes in the DOM or the timestamp of a specific load event. More information
288
306
  # can be found in the audit details, if present.
@@ -322,6 +340,7 @@ module Google
322
340
  @error_message = args[:error_message] if args.key?(:error_message)
323
341
  @explanation = args[:explanation] if args.key?(:explanation)
324
342
  @id = args[:id] if args.key?(:id)
343
+ @numeric_unit = args[:numeric_unit] if args.key?(:numeric_unit)
325
344
  @numeric_value = args[:numeric_value] if args.key?(:numeric_value)
326
345
  @score = args[:score] if args.key?(:score)
327
346
  @score_display_mode = args[:score_display_mode] if args.key?(:score_display_mode)
@@ -623,6 +642,13 @@ module Google
623
642
  # @return [String]
624
643
  attr_accessor :audit_group_expand_tooltip
625
644
 
645
+ # Text link pointing to the Lighthouse scoring calculator. This link immediately
646
+ # follows a sentence stating the performance score is calculated from the perf
647
+ # metrics.
648
+ # Corresponds to the JSON property `calculatorLink`
649
+ # @return [String]
650
+ attr_accessor :calculator_link
651
+
626
652
  # The label for the initial request in a critical request chain.
627
653
  # Corresponds to the JSON property `crcInitialNavigation`
628
654
  # @return [String]
@@ -633,6 +659,52 @@ module Google
633
659
  # @return [String]
634
660
  attr_accessor :crc_longest_duration_label
635
661
 
662
+ # Option in a dropdown menu that copies the Lighthouse JSON object to the system
663
+ # clipboard.
664
+ # Corresponds to the JSON property `dropdownCopyJSON`
665
+ # @return [String]
666
+ attr_accessor :dropdown_copy_json
667
+
668
+ # Option in a dropdown menu that toggles the themeing of the report between
669
+ # Light(default) and Dark themes.
670
+ # Corresponds to the JSON property `dropdownDarkTheme`
671
+ # @return [String]
672
+ attr_accessor :dropdown_dark_theme
673
+
674
+ # Option in a dropdown menu that opens a full Lighthouse report in a print
675
+ # dialog.
676
+ # Corresponds to the JSON property `dropdownPrintExpanded`
677
+ # @return [String]
678
+ attr_accessor :dropdown_print_expanded
679
+
680
+ # Option in a dropdown menu that opens a small, summary report in a print dialog.
681
+ # Corresponds to the JSON property `dropdownPrintSummary`
682
+ # @return [String]
683
+ attr_accessor :dropdown_print_summary
684
+
685
+ # Option in a dropdown menu that saves the current report as a new GitHub Gist.
686
+ # Corresponds to the JSON property `dropdownSaveGist`
687
+ # @return [String]
688
+ attr_accessor :dropdown_save_gist
689
+
690
+ # Option in a dropdown menu that saves the Lighthouse report HTML locally to the
691
+ # system as a '.html' file.
692
+ # Corresponds to the JSON property `dropdownSaveHTML`
693
+ # @return [String]
694
+ attr_accessor :dropdown_save_html
695
+
696
+ # Option in a dropdown menu that saves the Lighthouse JSON object to the local
697
+ # system as a '.json' file.
698
+ # Corresponds to the JSON property `dropdownSaveJSON`
699
+ # @return [String]
700
+ attr_accessor :dropdown_save_json
701
+
702
+ # Option in a dropdown menu that opens the current report in the Lighthouse
703
+ # Viewer Application.
704
+ # Corresponds to the JSON property `dropdownViewer`
705
+ # @return [String]
706
+ attr_accessor :dropdown_viewer
707
+
636
708
  # The label shown next to an audit or metric that has had an error.
637
709
  # Corresponds to the JSON property `errorLabel`
638
710
  # @return [String]
@@ -643,12 +715,17 @@ module Google
643
715
  # @return [String]
644
716
  attr_accessor :error_missing_audit_info
645
717
 
718
+ # Label for button to create an issue against the Lighthouse GitHub project.
719
+ # Corresponds to the JSON property `footerIssue`
720
+ # @return [String]
721
+ attr_accessor :footer_issue
722
+
646
723
  # The title of the lab data performance category.
647
724
  # Corresponds to the JSON property `labDataTitle`
648
725
  # @return [String]
649
726
  attr_accessor :lab_data_title
650
727
 
651
- # The disclaimer shown under performance explaning that the network can vary.
728
+ # The disclaimer shown under performance explaining that the network can vary.
652
729
  # Corresponds to the JSON property `lsPerformanceCategoryDescription`
653
730
  # @return [String]
654
731
  attr_accessor :ls_performance_category_description
@@ -678,11 +755,129 @@ module Google
678
755
  # @return [String]
679
756
  attr_accessor :passed_audits_group_title
680
757
 
758
+ # Descriptive explanation for emulation setting when emulating a generic desktop
759
+ # form factor, as opposed to a mobile-device like form factor.
760
+ # Corresponds to the JSON property `runtimeDesktopEmulation`
761
+ # @return [String]
762
+ attr_accessor :runtime_desktop_emulation
763
+
764
+ # Descriptive explanation for emulation setting when emulating a Nexus 5X mobile
765
+ # device.
766
+ # Corresponds to the JSON property `runtimeMobileEmulation`
767
+ # @return [String]
768
+ attr_accessor :runtime_mobile_emulation
769
+
770
+ # Descriptive explanation for emulation setting when no device emulation is set.
771
+ # Corresponds to the JSON property `runtimeNoEmulation`
772
+ # @return [String]
773
+ attr_accessor :runtime_no_emulation
774
+
775
+ # Label for a row in a table that shows the version of the Axe library used
776
+ # Corresponds to the JSON property `runtimeSettingsAxeVersion`
777
+ # @return [String]
778
+ attr_accessor :runtime_settings_axe_version
779
+
780
+ # Label for a row in a table that shows the estimated CPU power of the machine
781
+ # running Lighthouse. Example row values: 532, 1492, 783.
782
+ # Corresponds to the JSON property `runtimeSettingsBenchmark`
783
+ # @return [String]
784
+ attr_accessor :runtime_settings_benchmark
785
+
786
+ # Label for a row in a table that describes the CPU throttling conditions that
787
+ # were used during a Lighthouse run, if any.
788
+ # Corresponds to the JSON property `runtimeSettingsCPUThrottling`
789
+ # @return [String]
790
+ attr_accessor :runtime_settings_cpu_throttling
791
+
792
+ # Label for a row in a table that shows in what tool Lighthouse is being run (e.
793
+ # g. The lighthouse CLI, Chrome DevTools, Lightrider, WebPageTest, etc).
794
+ # Corresponds to the JSON property `runtimeSettingsChannel`
795
+ # @return [String]
796
+ attr_accessor :runtime_settings_channel
797
+
798
+ # Label for a row in a table that describes the kind of device that was emulated
799
+ # for the Lighthouse run. Example values for row elements: 'No Emulation', '
800
+ # Emulated Desktop', etc.
801
+ # Corresponds to the JSON property `runtimeSettingsDevice`
802
+ # @return [String]
803
+ attr_accessor :runtime_settings_device
804
+
805
+ # Label for a row in a table that shows the time at which a Lighthouse run was
806
+ # conducted; formatted as a timestamp, e.g. Jan 1, 1970 12:00 AM UTC.
807
+ # Corresponds to the JSON property `runtimeSettingsFetchTime`
808
+ # @return [String]
809
+ attr_accessor :runtime_settings_fetch_time
810
+
811
+ # Label for a row in a table that describes the network throttling conditions
812
+ # that were used during a Lighthouse run, if any.
813
+ # Corresponds to the JSON property `runtimeSettingsNetworkThrottling`
814
+ # @return [String]
815
+ attr_accessor :runtime_settings_network_throttling
816
+
817
+ # Title of the Runtime settings table in a Lighthouse report. Runtime settings
818
+ # are the environment configurations that a specific report used at auditing
819
+ # time.
820
+ # Corresponds to the JSON property `runtimeSettingsTitle`
821
+ # @return [String]
822
+ attr_accessor :runtime_settings_title
823
+
824
+ # Label for a row in a table that shows the User Agent that was detected on the
825
+ # Host machine that ran Lighthouse.
826
+ # Corresponds to the JSON property `runtimeSettingsUA`
827
+ # @return [String]
828
+ attr_accessor :runtime_settings_ua
829
+
830
+ # Label for a row in a table that shows the User Agent that was used to send out
831
+ # all network requests during the Lighthouse run.
832
+ # Corresponds to the JSON property `runtimeSettingsUANetwork`
833
+ # @return [String]
834
+ attr_accessor :runtime_settings_ua_network
835
+
836
+ # Label for a row in a table that shows the URL that was audited during a
837
+ # Lighthouse run.
838
+ # Corresponds to the JSON property `runtimeSettingsUrl`
839
+ # @return [String]
840
+ attr_accessor :runtime_settings_url
841
+
842
+ # Descriptive explanation for a runtime setting that is set to an unknown value.
843
+ # Corresponds to the JSON property `runtimeUnknown`
844
+ # @return [String]
845
+ attr_accessor :runtime_unknown
846
+
681
847
  # The label that explains the score gauges scale (0-49, 50-89, 90-100).
682
848
  # Corresponds to the JSON property `scorescaleLabel`
683
849
  # @return [String]
684
850
  attr_accessor :scorescale_label
685
851
 
852
+ # Label preceding a radio control for filtering the list of audits. The radio
853
+ # choices are various performance metrics (FCP, LCP, TBT), and if chosen, the
854
+ # audits in the report are hidden if they are not relevant to the selected
855
+ # metric.
856
+ # Corresponds to the JSON property `showRelevantAudits`
857
+ # @return [String]
858
+ attr_accessor :show_relevant_audits
859
+
860
+ # The label for the button to show only a few lines of a snippet
861
+ # Corresponds to the JSON property `snippetCollapseButtonLabel`
862
+ # @return [String]
863
+ attr_accessor :snippet_collapse_button_label
864
+
865
+ # The label for the button to show all lines of a snippet
866
+ # Corresponds to the JSON property `snippetExpandButtonLabel`
867
+ # @return [String]
868
+ attr_accessor :snippet_expand_button_label
869
+
870
+ # This label is for a filter checkbox above a table of items
871
+ # Corresponds to the JSON property `thirdPartyResourcesLabel`
872
+ # @return [String]
873
+ attr_accessor :third_party_resources_label
874
+
875
+ # Descriptive explanation for environment throttling that was provided by the
876
+ # runtime environment instead of provided by Lighthouse throttling.
877
+ # Corresponds to the JSON property `throttlingProvided`
878
+ # @return [String]
879
+ attr_accessor :throttling_provided
880
+
686
881
  # The label shown preceding important warnings that may have invalidated an
687
882
  # entire report.
688
883
  # Corresponds to the JSON property `toplevelWarningsMessage`
@@ -694,6 +889,16 @@ module Google
694
889
  # @return [String]
695
890
  attr_accessor :variance_disclaimer
696
891
 
892
+ # Label for a button that opens the Treemap App
893
+ # Corresponds to the JSON property `viewTreemapLabel`
894
+ # @return [String]
895
+ attr_accessor :view_treemap_label
896
+
897
+ # The heading that is shown above a list of audits that have warnings
898
+ # Corresponds to the JSON property `warningAuditsGroupTitle`
899
+ # @return [String]
900
+ attr_accessor :warning_audits_group_title
901
+
697
902
  # The label shown above a bulleted list of warnings.
698
903
  # Corresponds to the JSON property `warningHeader`
699
904
  # @return [String]
@@ -706,10 +911,20 @@ module Google
706
911
  # Update properties of this object
707
912
  def update!(**args)
708
913
  @audit_group_expand_tooltip = args[:audit_group_expand_tooltip] if args.key?(:audit_group_expand_tooltip)
914
+ @calculator_link = args[:calculator_link] if args.key?(:calculator_link)
709
915
  @crc_initial_navigation = args[:crc_initial_navigation] if args.key?(:crc_initial_navigation)
710
916
  @crc_longest_duration_label = args[:crc_longest_duration_label] if args.key?(:crc_longest_duration_label)
917
+ @dropdown_copy_json = args[:dropdown_copy_json] if args.key?(:dropdown_copy_json)
918
+ @dropdown_dark_theme = args[:dropdown_dark_theme] if args.key?(:dropdown_dark_theme)
919
+ @dropdown_print_expanded = args[:dropdown_print_expanded] if args.key?(:dropdown_print_expanded)
920
+ @dropdown_print_summary = args[:dropdown_print_summary] if args.key?(:dropdown_print_summary)
921
+ @dropdown_save_gist = args[:dropdown_save_gist] if args.key?(:dropdown_save_gist)
922
+ @dropdown_save_html = args[:dropdown_save_html] if args.key?(:dropdown_save_html)
923
+ @dropdown_save_json = args[:dropdown_save_json] if args.key?(:dropdown_save_json)
924
+ @dropdown_viewer = args[:dropdown_viewer] if args.key?(:dropdown_viewer)
711
925
  @error_label = args[:error_label] if args.key?(:error_label)
712
926
  @error_missing_audit_info = args[:error_missing_audit_info] if args.key?(:error_missing_audit_info)
927
+ @footer_issue = args[:footer_issue] if args.key?(:footer_issue)
713
928
  @lab_data_title = args[:lab_data_title] if args.key?(:lab_data_title)
714
929
  @ls_performance_category_description = args[:ls_performance_category_description] if args.key?(:ls_performance_category_description)
715
930
  @manual_audits_group_title = args[:manual_audits_group_title] if args.key?(:manual_audits_group_title)
@@ -717,9 +932,31 @@ module Google
717
932
  @opportunity_resource_column_label = args[:opportunity_resource_column_label] if args.key?(:opportunity_resource_column_label)
718
933
  @opportunity_savings_column_label = args[:opportunity_savings_column_label] if args.key?(:opportunity_savings_column_label)
719
934
  @passed_audits_group_title = args[:passed_audits_group_title] if args.key?(:passed_audits_group_title)
935
+ @runtime_desktop_emulation = args[:runtime_desktop_emulation] if args.key?(:runtime_desktop_emulation)
936
+ @runtime_mobile_emulation = args[:runtime_mobile_emulation] if args.key?(:runtime_mobile_emulation)
937
+ @runtime_no_emulation = args[:runtime_no_emulation] if args.key?(:runtime_no_emulation)
938
+ @runtime_settings_axe_version = args[:runtime_settings_axe_version] if args.key?(:runtime_settings_axe_version)
939
+ @runtime_settings_benchmark = args[:runtime_settings_benchmark] if args.key?(:runtime_settings_benchmark)
940
+ @runtime_settings_cpu_throttling = args[:runtime_settings_cpu_throttling] if args.key?(:runtime_settings_cpu_throttling)
941
+ @runtime_settings_channel = args[:runtime_settings_channel] if args.key?(:runtime_settings_channel)
942
+ @runtime_settings_device = args[:runtime_settings_device] if args.key?(:runtime_settings_device)
943
+ @runtime_settings_fetch_time = args[:runtime_settings_fetch_time] if args.key?(:runtime_settings_fetch_time)
944
+ @runtime_settings_network_throttling = args[:runtime_settings_network_throttling] if args.key?(:runtime_settings_network_throttling)
945
+ @runtime_settings_title = args[:runtime_settings_title] if args.key?(:runtime_settings_title)
946
+ @runtime_settings_ua = args[:runtime_settings_ua] if args.key?(:runtime_settings_ua)
947
+ @runtime_settings_ua_network = args[:runtime_settings_ua_network] if args.key?(:runtime_settings_ua_network)
948
+ @runtime_settings_url = args[:runtime_settings_url] if args.key?(:runtime_settings_url)
949
+ @runtime_unknown = args[:runtime_unknown] if args.key?(:runtime_unknown)
720
950
  @scorescale_label = args[:scorescale_label] if args.key?(:scorescale_label)
951
+ @show_relevant_audits = args[:show_relevant_audits] if args.key?(:show_relevant_audits)
952
+ @snippet_collapse_button_label = args[:snippet_collapse_button_label] if args.key?(:snippet_collapse_button_label)
953
+ @snippet_expand_button_label = args[:snippet_expand_button_label] if args.key?(:snippet_expand_button_label)
954
+ @third_party_resources_label = args[:third_party_resources_label] if args.key?(:third_party_resources_label)
955
+ @throttling_provided = args[:throttling_provided] if args.key?(:throttling_provided)
721
956
  @toplevel_warnings_message = args[:toplevel_warnings_message] if args.key?(:toplevel_warnings_message)
722
957
  @variance_disclaimer = args[:variance_disclaimer] if args.key?(:variance_disclaimer)
958
+ @view_treemap_label = args[:view_treemap_label] if args.key?(:view_treemap_label)
959
+ @warning_audits_group_title = args[:warning_audits_group_title] if args.key?(:warning_audits_group_title)
723
960
  @warning_header = args[:warning_header] if args.key?(:warning_header)
724
961
  end
725
962
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module PagespeedonlineV5
18
18
  # Version of the google-apis-pagespeedonline_v5 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210119"
25
+ REVISION = "20210603"
26
26
  end
27
27
  end
28
28
  end
@@ -133,8 +133,10 @@ module Google
133
133
  class AuditRefs
134
134
  # @private
135
135
  class Representation < Google::Apis::Core::JsonRepresentation
136
+ property :acronym, as: 'acronym'
136
137
  property :group, as: 'group'
137
138
  property :id, as: 'id'
139
+ collection :relevant_audits, as: 'relevantAudits'
138
140
  property :weight, as: 'weight'
139
141
  end
140
142
  end
@@ -209,6 +211,7 @@ module Google
209
211
  property :error_message, as: 'errorMessage'
210
212
  property :explanation, as: 'explanation'
211
213
  property :id, as: 'id'
214
+ property :numeric_unit, as: 'numericUnit'
212
215
  property :numeric_value, as: 'numericValue'
213
216
  property :score, as: 'score'
214
217
  property :score_display_mode, as: 'scoreDisplayMode'
@@ -302,10 +305,20 @@ module Google
302
305
  # @private
303
306
  class Representation < Google::Apis::Core::JsonRepresentation
304
307
  property :audit_group_expand_tooltip, as: 'auditGroupExpandTooltip'
308
+ property :calculator_link, as: 'calculatorLink'
305
309
  property :crc_initial_navigation, as: 'crcInitialNavigation'
306
310
  property :crc_longest_duration_label, as: 'crcLongestDurationLabel'
311
+ property :dropdown_copy_json, as: 'dropdownCopyJSON'
312
+ property :dropdown_dark_theme, as: 'dropdownDarkTheme'
313
+ property :dropdown_print_expanded, as: 'dropdownPrintExpanded'
314
+ property :dropdown_print_summary, as: 'dropdownPrintSummary'
315
+ property :dropdown_save_gist, as: 'dropdownSaveGist'
316
+ property :dropdown_save_html, as: 'dropdownSaveHTML'
317
+ property :dropdown_save_json, as: 'dropdownSaveJSON'
318
+ property :dropdown_viewer, as: 'dropdownViewer'
307
319
  property :error_label, as: 'errorLabel'
308
320
  property :error_missing_audit_info, as: 'errorMissingAuditInfo'
321
+ property :footer_issue, as: 'footerIssue'
309
322
  property :lab_data_title, as: 'labDataTitle'
310
323
  property :ls_performance_category_description, as: 'lsPerformanceCategoryDescription'
311
324
  property :manual_audits_group_title, as: 'manualAuditsGroupTitle'
@@ -313,9 +326,31 @@ module Google
313
326
  property :opportunity_resource_column_label, as: 'opportunityResourceColumnLabel'
314
327
  property :opportunity_savings_column_label, as: 'opportunitySavingsColumnLabel'
315
328
  property :passed_audits_group_title, as: 'passedAuditsGroupTitle'
329
+ property :runtime_desktop_emulation, as: 'runtimeDesktopEmulation'
330
+ property :runtime_mobile_emulation, as: 'runtimeMobileEmulation'
331
+ property :runtime_no_emulation, as: 'runtimeNoEmulation'
332
+ property :runtime_settings_axe_version, as: 'runtimeSettingsAxeVersion'
333
+ property :runtime_settings_benchmark, as: 'runtimeSettingsBenchmark'
334
+ property :runtime_settings_cpu_throttling, as: 'runtimeSettingsCPUThrottling'
335
+ property :runtime_settings_channel, as: 'runtimeSettingsChannel'
336
+ property :runtime_settings_device, as: 'runtimeSettingsDevice'
337
+ property :runtime_settings_fetch_time, as: 'runtimeSettingsFetchTime'
338
+ property :runtime_settings_network_throttling, as: 'runtimeSettingsNetworkThrottling'
339
+ property :runtime_settings_title, as: 'runtimeSettingsTitle'
340
+ property :runtime_settings_ua, as: 'runtimeSettingsUA'
341
+ property :runtime_settings_ua_network, as: 'runtimeSettingsUANetwork'
342
+ property :runtime_settings_url, as: 'runtimeSettingsUrl'
343
+ property :runtime_unknown, as: 'runtimeUnknown'
316
344
  property :scorescale_label, as: 'scorescaleLabel'
345
+ property :show_relevant_audits, as: 'showRelevantAudits'
346
+ property :snippet_collapse_button_label, as: 'snippetCollapseButtonLabel'
347
+ property :snippet_expand_button_label, as: 'snippetExpandButtonLabel'
348
+ property :third_party_resources_label, as: 'thirdPartyResourcesLabel'
349
+ property :throttling_provided, as: 'throttlingProvided'
317
350
  property :toplevel_warnings_message, as: 'toplevelWarningsMessage'
318
351
  property :variance_disclaimer, as: 'varianceDisclaimer'
352
+ property :view_treemap_label, as: 'viewTreemapLabel'
353
+ property :warning_audits_group_title, as: 'warningAuditsGroupTitle'
319
354
  property :warning_header, as: 'warningHeader'
320
355
  end
321
356
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-pagespeedonline_v5
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-24 00:00:00.000000000 Z
11
+ date: 2021-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-pagespeedonline_v5/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-pagespeedonline_v5/v0.4.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-pagespeedonline_v5/v0.5.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-pagespeedonline_v5
57
57
  post_install_message:
58
58
  rdoc_options: []