Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchconsole</artifactId>
<version>v1-rev20250714-2.0.0</version>
<version>v1-rev20260805-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250714-2.0.0'
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20260805-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
package com.google.api.services.searchconsole.v1.model;

/**
* A set of dimension value filters to test against each row. Only rows that pass all filter groups
* will be returned. All results within a filter group are either AND'ed or OR'ed together,
* A set of `dimension` value filters to test against each row. Only rows that pass all filter
* groups will be returned. All results within a filter group are either AND'ed or OR'ed together,
* depending on the group type selected. All filter groups are AND'ed together.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
Expand All @@ -33,6 +33,7 @@
public final class ApiDimensionFilterGroup extends com.google.api.client.json.GenericJson {

/**
* Optional. A list of single-value filters in this group.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
Expand All @@ -45,19 +46,22 @@ public final class ApiDimensionFilterGroup extends com.google.api.client.json.Ge
}

/**
* Optional. The logic operator between filters of the same group.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String groupType;

/**
* Optional. A list of single-value filters in this group.
* @return value or {@code null} for none
*/
public java.util.List<ApiDimensionFilter> getFilters() {
return filters;
}

/**
* Optional. A list of single-value filters in this group.
* @param filters filters or {@code null} for none
*/
public ApiDimensionFilterGroup setFilters(java.util.List<ApiDimensionFilter> filters) {
Expand All @@ -66,13 +70,15 @@ public ApiDimensionFilterGroup setFilters(java.util.List<ApiDimensionFilter> fil
}

/**
* Optional. The logic operator between filters of the same group.
* @return value or {@code null} for none
*/
public java.lang.String getGroupType() {
return groupType;
}

/**
* Optional. The logic operator between filters of the same group.
* @param groupType groupType or {@code null} for none
*/
public ApiDimensionFilterGroup setGroupType(java.lang.String groupType) {
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-searchconsole/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchconsole</artifactId>
<version>v1-rev20250714-2.0.0</version>
<name>Google Search Console API v1-rev20250714-2.0.0</name>
<version>v1-rev20260805-2.0.0</version>
<name>Google Search Console API v1-rev20260805-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-searchconsole/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-searchconsole</artifactId>
<version>v1-rev20250714-2.0.0</version>
<version>v1-rev20260805-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20250714-2.0.0'
implementation 'com.google.apis:google-api-services-searchconsole:v1-rev20260805-2.0.0'
}
```

Expand Down
Loading