Skip to content

Commit 11d074c

Browse files
1 parent f4621d1 commit 11d074c

File tree

5 files changed

+14
-26
lines changed

5 files changed

+14
-26
lines changed

clients/google-api-services-workspaceevents/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-workspaceevents</artifactId>
25-
<version>v1-rev20240827-2.0.0</version>
25+
<version>v1-rev20241008-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-workspaceevents:v1-rev20240827-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241008-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-workspaceevents/v1/2.0.0/com/google/api/services/workspaceevents/v1/WorkspaceEvents.java

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,7 @@ public List set(String parameterName, Object value) {
10251025
* This request holds the parameters needed by the workspaceevents server. After setting any
10261026
* optional parameters, call the {@link Patch#execute()} method to invoke the remote operation.
10271027
*
1028-
* @param name Optional. Immutable. Identifier. Resource name of the subscription. Format:
1029-
* `subscriptions/{subscription}`
1028+
* @param name Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
10301029
* @param content the {@link com.google.api.services.workspaceevents.v1.model.Subscription}
10311030
* @return the request
10321031
*/
@@ -1057,8 +1056,7 @@ public class Patch extends WorkspaceEventsRequest<com.google.api.services.worksp
10571056
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
10581057
* be called to initialize this instance immediately after invoking the constructor. </p>
10591058
*
1060-
* @param name Optional. Immutable. Identifier. Resource name of the subscription. Format:
1061-
* `subscriptions/{subscription}`
1059+
* @param name Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
10621060
* @param content the {@link com.google.api.services.workspaceevents.v1.model.Subscription}
10631061
* @since 1.13
10641062
*/
@@ -1127,24 +1125,17 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
11271125
return (Patch) super.setUploadProtocol(uploadProtocol);
11281126
}
11291127

1130-
/**
1131-
* Optional. Immutable. Identifier. Resource name of the subscription. Format:
1132-
* `subscriptions/{subscription}`
1133-
*/
1128+
/** Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}` */
11341129
@com.google.api.client.util.Key
11351130
private java.lang.String name;
11361131

1137-
/** Optional. Immutable. Identifier. Resource name of the subscription. Format:
1138-
`subscriptions/{subscription}`
1132+
/** Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
11391133
*/
11401134
public java.lang.String getName() {
11411135
return name;
11421136
}
11431137

1144-
/**
1145-
* Optional. Immutable. Identifier. Resource name of the subscription. Format:
1146-
* `subscriptions/{subscription}`
1147-
*/
1138+
/** Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}` */
11481139
public Patch setName(java.lang.String name) {
11491140
if (!getSuppressPatternChecks()) {
11501141
com.google.api.client.util.Preconditions.checkArgument(NAME_PATTERN.matcher(name).matches(),

clients/google-api-services-workspaceevents/v1/2.0.0/com/google/api/services/workspaceevents/v1/model/Subscription.java

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,7 @@ public final class Subscription extends com.google.api.client.json.GenericJson {
8282
private String expireTime;
8383

8484
/**
85-
* Optional. Immutable. Identifier. Resource name of the subscription. Format:
86-
* `subscriptions/{subscription}`
85+
* Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
8786
* The value may be {@code null}.
8887
*/
8988
@com.google.api.client.util.Key
@@ -277,17 +276,15 @@ public Subscription setExpireTime(String expireTime) {
277276
}
278277

279278
/**
280-
* Optional. Immutable. Identifier. Resource name of the subscription. Format:
281-
* `subscriptions/{subscription}`
279+
* Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
282280
* @return value or {@code null} for none
283281
*/
284282
public java.lang.String getName() {
285283
return name;
286284
}
287285

288286
/**
289-
* Optional. Immutable. Identifier. Resource name of the subscription. Format:
290-
* `subscriptions/{subscription}`
287+
* Identifier. Resource name of the subscription. Format: `subscriptions/{subscription}`
291288
* @param name name or {@code null} for none
292289
*/
293290
public Subscription setName(java.lang.String name) {

clients/google-api-services-workspaceevents/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-workspaceevents</artifactId>
11-
<version>v1-rev20240827-2.0.0</version>
12-
<name>Google Workspace Events API v1-rev20240827-2.0.0</name>
11+
<version>v1-rev20241008-2.0.0</version>
12+
<name>Google Workspace Events API v1-rev20241008-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-workspaceevents/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-workspaceevents</artifactId>
25-
<version>v1-rev20240827-2.0.0</version>
25+
<version>v1-rev20241008-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-workspaceevents:v1-rev20240827-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241008-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)