Skip to content

Commit

Permalink
chore: regenerate workspaceevents client (#23764)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshi-code-bot authored Oct 31, 2024
1 parent f49019e commit c0699e6
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 8 deletions.
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-workspaceevents</artifactId>
<version>v1-rev20241008-2.0.0</version>
<version>v1-rev20241027-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241008-2.0.0'
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241027-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1211,8 +1211,9 @@ public Patch set(String parameterName, Object value) {
/**
* [Developer Preview](https://developers.google.com/workspace/preview): Reactivates a suspended
* Google Workspace subscription. This method resets your subscription's `State` field to `ACTIVE`.
* Before you use this method, you must fix the error that suspended the subscription. To learn how
* to use this method, see [Reactivate a Google Workspace
* Before you use this method, you must fix the error that suspended the subscription. This method
* will ignore or reject any subscription that isn't currently in a suspended state. To learn how to
* use this method, see [Reactivate a Google Workspace
* subscription](https://developers.google.com/workspace/events/guides/reactivate-subscription).
*
* Create a request for the method "subscriptions.reactivate".
Expand Down Expand Up @@ -1241,6 +1242,7 @@ public class Reactivate extends WorkspaceEventsRequest<com.google.api.services.w
* [Developer Preview](https://developers.google.com/workspace/preview): Reactivates a suspended
* Google Workspace subscription. This method resets your subscription's `State` field to
* `ACTIVE`. Before you use this method, you must fix the error that suspended the subscription.
* This method will ignore or reject any subscription that isn't currently in a suspended state.
* To learn how to use this method, see [Reactivate a Google Workspace
* subscription](https://developers.google.com/workspace/events/guides/reactivate-subscription).
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ public class WorkspaceEventsScopes {
/** View chat and spaces in Google Chat. */
public static final String CHAT_SPACES_READONLY = "https://www.googleapis.com/auth/chat.spaces.readonly";

/** See, edit, create, and delete all of your Google Drive files. */
public static final String DRIVE = "https://www.googleapis.com/auth/drive";

/** See, edit, create, and delete only the specific Google Drive files you use with this app. */
public static final String DRIVE_FILE = "https://www.googleapis.com/auth/drive.file";

/** View and manage metadata of files in your Google Drive. */
public static final String DRIVE_METADATA = "https://www.googleapis.com/auth/drive.metadata";

/** See information about your Google Drive files. */
public static final String DRIVE_METADATA_READONLY = "https://www.googleapis.com/auth/drive.metadata.readonly";

/** See and download all your Google Drive files. */
public static final String DRIVE_READONLY = "https://www.googleapis.com/auth/drive.readonly";

/** Create, edit, and see information about your Google Meet conferences created by the app.. */
public static final String MEETINGS_SPACE_CREATED = "https://www.googleapis.com/auth/meetings.space.created";

Expand All @@ -72,6 +87,11 @@ public static java.util.Set<String> all() {
set.add(CHAT_MESSAGES_READONLY);
set.add(CHAT_SPACES);
set.add(CHAT_SPACES_READONLY);
set.add(DRIVE);
set.add(DRIVE_FILE);
set.add(DRIVE_METADATA);
set.add(DRIVE_METADATA_READONLY);
set.add(DRIVE_READONLY);
set.add(MEETINGS_SPACE_CREATED);
set.add(MEETINGS_SPACE_READONLY);
return java.util.Collections.unmodifiableSet(set);
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-workspaceevents/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-workspaceevents</artifactId>
<version>v1-rev20241008-2.0.0</version>
<name>Google Workspace Events API v1-rev20241008-2.0.0</name>
<version>v1-rev20241027-2.0.0</version>
<name>Google Workspace Events API v1-rev20241027-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-workspaceevents/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-workspaceevents</artifactId>
<version>v1-rev20241008-2.0.0</version>
<version>v1-rev20241027-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241008-2.0.0'
implementation 'com.google.apis:google-api-services-workspaceevents:v1-rev20241027-2.0.0'
}
```

Expand Down

0 comments on commit c0699e6

Please sign in to comment.