From e2125ac9dd5639ab30f5c42614e220e2d8bb4e09 Mon Sep 17 00:00:00 2001
From: yoshi-code-bot <70984784+yoshi-code-bot@users.noreply.github.com>
Date: Thu, 11 Jun 2026 19:26:58 -0700
Subject: [PATCH] chore: regenerate domains client
---
.../v1/2.0.0/README.md | 4 ++--
.../api/services/domains/v1/CloudDomains.java | 20 ++++++++++++++++
.../v1/model/InitiatePushTransferRequest.java | 24 +++++++++++++++++++
.../v1/2.0.0/pom.xml | 4 ++--
.../google-api-services-domains/v1/README.md | 4 ++--
.../v1alpha2/2.0.0/README.md | 4 ++--
.../domains/v1alpha2/CloudDomains.java | 20 ++++++++++++++++
.../model/InitiatePushTransferRequest.java | 24 +++++++++++++++++++
.../v1alpha2/2.0.0/pom.xml | 4 ++--
.../v1alpha2/README.md | 4 ++--
.../v1beta1/2.0.0/README.md | 4 ++--
.../domains/v1beta1/CloudDomains.java | 20 ++++++++++++++++
.../model/InitiatePushTransferRequest.java | 24 +++++++++++++++++++
.../v1beta1/2.0.0/pom.xml | 4 ++--
.../v1beta1/README.md | 4 ++--
15 files changed, 150 insertions(+), 18 deletions(-)
diff --git a/clients/google-api-services-domains/v1/2.0.0/README.md b/clients/google-api-services-domains/v1/2.0.0/README.md
index e56bf35ca64..9f61bf3ba13 100644
--- a/clients/google-api-services-domains/v1/2.0.0/README.md
+++ b/clients/google-api-services-domains/v1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1-rev20260427-2.0.0
+ v1-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1-rev20260603-2.0.0'
}
```
diff --git a/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/CloudDomains.java b/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/CloudDomains.java
index 54b033dc663..c19800081b6 100644
--- a/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/CloudDomains.java
+++ b/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/CloudDomains.java
@@ -2740,6 +2740,26 @@ public Patch setUpdateMask(String updateMask) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
+ /** Optional. If set, validates the request without actually updating the registration.
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ public Patch setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public Patch set(String parameterName, Object value) {
return (Patch) super.set(parameterName, value);
diff --git a/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/InitiatePushTransferRequest.java b/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/InitiatePushTransferRequest.java
index 41139ed8883..2c7b2eedb99 100644
--- a/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/InitiatePushTransferRequest.java
+++ b/clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/InitiatePushTransferRequest.java
@@ -37,6 +37,13 @@ public final class InitiatePushTransferRequest extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String tag;
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
/**
* Required. The Tag of the new registrar. Can be found at [List of
* registrars](https://nominet.uk/registrar-list/).
@@ -56,6 +63,23 @@ public InitiatePushTransferRequest setTag(java.lang.String tag) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @param validateOnly validateOnly or {@code null} for none
+ */
+ public InitiatePushTransferRequest setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public InitiatePushTransferRequest set(String fieldName, Object value) {
return (InitiatePushTransferRequest) super.set(fieldName, value);
diff --git a/clients/google-api-services-domains/v1/2.0.0/pom.xml b/clients/google-api-services-domains/v1/2.0.0/pom.xml
index 34e8840bc65..2604734f2b0 100644
--- a/clients/google-api-services-domains/v1/2.0.0/pom.xml
+++ b/clients/google-api-services-domains/v1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-domains
- v1-rev20260427-2.0.0
- Cloud Domains API v1-rev20260427-2.0.0
+ v1-rev20260603-2.0.0
+ Cloud Domains API v1-rev20260603-2.0.0
jar
2011
diff --git a/clients/google-api-services-domains/v1/README.md b/clients/google-api-services-domains/v1/README.md
index e56bf35ca64..9f61bf3ba13 100644
--- a/clients/google-api-services-domains/v1/README.md
+++ b/clients/google-api-services-domains/v1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1-rev20260427-2.0.0
+ v1-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1-rev20260603-2.0.0'
}
```
diff --git a/clients/google-api-services-domains/v1alpha2/2.0.0/README.md b/clients/google-api-services-domains/v1alpha2/2.0.0/README.md
index 3b467895e53..030e2a39ffe 100644
--- a/clients/google-api-services-domains/v1alpha2/2.0.0/README.md
+++ b/clients/google-api-services-domains/v1alpha2/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1alpha2-rev20260427-2.0.0
+ v1alpha2-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260603-2.0.0'
}
```
diff --git a/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/CloudDomains.java b/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/CloudDomains.java
index 2be3045dae1..286c11e8a16 100644
--- a/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/CloudDomains.java
+++ b/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/CloudDomains.java
@@ -2740,6 +2740,26 @@ public Patch setUpdateMask(String updateMask) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
+ /** Optional. If set, validates the request without actually updating the registration.
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ public Patch setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public Patch set(String parameterName, Object value) {
return (Patch) super.set(parameterName, value);
diff --git a/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/InitiatePushTransferRequest.java b/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/InitiatePushTransferRequest.java
index 4d5b5af454c..abac7054c63 100644
--- a/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/InitiatePushTransferRequest.java
+++ b/clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/InitiatePushTransferRequest.java
@@ -37,6 +37,13 @@ public final class InitiatePushTransferRequest extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String tag;
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
/**
* Required. The Tag of the new registrar. Can be found at [List of
* registrars](https://nominet.uk/registrar-list/).
@@ -56,6 +63,23 @@ public InitiatePushTransferRequest setTag(java.lang.String tag) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @param validateOnly validateOnly or {@code null} for none
+ */
+ public InitiatePushTransferRequest setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public InitiatePushTransferRequest set(String fieldName, Object value) {
return (InitiatePushTransferRequest) super.set(fieldName, value);
diff --git a/clients/google-api-services-domains/v1alpha2/2.0.0/pom.xml b/clients/google-api-services-domains/v1alpha2/2.0.0/pom.xml
index 9f5a4170240..be502d0bc17 100644
--- a/clients/google-api-services-domains/v1alpha2/2.0.0/pom.xml
+++ b/clients/google-api-services-domains/v1alpha2/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-domains
- v1alpha2-rev20260427-2.0.0
- Cloud Domains API v1alpha2-rev20260427-2.0.0
+ v1alpha2-rev20260603-2.0.0
+ Cloud Domains API v1alpha2-rev20260603-2.0.0
jar
2011
diff --git a/clients/google-api-services-domains/v1alpha2/README.md b/clients/google-api-services-domains/v1alpha2/README.md
index 3b467895e53..030e2a39ffe 100644
--- a/clients/google-api-services-domains/v1alpha2/README.md
+++ b/clients/google-api-services-domains/v1alpha2/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1alpha2-rev20260427-2.0.0
+ v1alpha2-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260603-2.0.0'
}
```
diff --git a/clients/google-api-services-domains/v1beta1/2.0.0/README.md b/clients/google-api-services-domains/v1beta1/2.0.0/README.md
index ad18f7640ab..d1d628b5216 100644
--- a/clients/google-api-services-domains/v1beta1/2.0.0/README.md
+++ b/clients/google-api-services-domains/v1beta1/2.0.0/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1beta1-rev20260427-2.0.0
+ v1beta1-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1beta1-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1beta1-rev20260603-2.0.0'
}
```
diff --git a/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/CloudDomains.java b/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/CloudDomains.java
index 8cec916a255..1fe996cb209 100644
--- a/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/CloudDomains.java
+++ b/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/CloudDomains.java
@@ -2740,6 +2740,26 @@ public Patch setUpdateMask(String updateMask) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
+ /** Optional. If set, validates the request without actually updating the registration.
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually updating the registration.
+ */
+ public Patch setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public Patch set(String parameterName, Object value) {
return (Patch) super.set(parameterName, value);
diff --git a/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/model/InitiatePushTransferRequest.java b/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/model/InitiatePushTransferRequest.java
index 8e55b094d8f..d8465e2d743 100644
--- a/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/model/InitiatePushTransferRequest.java
+++ b/clients/google-api-services-domains/v1beta1/2.0.0/com/google/api/services/domains/v1beta1/model/InitiatePushTransferRequest.java
@@ -37,6 +37,13 @@ public final class InitiatePushTransferRequest extends com.google.api.client.jso
@com.google.api.client.util.Key
private java.lang.String tag;
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * The value may be {@code null}.
+ */
+ @com.google.api.client.util.Key
+ private java.lang.Boolean validateOnly;
+
/**
* Required. The Tag of the new registrar. Can be found at [List of
* registrars](https://nominet.uk/registrar-list/).
@@ -56,6 +63,23 @@ public InitiatePushTransferRequest setTag(java.lang.String tag) {
return this;
}
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @return value or {@code null} for none
+ */
+ public java.lang.Boolean getValidateOnly() {
+ return validateOnly;
+ }
+
+ /**
+ * Optional. If set, validates the request without actually initiating the transfer.
+ * @param validateOnly validateOnly or {@code null} for none
+ */
+ public InitiatePushTransferRequest setValidateOnly(java.lang.Boolean validateOnly) {
+ this.validateOnly = validateOnly;
+ return this;
+ }
+
@Override
public InitiatePushTransferRequest set(String fieldName, Object value) {
return (InitiatePushTransferRequest) super.set(fieldName, value);
diff --git a/clients/google-api-services-domains/v1beta1/2.0.0/pom.xml b/clients/google-api-services-domains/v1beta1/2.0.0/pom.xml
index 1930d245e5c..504a0b4a114 100644
--- a/clients/google-api-services-domains/v1beta1/2.0.0/pom.xml
+++ b/clients/google-api-services-domains/v1beta1/2.0.0/pom.xml
@@ -8,8 +8,8 @@
com.google.apis
google-api-services-domains
- v1beta1-rev20260427-2.0.0
- Cloud Domains API v1beta1-rev20260427-2.0.0
+ v1beta1-rev20260603-2.0.0
+ Cloud Domains API v1beta1-rev20260603-2.0.0
jar
2011
diff --git a/clients/google-api-services-domains/v1beta1/README.md b/clients/google-api-services-domains/v1beta1/README.md
index ad18f7640ab..d1d628b5216 100644
--- a/clients/google-api-services-domains/v1beta1/README.md
+++ b/clients/google-api-services-domains/v1beta1/README.md
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
com.google.apis
google-api-services-domains
- v1beta1-rev20260427-2.0.0
+ v1beta1-rev20260603-2.0.0
@@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
- implementation 'com.google.apis:google-api-services-domains:v1beta1-rev20260427-2.0.0'
+ implementation 'com.google.apis:google-api-services-domains:v1beta1-rev20260603-2.0.0'
}
```