From 5e90a318fc5fdae530a640039e3b32fc6af0d47f Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Wed, 16 Sep 2026 18:17:14 -0700
Subject: [PATCH] chore: regenerate cloudidentity client
---
.../v1/2.0.0/README.md | 4 +-
.../cloudidentity/v1/model/ExternalId.java | 101 ++++++++++++++++++
.../cloudidentity/v1/model/Group.java | 36 +++++++
.../v1/2.0.0/pom.xml | 4 +-
.../v1/README.md | 4 +-
5 files changed, 143 insertions(+), 6 deletions(-)
create mode 100644 clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/model/ExternalId.java
diff --git a/clients/google-api-services-cloudidentity/v1/2.0.0/README.md b/clients/google-api-services-cloudidentity/v1/2.0.0/README.md
index 8db2149f404..331f7570401 100644
--- a/clients/google-api-services-cloudidentity/v1/2.0.0/README.md
+++ b/clients/google-api-services-cloudidentity/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
This is the Java data model class that specifies how to parse/serialize into the JSON that is + * transmitted over HTTP when working with the Cloud Identity API. For a detailed explanation see: + * https://developers.google.com/api-client-library/java/google-http-java-client/json + *
+ * + * @author Google, Inc. + */ +@SuppressWarnings("javadoc") +public final class ExternalId extends com.google.api.client.json.GenericJson { + + /** + * Required. The unique identifier assigned by the external identity provider. The API does not + * enforce uniqueness of IDs across entities, but clients should ensure IDs are unique within + * their namespace. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String id; + + /** + * Required. The namespace in which the entity exists. Cannot be empty. Currently, the only + * allowable namespace is `"system/external"`. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.lang.String namespace; + + /** + * Required. The unique identifier assigned by the external identity provider. The API does not + * enforce uniqueness of IDs across entities, but clients should ensure IDs are unique within + * their namespace. + * @return value or {@code null} for none + */ + public java.lang.String getId() { + return id; + } + + /** + * Required. The unique identifier assigned by the external identity provider. The API does not + * enforce uniqueness of IDs across entities, but clients should ensure IDs are unique within + * their namespace. + * @param id id or {@code null} for none + */ + public ExternalId setId(java.lang.String id) { + this.id = id; + return this; + } + + /** + * Required. The namespace in which the entity exists. Cannot be empty. Currently, the only + * allowable namespace is `"system/external"`. + * @return value or {@code null} for none + */ + public java.lang.String getNamespace() { + return namespace; + } + + /** + * Required. The namespace in which the entity exists. Cannot be empty. Currently, the only + * allowable namespace is `"system/external"`. + * @param namespace namespace or {@code null} for none + */ + public ExternalId setNamespace(java.lang.String namespace) { + this.namespace = namespace; + return this; + } + + @Override + public ExternalId set(String fieldName, Object value) { + return (ExternalId) super.set(fieldName, value); + } + + @Override + public ExternalId clone() { + return (ExternalId) super.clone(); + } + +} diff --git a/clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/model/Group.java b/clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/model/Group.java index e7ac2457b0c..50c6482bc90 100644 --- a/clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/model/Group.java +++ b/clients/google-api-services-cloudidentity/v1/2.0.0/com/google/api/services/cloudidentity/v1/model/Group.java @@ -72,6 +72,21 @@ public final class Group extends com.google.api.client.json.GenericJson { @com.google.api.client.util.Key private DynamicGroupMetadata dynamicGroupMetadata; + /** + * Optional. External identifiers associated with the `Group`. Enables external identity providers + * and directory sync tools to link their native unique identifiers with this group. Currently, + * the only allowable namespace is `"system/external"`. + * The value may be {@code null}. + */ + @com.google.api.client.util.Key + private java.util.List