Skip to content

Commit 6fc572f

Browse files
chore: regenerate admin client
1 parent 5ec85f7 commit 6fc572f

File tree

6 files changed

+251
-6
lines changed

6 files changed

+251
-6
lines changed

clients/google-api-services-admin/reports_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-reports</artifactId>
25-
<version>reports_v1-rev20251202-2.0.0</version>
25+
<version>reports_v1-rev20260210-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-reports:reports_v1-rev20251202-2.0.0'
38+
implementation 'com.google.apis:google-api-services-admin-reports:reports_v1-rev20260210-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-admin/reports_v1/2.0.0/com/google/api/services/reports/Reports.java

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,35 @@ public List setActorIpAddress(java.lang.String actorIpAddress) {
382382
return this;
383383
}
384384

385+
/**
386+
* Optional. Used to filter on the `oAuthClientId` field present in
387+
* [`ApplicationInfo`](#applicationinfo) message. **Usage** ```
388+
* GET...&applicationInfoFilter=oAuthClientId="clientId"
389+
* GET...&applicationInfoFilter=oAuthClientId=%22clientId%22 ```
390+
*/
391+
@com.google.api.client.util.Key
392+
private java.lang.String applicationInfoFilter;
393+
394+
/** Optional. Used to filter on the `oAuthClientId` field present in
395+
[`ApplicationInfo`](#applicationinfo) message. **Usage** ```
396+
GET...&applicationInfoFilter=oAuthClientId="clientId"
397+
GET...&applicationInfoFilter=oAuthClientId=%22clientId%22 ```
398+
*/
399+
public java.lang.String getApplicationInfoFilter() {
400+
return applicationInfoFilter;
401+
}
402+
403+
/**
404+
* Optional. Used to filter on the `oAuthClientId` field present in
405+
* [`ApplicationInfo`](#applicationinfo) message. **Usage** ```
406+
* GET...&applicationInfoFilter=oAuthClientId="clientId"
407+
* GET...&applicationInfoFilter=oAuthClientId=%22clientId%22 ```
408+
*/
409+
public List setApplicationInfoFilter(java.lang.String applicationInfoFilter) {
410+
this.applicationInfoFilter = applicationInfoFilter;
411+
return this;
412+
}
413+
385414
/** The unique ID of the customer to retrieve data for. */
386415
@com.google.api.client.util.Key
387416
private java.lang.String customerId;
@@ -661,6 +690,32 @@ public List setMaxResults(java.lang.Integer maxResults) {
661690
return this;
662691
}
663692

693+
/**
694+
* Optional. Used to filter on the `regionCode` field present in [`NetworkInfo`](#networkinfo)
695+
* message. **Usage** ``` GET...&networkInfoFilter=regionCode="IN"
696+
* GET...&networkInfoFilter=regionCode=%22IN%22 ```
697+
*/
698+
@com.google.api.client.util.Key
699+
private java.lang.String networkInfoFilter;
700+
701+
/** Optional. Used to filter on the `regionCode` field present in [`NetworkInfo`](#networkinfo)
702+
message. **Usage** ``` GET...&networkInfoFilter=regionCode="IN"
703+
GET...&networkInfoFilter=regionCode=%22IN%22 ```
704+
*/
705+
public java.lang.String getNetworkInfoFilter() {
706+
return networkInfoFilter;
707+
}
708+
709+
/**
710+
* Optional. Used to filter on the `regionCode` field present in [`NetworkInfo`](#networkinfo)
711+
* message. **Usage** ``` GET...&networkInfoFilter=regionCode="IN"
712+
* GET...&networkInfoFilter=regionCode=%22IN%22 ```
713+
*/
714+
public List setNetworkInfoFilter(java.lang.String networkInfoFilter) {
715+
this.networkInfoFilter = networkInfoFilter;
716+
return this;
717+
}
718+
664719
/**
665720
* ID of the organizational unit to report on. Activity records will be shown only for users
666721
* who belong to the specified organizational unit. Data before Dec 17, 2018 doesn't appear in
@@ -871,6 +926,31 @@ public List setStartTime(java.lang.String startTime) {
871926
return this;
872927
}
873928

929+
/**
930+
* Optional. Used to filter on the `statusCode` field present in [`Status`](#status) message.
931+
* **Usage** ``` GET...&statusFilter=statusCode="200" GET...&statusFilter=statusCode=%22200%22
932+
* ```
933+
*/
934+
@com.google.api.client.util.Key
935+
private java.lang.String statusFilter;
936+
937+
/** Optional. Used to filter on the `statusCode` field present in [`Status`](#status) message.
938+
**Usage** ``` GET...&statusFilter=statusCode="200" GET...&statusFilter=statusCode=%22200%22 ```
939+
*/
940+
public java.lang.String getStatusFilter() {
941+
return statusFilter;
942+
}
943+
944+
/**
945+
* Optional. Used to filter on the `statusCode` field present in [`Status`](#status) message.
946+
* **Usage** ``` GET...&statusFilter=statusCode="200" GET...&statusFilter=statusCode=%22200%22
947+
* ```
948+
*/
949+
public List setStatusFilter(java.lang.String statusFilter) {
950+
this.statusFilter = statusFilter;
951+
return this;
952+
}
953+
874954
@Override
875955
public List set(String parameterName, Object value) {
876956
return (List) super.set(parameterName, value);

clients/google-api-services-admin/reports_v1/2.0.0/com/google/api/services/reports/model/Activity.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,13 @@ public static final class Events extends com.google.api.client.json.GenericJson
549549
@com.google.api.client.util.Key
550550
private java.util.List<java.lang.String> resourceIds;
551551

552+
/**
553+
* Status of the event. Note: Not all events have status.
554+
* The value may be {@code null}.
555+
*/
556+
@com.google.api.client.util.Key
557+
private ActivityEventsStatus status;
558+
552559
/**
553560
* Type of event. The Google Workspace service or feature that an administrator changes is
554561
* identified in the `type` property which identifies an event using the `eventName` property. For
@@ -624,6 +631,23 @@ public Events setResourceIds(java.util.List<java.lang.String> resourceIds) {
624631
return this;
625632
}
626633

634+
/**
635+
* Status of the event. Note: Not all events have status.
636+
* @return value or {@code null} for none
637+
*/
638+
public ActivityEventsStatus getStatus() {
639+
return status;
640+
}
641+
642+
/**
643+
* Status of the event. Note: Not all events have status.
644+
* @param status status or {@code null} for none
645+
*/
646+
public Events setStatus(ActivityEventsStatus status) {
647+
this.status = status;
648+
return this;
649+
}
650+
627651
/**
628652
* Type of event. The Google Workspace service or feature that an administrator changes is
629653
* identified in the `type` property which identifies an event using the `eventName` property. For
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.reports.model;
18+
19+
/**
20+
* Status of the event. Note: Not all events have status.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Admin SDK API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ActivityEventsStatus extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Error code of the event. Note: Field can be empty.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String errorCode;
38+
39+
/**
40+
* Error message of the event. Note: Field can be empty.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String errorMessage;
45+
46+
/**
47+
* * Status of the event. Possible values if not empty: - UNKNOWN_EVENT_STATUS - SUCCEEDED -
48+
* SUCCEEDED_WITH_WARNINGS - FAILED - SKIPPED
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String eventStatus;
53+
54+
/**
55+
* Status code of the event. Note: Field can be empty.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private java.lang.Integer httpStatusCode;
60+
61+
/**
62+
* Error code of the event. Note: Field can be empty.
63+
* @return value or {@code null} for none
64+
*/
65+
public java.lang.String getErrorCode() {
66+
return errorCode;
67+
}
68+
69+
/**
70+
* Error code of the event. Note: Field can be empty.
71+
* @param errorCode errorCode or {@code null} for none
72+
*/
73+
public ActivityEventsStatus setErrorCode(java.lang.String errorCode) {
74+
this.errorCode = errorCode;
75+
return this;
76+
}
77+
78+
/**
79+
* Error message of the event. Note: Field can be empty.
80+
* @return value or {@code null} for none
81+
*/
82+
public java.lang.String getErrorMessage() {
83+
return errorMessage;
84+
}
85+
86+
/**
87+
* Error message of the event. Note: Field can be empty.
88+
* @param errorMessage errorMessage or {@code null} for none
89+
*/
90+
public ActivityEventsStatus setErrorMessage(java.lang.String errorMessage) {
91+
this.errorMessage = errorMessage;
92+
return this;
93+
}
94+
95+
/**
96+
* * Status of the event. Possible values if not empty: - UNKNOWN_EVENT_STATUS - SUCCEEDED -
97+
* SUCCEEDED_WITH_WARNINGS - FAILED - SKIPPED
98+
* @return value or {@code null} for none
99+
*/
100+
public java.lang.String getEventStatus() {
101+
return eventStatus;
102+
}
103+
104+
/**
105+
* * Status of the event. Possible values if not empty: - UNKNOWN_EVENT_STATUS - SUCCEEDED -
106+
* SUCCEEDED_WITH_WARNINGS - FAILED - SKIPPED
107+
* @param eventStatus eventStatus or {@code null} for none
108+
*/
109+
public ActivityEventsStatus setEventStatus(java.lang.String eventStatus) {
110+
this.eventStatus = eventStatus;
111+
return this;
112+
}
113+
114+
/**
115+
* Status code of the event. Note: Field can be empty.
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.Integer getHttpStatusCode() {
119+
return httpStatusCode;
120+
}
121+
122+
/**
123+
* Status code of the event. Note: Field can be empty.
124+
* @param httpStatusCode httpStatusCode or {@code null} for none
125+
*/
126+
public ActivityEventsStatus setHttpStatusCode(java.lang.Integer httpStatusCode) {
127+
this.httpStatusCode = httpStatusCode;
128+
return this;
129+
}
130+
131+
@Override
132+
public ActivityEventsStatus set(String fieldName, Object value) {
133+
return (ActivityEventsStatus) super.set(fieldName, value);
134+
}
135+
136+
@Override
137+
public ActivityEventsStatus clone() {
138+
return (ActivityEventsStatus) super.clone();
139+
}
140+
141+
}

clients/google-api-services-admin/reports_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-reports</artifactId>
11-
<version>reports_v1-rev20251202-2.0.0</version>
12-
<name>Admin SDK API reports_v1-rev20251202-2.0.0</name>
11+
<version>reports_v1-rev20260210-2.0.0</version>
12+
<name>Admin SDK API reports_v1-rev20260210-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-admin/reports_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-reports</artifactId>
25-
<version>reports_v1-rev20251202-2.0.0</version>
25+
<version>reports_v1-rev20260210-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-reports:reports_v1-rev20251202-2.0.0'
38+
implementation 'com.google.apis:google-api-services-admin-reports:reports_v1-rev20260210-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)