Skip to content

Commit c0699e6

Browse files
1 parent f49019e commit c0699e6

File tree

5 files changed

+30
-8
lines changed

5 files changed

+30
-8
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-rev20241008-2.0.0</version>
25+
<version>v1-rev20241027-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-rev20241008-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241027-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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,8 +1211,9 @@ public Patch set(String parameterName, Object value) {
12111211
/**
12121212
* [Developer Preview](https://developers.google.com/workspace/preview): Reactivates a suspended
12131213
* Google Workspace subscription. This method resets your subscription's `State` field to `ACTIVE`.
1214-
* Before you use this method, you must fix the error that suspended the subscription. To learn how
1215-
* to use this method, see [Reactivate a Google Workspace
1214+
* Before you use this method, you must fix the error that suspended the subscription. This method
1215+
* will ignore or reject any subscription that isn't currently in a suspended state. To learn how to
1216+
* use this method, see [Reactivate a Google Workspace
12161217
* subscription](https://developers.google.com/workspace/events/guides/reactivate-subscription).
12171218
*
12181219
* Create a request for the method "subscriptions.reactivate".
@@ -1241,6 +1242,7 @@ public class Reactivate extends WorkspaceEventsRequest<com.google.api.services.w
12411242
* [Developer Preview](https://developers.google.com/workspace/preview): Reactivates a suspended
12421243
* Google Workspace subscription. This method resets your subscription's `State` field to
12431244
* `ACTIVE`. Before you use this method, you must fix the error that suspended the subscription.
1245+
* This method will ignore or reject any subscription that isn't currently in a suspended state.
12441246
* To learn how to use this method, see [Reactivate a Google Workspace
12451247
* subscription](https://developers.google.com/workspace/events/guides/reactivate-subscription).
12461248
*

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,21 @@ public class WorkspaceEventsScopes {
5050
/** View chat and spaces in Google Chat. */
5151
public static final String CHAT_SPACES_READONLY = "https://www.googleapis.com/auth/chat.spaces.readonly";
5252

53+
/** See, edit, create, and delete all of your Google Drive files. */
54+
public static final String DRIVE = "https://www.googleapis.com/auth/drive";
55+
56+
/** See, edit, create, and delete only the specific Google Drive files you use with this app. */
57+
public static final String DRIVE_FILE = "https://www.googleapis.com/auth/drive.file";
58+
59+
/** View and manage metadata of files in your Google Drive. */
60+
public static final String DRIVE_METADATA = "https://www.googleapis.com/auth/drive.metadata";
61+
62+
/** See information about your Google Drive files. */
63+
public static final String DRIVE_METADATA_READONLY = "https://www.googleapis.com/auth/drive.metadata.readonly";
64+
65+
/** See and download all your Google Drive files. */
66+
public static final String DRIVE_READONLY = "https://www.googleapis.com/auth/drive.readonly";
67+
5368
/** Create, edit, and see information about your Google Meet conferences created by the app.. */
5469
public static final String MEETINGS_SPACE_CREATED = "https://www.googleapis.com/auth/meetings.space.created";
5570

@@ -72,6 +87,11 @@ public static java.util.Set<String> all() {
7287
set.add(CHAT_MESSAGES_READONLY);
7388
set.add(CHAT_SPACES);
7489
set.add(CHAT_SPACES_READONLY);
90+
set.add(DRIVE);
91+
set.add(DRIVE_FILE);
92+
set.add(DRIVE_METADATA);
93+
set.add(DRIVE_METADATA_READONLY);
94+
set.add(DRIVE_READONLY);
7595
set.add(MEETINGS_SPACE_CREATED);
7696
set.add(MEETINGS_SPACE_READONLY);
7797
return java.util.Collections.unmodifiableSet(set);

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-rev20241008-2.0.0</version>
12-
<name>Google Workspace Events API v1-rev20241008-2.0.0</name>
11+
<version>v1-rev20241027-2.0.0</version>
12+
<name>Google Workspace Events API v1-rev20241027-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-rev20241008-2.0.0</version>
25+
<version>v1-rev20241027-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-rev20241008-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241027-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)