Skip to content

Commit d669a14

Browse files
1 parent 9487cdc commit d669a14

File tree

5 files changed

+36
-9
lines changed

5 files changed

+36
-9
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-rev20251014-2.0.0</version>
25+
<version>v1-rev20251016-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-rev20251014-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chat:v1-rev20251016-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class PermissionSetting extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Whether space managers `ROLE_ASSISTANT_MANAGER`) have this permission.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.Boolean assistantManagersAllowed;
38+
3239
/**
3340
* Optional. Whether space owners (`ROLE_MANAGER`) have this permission.
3441
* The value may be {@code null}.
@@ -43,6 +50,23 @@ public final class PermissionSetting extends com.google.api.client.json.GenericJ
4350
@com.google.api.client.util.Key
4451
private java.lang.Boolean membersAllowed;
4552

53+
/**
54+
* Optional. Whether space managers `ROLE_ASSISTANT_MANAGER`) have this permission.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.Boolean getAssistantManagersAllowed() {
58+
return assistantManagersAllowed;
59+
}
60+
61+
/**
62+
* Optional. Whether space managers `ROLE_ASSISTANT_MANAGER`) have this permission.
63+
* @param assistantManagersAllowed assistantManagersAllowed or {@code null} for none
64+
*/
65+
public PermissionSetting setAssistantManagersAllowed(java.lang.Boolean assistantManagersAllowed) {
66+
this.assistantManagersAllowed = assistantManagersAllowed;
67+
return this;
68+
}
69+
4670
/**
4771
* Optional. Whether space owners (`ROLE_MANAGER`) have this permission.
4872
* @return value or {@code null} for none

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
@@ -66,7 +66,8 @@ public final class Space extends com.google.api.client.json.GenericJson {
6666
* `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer
6767
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
6868
* Private apps can also use the `customers/my_customer` alias to create the space in the same
69-
* Google Workspace organization as the app. For DMs, this field isn't populated.
69+
* Google Workspace organization as the app. This field isn't populated for direct messages (DMs)
70+
* or when the space is created by non-Google Workspace users.
7071
* The value may be {@code null}.
7172
*/
7273
@com.google.api.client.util.Key
@@ -300,7 +301,8 @@ public Space setCreateTime(String createTime) {
300301
* `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer
301302
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
302303
* Private apps can also use the `customers/my_customer` alias to create the space in the same
303-
* Google Workspace organization as the app. For DMs, this field isn't populated.
304+
* Google Workspace organization as the app. This field isn't populated for direct messages (DMs)
305+
* or when the space is created by non-Google Workspace users.
304306
* @return value or {@code null} for none
305307
*/
306308
public java.lang.String getCustomer() {
@@ -314,7 +316,8 @@ public java.lang.String getCustomer() {
314316
* `customers/{customer}`, where `customer` is the `id` from the [Admin SDK customer
315317
* resource](https://developers.google.com/admin-sdk/directory/reference/rest/v1/customers).
316318
* Private apps can also use the `customers/my_customer` alias to create the space in the same
317-
* Google Workspace organization as the app. For DMs, this field isn't populated.
319+
* Google Workspace organization as the app. This field isn't populated for direct messages (DMs)
320+
* or when the space is created by non-Google Workspace users.
318321
* @param customer customer or {@code null} for none
319322
*/
320323
public Space setCustomer(java.lang.String customer) {

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-rev20251014-2.0.0</version>
12-
<name>Google Chat API v1-rev20251014-2.0.0</name>
11+
<version>v1-rev20251016-2.0.0</version>
12+
<name>Google Chat API v1-rev20251016-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-rev20251014-2.0.0</version>
25+
<version>v1-rev20251016-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-rev20251014-2.0.0'
38+
implementation 'com.google.apis:google-api-services-chat:v1-rev20251016-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)