google-apis-searchconsole_v1 0.20.0 → 0.21.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f83d04558e6055665ee2970d5afeece94335e5da585f1413685b7ae225c493d1
4
- data.tar.gz: 337be13816412208cea7ee6b77d0f31a76e53ae7bab1f1ec1bfee0ac3dcd5b9a
3
+ metadata.gz: a4dd7a8288edbda3fc9197c0fb6c50f9181e8420acc63d8ee74350888bee7c19
4
+ data.tar.gz: 114676a365182cedc882d8897f4c89386d7563208ee4146251ff83b645e8666a
5
5
  SHA512:
6
- metadata.gz: 927707ee8f1afc9f63f77a1ac32a52277509953ffd35eb907d48b2c9bcb70583adab104a17f57dcaadaa1a522159b97e3e1fb27d61ae3d4112799c934196b2f7
7
- data.tar.gz: 07a0ba3c8d03a5329cb891279f8526f600ae096232b4319d3eb13e008755e9015d03daafb1fe114a133bc37eb86063fa27f7c4d967b04540a70f469e06074de7
6
+ metadata.gz: 7ef305c97b534d5d6baff61be47b5e5d56c5e5f33c810056b187317a83d308a52370f08aef2d8b4d3f5586e7de7a5fe3e667e13d9a9a8821df5ec812a7878855
7
+ data.tar.gz: de3ba84917cf9cf8b121b43d863f934dc4b59f40d37816e4356c65ad727a896d668cdc9b8001cfd5b0724a4ed1f96d560da72c4507c195f6bc274288007f81e0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-searchconsole_v1
2
2
 
3
+ ### v0.21.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250714
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.20.0 (2025-05-04)
4
9
 
5
10
  * Regenerated from discovery document revision 20250409
@@ -462,6 +462,48 @@ module Google
462
462
  end
463
463
  end
464
464
 
465
+ # An object that may be returned with your query results, providing context
466
+ # about the state of the data. When you request recent data (using `all` or `
467
+ # hourly_all` for `dataState`), some of the rows returned may represent data
468
+ # that is incomplete, which means that the data is still being collected and
469
+ # processed. This metadata object helps you identify exactly when this starts
470
+ # and ends. All dates and times provided in this object are in the `America/
471
+ # Los_Angeles` time zone. The specific field returned within this object depends
472
+ # on how you've grouped your data in the request. See details in inner fields.
473
+ class Metadata
474
+ include Google::Apis::Core::Hashable
475
+
476
+ # The first date for which the data is still being collected and processed,
477
+ # presented in `YYYY-MM-DD` format (ISO-8601 extended local date format). This
478
+ # field is populated only when the request's `dataState` is "`all`", data is
479
+ # grouped by "`DATE`", and the requested date range contains incomplete data
480
+ # points. All values after the `first_incomplete_date` may still change
481
+ # noticeably.
482
+ # Corresponds to the JSON property `firstIncompleteDate`
483
+ # @return [String]
484
+ attr_accessor :first_incomplete_date
485
+
486
+ # The first hour for which the data is still being collected and processed,
487
+ # presented in `YYYY-MM-DDThh:mm:ss[+|-]hh:mm` format (ISO-8601 extended offset
488
+ # date-time format). This field is populated only when the request's `dataState`
489
+ # is "`hourly_all`", data is grouped by "`HOUR`" and the requested date range
490
+ # contains incomplete data points. All values after the `first_incomplete_hour`
491
+ # may still change noticeably.
492
+ # Corresponds to the JSON property `firstIncompleteHour`
493
+ # @return [String]
494
+ attr_accessor :first_incomplete_hour
495
+
496
+ def initialize(**args)
497
+ update!(**args)
498
+ end
499
+
500
+ # Update properties of this object
501
+ def update!(**args)
502
+ @first_incomplete_date = args[:first_incomplete_date] if args.key?(:first_incomplete_date)
503
+ @first_incomplete_hour = args[:first_incomplete_hour] if args.key?(:first_incomplete_hour)
504
+ end
505
+ end
506
+
465
507
  # Mobile-friendly issue.
466
508
  class MobileFriendlyIssue
467
509
  include Google::Apis::Core::Hashable
@@ -781,6 +823,18 @@ module Google
781
823
  class SearchAnalyticsQueryResponse
782
824
  include Google::Apis::Core::Hashable
783
825
 
826
+ # An object that may be returned with your query results, providing context
827
+ # about the state of the data. When you request recent data (using `all` or `
828
+ # hourly_all` for `dataState`), some of the rows returned may represent data
829
+ # that is incomplete, which means that the data is still being collected and
830
+ # processed. This metadata object helps you identify exactly when this starts
831
+ # and ends. All dates and times provided in this object are in the `America/
832
+ # Los_Angeles` time zone. The specific field returned within this object depends
833
+ # on how you've grouped your data in the request. See details in inner fields.
834
+ # Corresponds to the JSON property `metadata`
835
+ # @return [Google::Apis::SearchconsoleV1::Metadata]
836
+ attr_accessor :metadata
837
+
784
838
  # How the results were aggregated.
785
839
  # Corresponds to the JSON property `responseAggregationType`
786
840
  # @return [String]
@@ -797,6 +851,7 @@ module Google
797
851
 
798
852
  # Update properties of this object
799
853
  def update!(**args)
854
+ @metadata = args[:metadata] if args.key?(:metadata)
800
855
  @response_aggregation_type = args[:response_aggregation_type] if args.key?(:response_aggregation_type)
801
856
  @rows = args[:rows] if args.key?(:rows)
802
857
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SearchconsoleV1
18
18
  # Version of the google-apis-searchconsole_v1 gem
19
- GEM_VERSION = "0.20.0"
19
+ GEM_VERSION = "0.21.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250409"
25
+ REVISION = "20250714"
26
26
  end
27
27
  end
28
28
  end
@@ -94,6 +94,12 @@ module Google
94
94
  include Google::Apis::Core::JsonObjectSupport
95
95
  end
96
96
 
97
+ class Metadata
98
+ class Representation < Google::Apis::Core::JsonRepresentation; end
99
+
100
+ include Google::Apis::Core::JsonObjectSupport
101
+ end
102
+
97
103
  class MobileFriendlyIssue
98
104
  class Representation < Google::Apis::Core::JsonRepresentation; end
99
105
 
@@ -315,6 +321,14 @@ module Google
315
321
  end
316
322
  end
317
323
 
324
+ class Metadata
325
+ # @private
326
+ class Representation < Google::Apis::Core::JsonRepresentation
327
+ property :first_incomplete_date, as: 'firstIncompleteDate'
328
+ property :first_incomplete_hour, as: 'firstIncompleteHour'
329
+ end
330
+ end
331
+
318
332
  class MobileFriendlyIssue
319
333
  # @private
320
334
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -408,6 +422,8 @@ module Google
408
422
  class SearchAnalyticsQueryResponse
409
423
  # @private
410
424
  class Representation < Google::Apis::Core::JsonRepresentation
425
+ property :metadata, as: 'metadata', class: Google::Apis::SearchconsoleV1::Metadata, decorator: Google::Apis::SearchconsoleV1::Metadata::Representation
426
+
411
427
  property :response_aggregation_type, as: 'responseAggregationType'
412
428
  collection :rows, as: 'rows', class: Google::Apis::SearchconsoleV1::ApiDataRow, decorator: Google::Apis::SearchconsoleV1::ApiDataRow::Representation
413
429
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-searchconsole_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.21.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchconsole_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-searchconsole_v1/v0.20.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-searchconsole_v1/v0.21.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-searchconsole_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Google Search Console API V1
79
79
  test_files: []