Skip to content

Commit 6104481

Browse files
1 parent 2af79cc commit 6104481

File tree

7 files changed

+243
-168
lines changed

7 files changed

+243
-168
lines changed

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

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/HangoutsChat.java

Lines changed: 195 additions & 150 deletions
Large diffs are not rendered by default.

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/model/AccessSettings.java

Lines changed: 27 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,16 @@ public final class AccessSettings extends com.google.api.client.json.GenericJson
4343
* been individually invited or added to the space can access it. For details, see [Make a space
4444
* discoverable to a target audience](https://developers.google.com/workspace/chat/space-target-
4545
* audience). Format: `audiences/{audience}` To use the default target audience for the Google
46-
* Workspace organization, set to `audiences/default`. This field is not populated when using the
47-
* `chat.bot` scope with [app
46+
* Workspace organization, set to `audiences/default`. Reading the target audience supports: -
47+
* [User authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-
48+
* user) - [App authentication](https://developers.google.com/workspace/chat/authenticate-
49+
* authorize-chat-app) with [administrator approval](https://support.google.com/a?p=chat-app-auth)
50+
* with the `chat.app.spaces` scope in [Developer
51+
* Preview](https://developers.google.com/workspace/preview). This field is not populated when
52+
* using the `chat.bot` scope with [app
4853
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app).
54+
* Setting the target audience requires [user
55+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
4956
* The value may be {@code null}.
5057
*/
5158
@com.google.api.client.util.Key
@@ -75,9 +82,16 @@ public AccessSettings setAccessState(java.lang.String accessState) {
7582
* been individually invited or added to the space can access it. For details, see [Make a space
7683
* discoverable to a target audience](https://developers.google.com/workspace/chat/space-target-
7784
* audience). Format: `audiences/{audience}` To use the default target audience for the Google
78-
* Workspace organization, set to `audiences/default`. This field is not populated when using the
79-
* `chat.bot` scope with [app
85+
* Workspace organization, set to `audiences/default`. Reading the target audience supports: -
86+
* [User authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-
87+
* user) - [App authentication](https://developers.google.com/workspace/chat/authenticate-
88+
* authorize-chat-app) with [administrator approval](https://support.google.com/a?p=chat-app-auth)
89+
* with the `chat.app.spaces` scope in [Developer
90+
* Preview](https://developers.google.com/workspace/preview). This field is not populated when
91+
* using the `chat.bot` scope with [app
8092
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app).
93+
* Setting the target audience requires [user
94+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
8195
* @return value or {@code null} for none
8296
*/
8397
public java.lang.String getAudience() {
@@ -91,9 +105,16 @@ public java.lang.String getAudience() {
91105
* been individually invited or added to the space can access it. For details, see [Make a space
92106
* discoverable to a target audience](https://developers.google.com/workspace/chat/space-target-
93107
* audience). Format: `audiences/{audience}` To use the default target audience for the Google
94-
* Workspace organization, set to `audiences/default`. This field is not populated when using the
95-
* `chat.bot` scope with [app
108+
* Workspace organization, set to `audiences/default`. Reading the target audience supports: -
109+
* [User authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-
110+
* user) - [App authentication](https://developers.google.com/workspace/chat/authenticate-
111+
* authorize-chat-app) with [administrator approval](https://support.google.com/a?p=chat-app-auth)
112+
* with the `chat.app.spaces` scope in [Developer
113+
* Preview](https://developers.google.com/workspace/preview). This field is not populated when
114+
* using the `chat.bot` scope with [app
96115
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-app).
116+
* Setting the target audience requires [user
117+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
97118
* @param audience audience or {@code null} for none
98119
*/
99120
public AccessSettings setAudience(java.lang.String audience) {

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/model/Membership.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ public final class Membership extends com.google.api.client.json.GenericJson {
4949
private String deleteTime;
5050

5151
/**
52-
* The Google Group the membership corresponds to.
52+
* The Google Group the membership corresponds to. Reading or mutating memberships for Google
53+
* Groups requires [user
54+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
5355
* The value may be {@code null}.
5456
*/
5557
@com.google.api.client.util.Key
@@ -132,15 +134,19 @@ public Membership setDeleteTime(String deleteTime) {
132134
}
133135

134136
/**
135-
* The Google Group the membership corresponds to.
137+
* The Google Group the membership corresponds to. Reading or mutating memberships for Google
138+
* Groups requires [user
139+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
136140
* @return value or {@code null} for none
137141
*/
138142
public Group getGroupMember() {
139143
return groupMember;
140144
}
141145

142146
/**
143-
* The Google Group the membership corresponds to.
147+
* The Google Group the membership corresponds to. Reading or mutating memberships for Google
148+
* Groups requires [user
149+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
144150
* @param groupMember groupMember or {@code null} for none
145151
*/
146152
public Membership setGroupMember(Group groupMember) {

clients/google-api-services-chat/v1/2.0.0/com/google/api/services/chat/v1/model/Space.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ public final class Space extends com.google.api.client.json.GenericJson {
8585
/**
8686
* Optional. Whether this space is created in `Import Mode` as part of a data migration into
8787
* Google Workspace. While spaces are being imported, they aren't visible to users until the
88-
* import is complete.
88+
* import is complete. Creating a space in `Import Mode`requires [user
89+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
8990
* The value may be {@code null}.
9091
*/
9192
@com.google.api.client.util.Key
@@ -315,7 +316,8 @@ public Space setExternalUserAllowed(java.lang.Boolean externalUserAllowed) {
315316
/**
316317
* Optional. Whether this space is created in `Import Mode` as part of a data migration into
317318
* Google Workspace. While spaces are being imported, they aren't visible to users until the
318-
* import is complete.
319+
* import is complete. Creating a space in `Import Mode`requires [user
320+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
319321
* @return value or {@code null} for none
320322
*/
321323
public java.lang.Boolean getImportMode() {
@@ -325,7 +327,8 @@ public java.lang.Boolean getImportMode() {
325327
/**
326328
* Optional. Whether this space is created in `Import Mode` as part of a data migration into
327329
* Google Workspace. While spaces are being imported, they aren't visible to users until the
328-
* import is complete.
330+
* import is complete. Creating a space in `Import Mode`requires [user
331+
* authentication](https://developers.google.com/workspace/chat/authenticate-authorize-chat-user).
329332
* @param importMode importMode or {@code null} for none
330333
*/
331334
public Space setImportMode(java.lang.Boolean importMode) {

clients/google-api-services-chat/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-chat</artifactId>
11-
<version>v1-rev20240926-2.0.0</version>
12-
<name>Google Chat API v1-rev20240926-2.0.0</name>
11+
<version>v1-rev20241001-2.0.0</version>
12+
<name>Google Chat API v1-rev20241001-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)