Skip to content

Commit ae4eca1

Browse files
1 parent 3919e0a commit ae4eca1

10 files changed

Lines changed: 106 additions & 40 deletions

File tree

clients/google-api-services-domains/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-domains</artifactId>
25-
<version>v1-rev20260126-2.0.0</version>
25+
<version>v1-rev20260427-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-domains:v1-rev20260126-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1-rev20260427-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/CloudDomains.java

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service. This method can be called in
316-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318-
* public locations as well as private or other locations specifically visible to the project.
315+
* Lists information about the supported locations for this service. This method lists locations
316+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
317+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
318+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
319+
* lists locations visible to that specific project. This includes public, private, or other
320+
* project-specific locations enabled for the project. For gRPC and client library implementations,
321+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
322+
* incorporated into the request path based on the specific service implementation and version.
319323
*
320324
* Create a request for the method "locations.list".
321325
*
@@ -339,10 +343,15 @@ public class List extends CloudDomainsRequest<com.google.api.services.domains.v1
339343
java.util.regex.Pattern.compile("^projects/[^/]+$");
340344

341345
/**
342-
* Lists information about the supported locations for this service. This method can be called in
343-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345-
* public locations as well as private or other locations specifically visible to the project.
346+
* Lists information about the supported locations for this service. This method lists locations
347+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
348+
* locations**: If `name` is empty, the method lists the public locations available to all
349+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
350+
* the method lists locations visible to that specific project. This includes public, private, or
351+
* other project-specific locations enabled for the project. For gRPC and client library
352+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
353+
* resource name is incorporated into the request path based on the specific service
354+
* implementation and version.
346355
*
347356
* Create a request for the method "locations.list".
348357
*
@@ -451,22 +460,22 @@ public List setName(java.lang.String name) {
451460
}
452461

453462
/**
454-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
455-
* documented otherwise. This is primarily for internal usage.
463+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
464+
* for internal usage.
456465
*/
457466
@com.google.api.client.util.Key
458467
private java.util.List<java.lang.String> extraLocationTypes;
459468

460-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
461-
otherwise. This is primarily for internal usage.
469+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
470+
internal usage.
462471
*/
463472
public java.util.List<java.lang.String> getExtraLocationTypes() {
464473
return extraLocationTypes;
465474
}
466475

467476
/**
468-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
469-
* documented otherwise. This is primarily for internal usage.
477+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
478+
* for internal usage.
470479
*/
471480
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
472481
this.extraLocationTypes = extraLocationTypes;

clients/google-api-services-domains/v1/2.0.0/com/google/api/services/domains/v1/model/ConfigureManagementSettingsRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class ConfigureManagementSettingsRequest extends com.google.api.cli
4545
@com.google.api.client.util.Key
4646
private String updateMask;
4747

48+
/**
49+
* Optional. If set, validates the request without actually updating the management settings.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Boolean validateOnly;
54+
4855
/**
4956
* Fields of the `ManagementSettings` to update.
5057
* @return value or {@code null} for none
@@ -83,6 +90,23 @@ public ConfigureManagementSettingsRequest setUpdateMask(String updateMask) {
8390
return this;
8491
}
8592

93+
/**
94+
* Optional. If set, validates the request without actually updating the management settings.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.Boolean getValidateOnly() {
98+
return validateOnly;
99+
}
100+
101+
/**
102+
* Optional. If set, validates the request without actually updating the management settings.
103+
* @param validateOnly validateOnly or {@code null} for none
104+
*/
105+
public ConfigureManagementSettingsRequest setValidateOnly(java.lang.Boolean validateOnly) {
106+
this.validateOnly = validateOnly;
107+
return this;
108+
}
109+
86110
@Override
87111
public ConfigureManagementSettingsRequest set(String fieldName, Object value) {
88112
return (ConfigureManagementSettingsRequest) super.set(fieldName, value);

clients/google-api-services-domains/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-domains</artifactId>
11-
<version>v1-rev20260126-2.0.0</version>
12-
<name>Cloud Domains API v1-rev20260126-2.0.0</name>
11+
<version>v1-rev20260427-2.0.0</version>
12+
<name>Cloud Domains API v1-rev20260427-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-domains/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-domains</artifactId>
25-
<version>v1-rev20260126-2.0.0</version>
25+
<version>v1-rev20260427-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-domains:v1-rev20260126-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1-rev20260427-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-domains/v1alpha2/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-domains</artifactId>
25-
<version>v1alpha2-rev20260126-2.0.0</version>
25+
<version>v1alpha2-rev20260427-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-domains:v1alpha2-rev20260126-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260427-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/CloudDomains.java

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,14 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service. This method can be called in
316-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318-
* public locations as well as private or other locations specifically visible to the project.
315+
* Lists information about the supported locations for this service. This method lists locations
316+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
317+
* locations**: If `name` is empty, the method lists the public locations available to all projects.
318+
* * **Project-specific locations**: If `name` follows the format `projects/{project}`, the method
319+
* lists locations visible to that specific project. This includes public, private, or other
320+
* project-specific locations enabled for the project. For gRPC and client library implementations,
321+
* the resource name is passed as the `name` field. For direct service calls, the resource name is
322+
* incorporated into the request path based on the specific service implementation and version.
319323
*
320324
* Create a request for the method "locations.list".
321325
*
@@ -339,10 +343,15 @@ public class List extends CloudDomainsRequest<com.google.api.services.domains.v1
339343
java.util.regex.Pattern.compile("^projects/[^/]+$");
340344

341345
/**
342-
* Lists information about the supported locations for this service. This method can be called in
343-
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344-
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345-
* public locations as well as private or other locations specifically visible to the project.
346+
* Lists information about the supported locations for this service. This method lists locations
347+
* based on the resource scope provided in the ListLocationsRequest.name field: * **Global
348+
* locations**: If `name` is empty, the method lists the public locations available to all
349+
* projects. * **Project-specific locations**: If `name` follows the format `projects/{project}`,
350+
* the method lists locations visible to that specific project. This includes public, private, or
351+
* other project-specific locations enabled for the project. For gRPC and client library
352+
* implementations, the resource name is passed as the `name` field. For direct service calls, the
353+
* resource name is incorporated into the request path based on the specific service
354+
* implementation and version.
346355
*
347356
* Create a request for the method "locations.list".
348357
*
@@ -451,22 +460,22 @@ public List setName(java.lang.String name) {
451460
}
452461

453462
/**
454-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
455-
* documented otherwise. This is primarily for internal usage.
463+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
464+
* for internal usage.
456465
*/
457466
@com.google.api.client.util.Key
458467
private java.util.List<java.lang.String> extraLocationTypes;
459468

460-
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
461-
otherwise. This is primarily for internal usage.
469+
/** Optional. Do not use this field unless explicitly documented otherwise. This is primarily for
470+
internal usage.
462471
*/
463472
public java.util.List<java.lang.String> getExtraLocationTypes() {
464473
return extraLocationTypes;
465474
}
466475

467476
/**
468-
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
469-
* documented otherwise. This is primarily for internal usage.
477+
* Optional. Do not use this field unless explicitly documented otherwise. This is primarily
478+
* for internal usage.
470479
*/
471480
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
472481
this.extraLocationTypes = extraLocationTypes;

clients/google-api-services-domains/v1alpha2/2.0.0/com/google/api/services/domains/v1alpha2/model/ConfigureManagementSettingsRequest.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ public final class ConfigureManagementSettingsRequest extends com.google.api.cli
4545
@com.google.api.client.util.Key
4646
private String updateMask;
4747

48+
/**
49+
* Optional. If set, validates the request without actually updating the management settings.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.Boolean validateOnly;
54+
4855
/**
4956
* Fields of the `ManagementSettings` to update.
5057
* @return value or {@code null} for none
@@ -83,6 +90,23 @@ public ConfigureManagementSettingsRequest setUpdateMask(String updateMask) {
8390
return this;
8491
}
8592

93+
/**
94+
* Optional. If set, validates the request without actually updating the management settings.
95+
* @return value or {@code null} for none
96+
*/
97+
public java.lang.Boolean getValidateOnly() {
98+
return validateOnly;
99+
}
100+
101+
/**
102+
* Optional. If set, validates the request without actually updating the management settings.
103+
* @param validateOnly validateOnly or {@code null} for none
104+
*/
105+
public ConfigureManagementSettingsRequest setValidateOnly(java.lang.Boolean validateOnly) {
106+
this.validateOnly = validateOnly;
107+
return this;
108+
}
109+
86110
@Override
87111
public ConfigureManagementSettingsRequest set(String fieldName, Object value) {
88112
return (ConfigureManagementSettingsRequest) super.set(fieldName, value);

clients/google-api-services-domains/v1alpha2/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-domains</artifactId>
11-
<version>v1alpha2-rev20260126-2.0.0</version>
12-
<name>Cloud Domains API v1alpha2-rev20260126-2.0.0</name>
11+
<version>v1alpha2-rev20260427-2.0.0</version>
12+
<name>Cloud Domains API v1alpha2-rev20260427-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-domains/v1alpha2/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-domains</artifactId>
25-
<version>v1alpha2-rev20260126-2.0.0</version>
25+
<version>v1alpha2-rev20260427-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-domains:v1alpha2-rev20260126-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260427-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)