Skip to content

Commit 6d2a18b

Browse files
1 parent 48c6aeb commit 6d2a18b

File tree

5 files changed

+49
-7
lines changed

5 files changed

+49
-7
lines changed

clients/google-api-services-searchconsole/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-searchconsole</artifactId>
25-
<version>v1-rev20250713-2.0.0</version>
25+
<version>v1-rev20250714-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250713-2.0.0'
38+
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250714-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-searchconsole/v1/2.0.0/com/google/api/services/searchconsole/v1/model/Metadata.java

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@
1717
package com.google.api.services.searchconsole.v1.model;
1818

1919
/**
20-
* Model definition for Metadata.
20+
* An object that may be returned with your query results, providing context about the state of the
21+
* data. When you request recent data (using `all` or `hourly_all` for `dataState`), some of the
22+
* rows returned may represent data that is incomplete, which means that the data is still being
23+
* collected and processed. This metadata object helps you identify exactly when this starts and
24+
* ends. All dates and times provided in this object are in the `America/Los_Angeles` time zone. The
25+
* specific field returned within this object depends on how you've grouped your data in the
26+
* request. See details in inner fields.
2127
*
2228
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2329
* transmitted over HTTP when working with the Google Search Console API. For a detailed explanation
@@ -31,25 +37,45 @@
3137
public final class Metadata extends com.google.api.client.json.GenericJson {
3238

3339
/**
40+
* The first date for which the data is still being collected and processed, presented in `YYYY-
41+
* MM-DD` format (ISO-8601 extended local date format). This field is populated only when the
42+
* request's `dataState` is "`all`", data is grouped by "`DATE`", and the requested date range
43+
* contains incomplete data points. All values after the `first_incomplete_date` may still change
44+
* noticeably.
3445
* The value may be {@code null}.
3546
*/
3647
@com.google.api.client.util.Key
3748
private java.lang.String firstIncompleteDate;
3849

3950
/**
51+
* The first hour for which the data is still being collected and processed, presented in `YYYY-
52+
* MM-DDThh:mm:ss[+|-]hh:mm` format (ISO-8601 extended offset date-time format). This field is
53+
* populated only when the request's `dataState` is "`hourly_all`", data is grouped by "`HOUR`"
54+
* and the requested date range contains incomplete data points. All values after the
55+
* `first_incomplete_hour` may still change noticeably.
4056
* The value may be {@code null}.
4157
*/
4258
@com.google.api.client.util.Key
4359
private java.lang.String firstIncompleteHour;
4460

4561
/**
62+
* The first date for which the data is still being collected and processed, presented in `YYYY-
63+
* MM-DD` format (ISO-8601 extended local date format). This field is populated only when the
64+
* request's `dataState` is "`all`", data is grouped by "`DATE`", and the requested date range
65+
* contains incomplete data points. All values after the `first_incomplete_date` may still change
66+
* noticeably.
4667
* @return value or {@code null} for none
4768
*/
4869
public java.lang.String getFirstIncompleteDate() {
4970
return firstIncompleteDate;
5071
}
5172

5273
/**
74+
* The first date for which the data is still being collected and processed, presented in `YYYY-
75+
* MM-DD` format (ISO-8601 extended local date format). This field is populated only when the
76+
* request's `dataState` is "`all`", data is grouped by "`DATE`", and the requested date range
77+
* contains incomplete data points. All values after the `first_incomplete_date` may still change
78+
* noticeably.
5379
* @param firstIncompleteDate firstIncompleteDate or {@code null} for none
5480
*/
5581
public Metadata setFirstIncompleteDate(java.lang.String firstIncompleteDate) {
@@ -58,13 +84,23 @@ public Metadata setFirstIncompleteDate(java.lang.String firstIncompleteDate) {
5884
}
5985

6086
/**
87+
* The first hour for which the data is still being collected and processed, presented in `YYYY-
88+
* MM-DDThh:mm:ss[+|-]hh:mm` format (ISO-8601 extended offset date-time format). This field is
89+
* populated only when the request's `dataState` is "`hourly_all`", data is grouped by "`HOUR`"
90+
* and the requested date range contains incomplete data points. All values after the
91+
* `first_incomplete_hour` may still change noticeably.
6192
* @return value or {@code null} for none
6293
*/
6394
public java.lang.String getFirstIncompleteHour() {
6495
return firstIncompleteHour;
6596
}
6697

6798
/**
99+
* The first hour for which the data is still being collected and processed, presented in `YYYY-
100+
* MM-DDThh:mm:ss[+|-]hh:mm` format (ISO-8601 extended offset date-time format). This field is
101+
* populated only when the request's `dataState` is "`hourly_all`", data is grouped by "`HOUR`"
102+
* and the requested date range contains incomplete data points. All values after the
103+
* `first_incomplete_hour` may still change noticeably.
68104
* @param firstIncompleteHour firstIncompleteHour or {@code null} for none
69105
*/
70106
public Metadata setFirstIncompleteHour(java.lang.String firstIncompleteHour) {

clients/google-api-services-searchconsole/v1/2.0.0/com/google/api/services/searchconsole/v1/model/SearchAnalyticsQueryResponse.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
public final class SearchAnalyticsQueryResponse extends com.google.api.client.json.GenericJson {
3333

3434
/**
35+
* An object that may be returned with your query results, providing context about the state of
36+
* the data. See details in Metadata object documentation.
3537
* The value may be {@code null}.
3638
*/
3739
@com.google.api.client.util.Key
@@ -58,13 +60,17 @@ public final class SearchAnalyticsQueryResponse extends com.google.api.client.js
5860
}
5961

6062
/**
63+
* An object that may be returned with your query results, providing context about the state of
64+
* the data. See details in Metadata object documentation.
6165
* @return value or {@code null} for none
6266
*/
6367
public Metadata getMetadata() {
6468
return metadata;
6569
}
6670

6771
/**
72+
* An object that may be returned with your query results, providing context about the state of
73+
* the data. See details in Metadata object documentation.
6874
* @param metadata metadata or {@code null} for none
6975
*/
7076
public SearchAnalyticsQueryResponse setMetadata(Metadata metadata) {

clients/google-api-services-searchconsole/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-searchconsole</artifactId>
11-
<version>v1-rev20250713-2.0.0</version>
12-
<name>Google Search Console API v1-rev20250713-2.0.0</name>
11+
<version>v1-rev20250714-2.0.0</version>
12+
<name>Google Search Console API v1-rev20250714-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-searchconsole/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-searchconsole</artifactId>
25-
<version>v1-rev20250713-2.0.0</version>
25+
<version>v1-rev20250714-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250713-2.0.0'
38+
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250714-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)