Skip to content

Commit 5477fc0

Browse files
1 parent 12e3ab8 commit 5477fc0

File tree

4 files changed

+30
-21
lines changed

4 files changed

+30
-21
lines changed

clients/google-api-services-cloudidentity/v1beta1/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-cloudidentity</artifactId>
25-
<version>v1beta1-rev20241210-2.0.0</version>
25+
<version>v1beta1-rev20250107-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-cloudidentity:v1beta1-rev20241210-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20250107-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/model/Group.java

Lines changed: 24 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,17 @@ public final class Group extends com.google.api.client.json.GenericJson {
8080
private EntityKey groupKey;
8181

8282
/**
83-
* Required. One or more label entries that apply to the Group. Currently supported labels contain
84-
* a key with an empty value. Google Groups are the default type of group and have a label with a
85-
* key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing
86-
* Google Groups can have an additional label with a key of
83+
* Required. One or more label entries that apply to the Group. Labels contain a key with an empty
84+
* value. Google Groups are the default type of group and have a label with a key of
85+
* `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google
86+
* Groups can have an additional label with a key of
8787
* `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an
8888
* immutable change and the security label cannot be removed once added.** Dynamic groups have a
8989
* label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for
90-
* Cloud Search have a label with a key of `system/groups/external` and an empty value.
90+
* Cloud Search have a label with a key of `system/groups/external` and an empty value. (Beta)
91+
* Google Groups can be [locked](https://support.google.com/a?p=locked-groups). To lock a group,
92+
* add a label with a key of `cloudidentity.googleapis.com/groups.locked` and an empty value.
93+
* Doing so locks the group. To unlock the group, remove this label.
9194
* The value may be {@code null}.
9295
*/
9396
@com.google.api.client.util.Key
@@ -232,29 +235,35 @@ public Group setGroupKey(EntityKey groupKey) {
232235
}
233236

234237
/**
235-
* Required. One or more label entries that apply to the Group. Currently supported labels contain
236-
* a key with an empty value. Google Groups are the default type of group and have a label with a
237-
* key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing
238-
* Google Groups can have an additional label with a key of
238+
* Required. One or more label entries that apply to the Group. Labels contain a key with an empty
239+
* value. Google Groups are the default type of group and have a label with a key of
240+
* `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google
241+
* Groups can have an additional label with a key of
239242
* `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an
240243
* immutable change and the security label cannot be removed once added.** Dynamic groups have a
241244
* label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for
242-
* Cloud Search have a label with a key of `system/groups/external` and an empty value.
245+
* Cloud Search have a label with a key of `system/groups/external` and an empty value. (Beta)
246+
* Google Groups can be [locked](https://support.google.com/a?p=locked-groups). To lock a group,
247+
* add a label with a key of `cloudidentity.googleapis.com/groups.locked` and an empty value.
248+
* Doing so locks the group. To unlock the group, remove this label.
243249
* @return value or {@code null} for none
244250
*/
245251
public java.util.Map<String, java.lang.String> getLabels() {
246252
return labels;
247253
}
248254

249255
/**
250-
* Required. One or more label entries that apply to the Group. Currently supported labels contain
251-
* a key with an empty value. Google Groups are the default type of group and have a label with a
252-
* key of `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing
253-
* Google Groups can have an additional label with a key of
256+
* Required. One or more label entries that apply to the Group. Labels contain a key with an empty
257+
* value. Google Groups are the default type of group and have a label with a key of
258+
* `cloudidentity.googleapis.com/groups.discussion_forum` and an empty value. Existing Google
259+
* Groups can have an additional label with a key of
254260
* `cloudidentity.googleapis.com/groups.security` and an empty value added to them. **This is an
255261
* immutable change and the security label cannot be removed once added.** Dynamic groups have a
256262
* label with a key of `cloudidentity.googleapis.com/groups.dynamic`. Identity-mapped groups for
257-
* Cloud Search have a label with a key of `system/groups/external` and an empty value.
263+
* Cloud Search have a label with a key of `system/groups/external` and an empty value. (Beta)
264+
* Google Groups can be [locked](https://support.google.com/a?p=locked-groups). To lock a group,
265+
* add a label with a key of `cloudidentity.googleapis.com/groups.locked` and an empty value.
266+
* Doing so locks the group. To unlock the group, remove this label.
258267
* @param labels labels or {@code null} for none
259268
*/
260269
public Group setLabels(java.util.Map<String, java.lang.String> labels) {

clients/google-api-services-cloudidentity/v1beta1/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-cloudidentity</artifactId>
11-
<version>v1beta1-rev20241210-2.0.0</version>
12-
<name>Cloud Identity API v1beta1-rev20241210-2.0.0</name>
11+
<version>v1beta1-rev20250107-2.0.0</version>
12+
<name>Cloud Identity API v1beta1-rev20250107-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-cloudidentity/v1beta1/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-cloudidentity</artifactId>
25-
<version>v1beta1-rev20241210-2.0.0</version>
25+
<version>v1beta1-rev20250107-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-cloudidentity:v1beta1-rev20241210-2.0.0'
38+
implementation 'com.google.apis:google-api-services-cloudidentity:v1beta1-rev20250107-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)