From 5f57b473b32bbf551da5bbdaf8bbf05fb608693a Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Sat, 25 Jul 2026 18:17:51 -0700
Subject: [PATCH] chore: regenerate cloudidentity client
---
.../v1beta1/2.0.0/README.md | 4 +-
.../v1beta1/model/ExternalId.java | 101 ++++++++++++++++++
.../cloudidentity/v1beta1/model/Group.java | 36 +++++++
.../v1beta1/2.0.0/pom.xml | 4 +-
.../v1beta1/README.md | 4 +-
5 files changed, 143 insertions(+), 6 deletions(-)
create mode 100644 clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/model/ExternalId.java
diff --git a/clients/google-api-services-cloudidentity/v1beta1/2.0.0/README.md b/clients/google-api-services-cloudidentity/v1beta1/2.0.0/README.md
index f40ff859b1d..64e37dcfb0a 100644
--- a/clients/google-api-services-cloudidentity/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-cloudidentity/v1beta1/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/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/model/Group.java b/clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/model/Group.java index 5e0e99663ad..5d50659510e 100644 --- a/clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/model/Group.java +++ b/clients/google-api-services-cloudidentity/v1beta1/2.0.0/com/google/api/services/cloudidentity/v1beta1/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