Skip to content

Commit 7c5e386

Browse files
1 parent 748deb3 commit 7c5e386

File tree

4 files changed

+50
-41
lines changed

4 files changed

+50
-41
lines changed

clients/google-api-services-admin/directory_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-admin-directory</artifactId>
25-
<version>directory_v1-rev20250916-2.0.0</version>
25+
<version>directory_v1-rev20250930-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-admin-directory:directory_v1-rev20250916-2.0.0'
38+
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20250930-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-admin/directory_v1/2.0.0/com/google/api/services/directory/Directory.java

Lines changed: 44 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -7179,22 +7179,25 @@ public List setPageToken(java.lang.String pageToken) {
71797179
}
71807180

71817181
/**
7182-
* Query string search. Should be of the form "". Complete documentation is at
7183-
* https://developers.google.com/workspace/admin/directory/v1/guides/search-groups
7182+
* Query string search. Contains one or more search clauses, each with a field, operator, and
7183+
* value. For complete documentation, go to [Search for
7184+
* groups](https://developers.google.com/workspace/admin/directory/v1/guides/search-groups).
71847185
*/
71857186
@com.google.api.client.util.Key
71867187
private java.lang.String query;
71877188

7188-
/** Query string search. Should be of the form "". Complete documentation is at
7189-
https://developers.google.com/workspace/admin/directory/v1/guides/search-groups
7189+
/** Query string search. Contains one or more search clauses, each with a field, operator, and value.
7190+
For complete documentation, go to [Search for
7191+
groups](https://developers.google.com/workspace/admin/directory/v1/guides/search-groups).
71907192
*/
71917193
public java.lang.String getQuery() {
71927194
return query;
71937195
}
71947196

71957197
/**
7196-
* Query string search. Should be of the form "". Complete documentation is at
7197-
* https://developers.google.com/workspace/admin/directory/v1/guides/search-groups
7198+
* Query string search. Contains one or more search clauses, each with a field, operator, and
7199+
* value. For complete documentation, go to [Search for
7200+
* groups](https://developers.google.com/workspace/admin/directory/v1/guides/search-groups).
71987201
*/
71997202
public List setQuery(java.lang.String query) {
72007203
this.query = query;
@@ -12689,39 +12692,42 @@ public List setPageToken(java.lang.String pageToken) {
1268912692
}
1269012693

1269112694
/**
12692-
* String query used to filter results. Should be of the form "field operator value" where
12693-
* field can be any of supported fields and operators can be any of supported operations.
12694-
* Operators include '=' for exact match, '!=' for mismatch and ':' for prefix match or HAS
12695-
* match where applicable. For prefix match, the value should always be followed by a *.
12696-
* Logical operators NOT and AND are supported (in this order of precedence). Supported
12697-
* fields include `generatedResourceName`, `name`, `buildingId`, `floor_name`, `capacity`,
12698-
* `featureInstances.feature.name`, `resourceEmail`, `resourceCategory`. For example
12699-
* `buildingId=US-NYC-9TH AND featureInstances.feature.name:Phone`.
12695+
* String query used to filter results. Contains one or more search clauses, each with a
12696+
* field, operator, and value. A field can be any of supported fields and operators can be
12697+
* any of supported operations. Operators include '=' for exact match, '!=' for mismatch and
12698+
* ':' for prefix match or HAS match where applicable. For prefix match, the value should
12699+
* always be followed by a *. Logical operators NOT and AND are supported (in this order of
12700+
* precedence). Supported fields include `generatedResourceName`, `name`, `buildingId`,
12701+
* `floor_name`, `capacity`, `featureInstances.feature.name`, `resourceEmail`,
12702+
* `resourceCategory`. For example `buildingId=US-NYC-9TH AND
12703+
* featureInstances.feature.name:Phone`.
1270012704
*/
1270112705
@com.google.api.client.util.Key
1270212706
private java.lang.String query;
1270312707

12704-
/** String query used to filter results. Should be of the form "field operator value" where field can
12705-
be any of supported fields and operators can be any of supported operations. Operators include '='
12706-
for exact match, '!=' for mismatch and ':' for prefix match or HAS match where applicable. For
12707-
prefix match, the value should always be followed by a *. Logical operators NOT and AND are
12708-
supported (in this order of precedence). Supported fields include `generatedResourceName`, `name`,
12709-
`buildingId`, `floor_name`, `capacity`, `featureInstances.feature.name`, `resourceEmail`,
12710-
`resourceCategory`. For example `buildingId=US-NYC-9TH AND featureInstances.feature.name:Phone`.
12708+
/** String query used to filter results. Contains one or more search clauses, each with a field,
12709+
operator, and value. A field can be any of supported fields and operators can be any of supported
12710+
operations. Operators include '=' for exact match, '!=' for mismatch and ':' for prefix match or
12711+
HAS match where applicable. For prefix match, the value should always be followed by a *. Logical
12712+
operators NOT and AND are supported (in this order of precedence). Supported fields include
12713+
`generatedResourceName`, `name`, `buildingId`, `floor_name`, `capacity`,
12714+
`featureInstances.feature.name`, `resourceEmail`, `resourceCategory`. For example `buildingId=US-
12715+
NYC-9TH AND featureInstances.feature.name:Phone`.
1271112716
*/
1271212717
public java.lang.String getQuery() {
1271312718
return query;
1271412719
}
1271512720

1271612721
/**
12717-
* String query used to filter results. Should be of the form "field operator value" where
12718-
* field can be any of supported fields and operators can be any of supported operations.
12719-
* Operators include '=' for exact match, '!=' for mismatch and ':' for prefix match or HAS
12720-
* match where applicable. For prefix match, the value should always be followed by a *.
12721-
* Logical operators NOT and AND are supported (in this order of precedence). Supported
12722-
* fields include `generatedResourceName`, `name`, `buildingId`, `floor_name`, `capacity`,
12723-
* `featureInstances.feature.name`, `resourceEmail`, `resourceCategory`. For example
12724-
* `buildingId=US-NYC-9TH AND featureInstances.feature.name:Phone`.
12722+
* String query used to filter results. Contains one or more search clauses, each with a
12723+
* field, operator, and value. A field can be any of supported fields and operators can be
12724+
* any of supported operations. Operators include '=' for exact match, '!=' for mismatch and
12725+
* ':' for prefix match or HAS match where applicable. For prefix match, the value should
12726+
* always be followed by a *. Logical operators NOT and AND are supported (in this order of
12727+
* precedence). Supported fields include `generatedResourceName`, `name`, `buildingId`,
12728+
* `floor_name`, `capacity`, `featureInstances.feature.name`, `resourceEmail`,
12729+
* `resourceCategory`. For example `buildingId=US-NYC-9TH AND
12730+
* featureInstances.feature.name:Phone`.
1272512731
*/
1272612732
public List setQuery(java.lang.String query) {
1272712733
this.query = query;
@@ -18897,22 +18903,25 @@ public Watch setProjection(java.lang.String projection) {
1889718903
}
1889818904

1889918905
/**
18900-
* Query string search. Should be of the form "". Complete documentation is at
18901-
* https://developers.google.com/workspace/admin/directory/v1/guides/search-users
18906+
* Query string search. Contains one or more search clauses, each with a field, operator, and
18907+
* value. For complete documentation, go to [Search for
18908+
* users](https://developers.google.com/workspace/admin/directory/v1/guides/search-users).
1890218909
*/
1890318910
@com.google.api.client.util.Key
1890418911
private java.lang.String query;
1890518912

18906-
/** Query string search. Should be of the form "". Complete documentation is at
18907-
https://developers.google.com/workspace/admin/directory/v1/guides/search-users
18913+
/** Query string search. Contains one or more search clauses, each with a field, operator, and value.
18914+
For complete documentation, go to [Search for
18915+
users](https://developers.google.com/workspace/admin/directory/v1/guides/search-users).
1890818916
*/
1890918917
public java.lang.String getQuery() {
1891018918
return query;
1891118919
}
1891218920

1891318921
/**
18914-
* Query string search. Should be of the form "". Complete documentation is at
18915-
* https://developers.google.com/workspace/admin/directory/v1/guides/search-users
18922+
* Query string search. Contains one or more search clauses, each with a field, operator, and
18923+
* value. For complete documentation, go to [Search for
18924+
* users](https://developers.google.com/workspace/admin/directory/v1/guides/search-users).
1891618925
*/
1891718926
public Watch setQuery(java.lang.String query) {
1891818927
this.query = query;

clients/google-api-services-admin/directory_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-admin-directory</artifactId>
11-
<version>directory_v1-rev20250916-2.0.0</version>
12-
<name>Admin SDK API directory_v1-rev20250916-2.0.0</name>
11+
<version>directory_v1-rev20250930-2.0.0</version>
12+
<name>Admin SDK API directory_v1-rev20250930-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-admin/directory_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-admin-directory</artifactId>
25-
<version>directory_v1-rev20250916-2.0.0</version>
25+
<version>directory_v1-rev20250930-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-admin-directory:directory_v1-rev20250916-2.0.0'
38+
implementation 'com.google.apis:google-api-services-admin-directory:directory_v1-rev20250930-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)