Skip to content

Commit e34441d

Browse files
chore: regenerate domains client
1 parent ebb6aa7 commit e34441d

File tree

15 files changed

+261
-51
lines changed

15 files changed

+261
-51
lines changed

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-rev20250918-2.0.0</version>
25+
<version>v1-rev20260126-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-rev20250918-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1-rev20260126-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: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class CloudDomains extends com.google.api.client.googleapis.services.json
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service.
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.
316319
*
317320
* Create a request for the method "locations.list".
318321
*
@@ -336,7 +339,10 @@ public class List extends CloudDomainsRequest<com.google.api.services.domains.v1
336339
java.util.regex.Pattern.compile("^projects/[^/]+$");
337340

338341
/**
339-
* Lists information about the supported locations for this service.
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.
340346
*
341347
* Create a request for the method "locations.list".
342348
*
@@ -445,22 +451,22 @@ public List setName(java.lang.String name) {
445451
}
446452

447453
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
454+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
455+
* documented otherwise. This is primarily for internal usage.
450456
*/
451457
@com.google.api.client.util.Key
452458
private java.util.List<java.lang.String> extraLocationTypes;
453459

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
460+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
461+
otherwise. This is primarily for internal usage.
456462
*/
457463
public java.util.List<java.lang.String> getExtraLocationTypes() {
458464
return extraLocationTypes;
459465
}
460466

461467
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
468+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
469+
* documented otherwise. This is primarily for internal usage.
464470
*/
465471
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466472
this.extraLocationTypes = extraLocationTypes;
@@ -880,6 +886,41 @@ public List setPageToken(java.lang.String pageToken) {
880886
return this;
881887
}
882888

889+
/**
890+
* When set to `true`, operations that are reachable are returned as normal, and those
891+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
892+
* can only be `true` when reading across collections. For example, when `parent` is set
893+
* to `"projects/example/locations/-"`. This field is not supported by default and will
894+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
895+
* service or product specific documentation.
896+
*/
897+
@com.google.api.client.util.Key
898+
private java.lang.Boolean returnPartialSuccess;
899+
900+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
901+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
902+
when reading across collections. For example, when `parent` is set to
903+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
904+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
905+
documentation.
906+
*/
907+
public java.lang.Boolean getReturnPartialSuccess() {
908+
return returnPartialSuccess;
909+
}
910+
911+
/**
912+
* When set to `true`, operations that are reachable are returned as normal, and those
913+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
914+
* can only be `true` when reading across collections. For example, when `parent` is set
915+
* to `"projects/example/locations/-"`. This field is not supported by default and will
916+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
917+
* service or product specific documentation.
918+
*/
919+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
920+
this.returnPartialSuccess = returnPartialSuccess;
921+
return this;
922+
}
923+
883924
@Override
884925
public List set(String parameterName, Object value) {
885926
return (List) super.set(parameterName, value);
@@ -4817,8 +4858,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
48174858
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
48184859
* <li>Android: {@code newCompatibleTransport} from
48194860
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
4820-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
4821-
* </li>
4861+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
48224862
* </ul>
48234863
* @param jsonFactory JSON factory, which may be:
48244864
* <ul>

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) 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-rev20250918-2.0.0</version>
12-
<name>Cloud Domains API v1-rev20250918-2.0.0</name>
11+
<version>v1-rev20260126-2.0.0</version>
12+
<name>Cloud Domains API v1-rev20260126-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-rev20250918-2.0.0</version>
25+
<version>v1-rev20260126-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-rev20250918-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1-rev20260126-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-rev20250918-2.0.0</version>
25+
<version>v1alpha2-rev20260126-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-rev20250918-2.0.0'
38+
implementation 'com.google.apis:google-api-services-domains:v1alpha2-rev20260126-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: 51 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public class CloudDomains extends com.google.api.client.googleapis.services.json
103103
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
104104
* <li>Android: {@code newCompatibleTransport} from
105105
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
106-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
106+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
107107
* </li>
108108
* </ul>
109109
* @param jsonFactory JSON factory, which may be:
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service.
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.
316319
*
317320
* Create a request for the method "locations.list".
318321
*
@@ -336,7 +339,10 @@ public class List extends CloudDomainsRequest<com.google.api.services.domains.v1
336339
java.util.regex.Pattern.compile("^projects/[^/]+$");
337340

338341
/**
339-
* Lists information about the supported locations for this service.
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.
340346
*
341347
* Create a request for the method "locations.list".
342348
*
@@ -445,22 +451,22 @@ public List setName(java.lang.String name) {
445451
}
446452

447453
/**
448-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
449-
* is primarily intended for internal usage.
454+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
455+
* documented otherwise. This is primarily for internal usage.
450456
*/
451457
@com.google.api.client.util.Key
452458
private java.util.List<java.lang.String> extraLocationTypes;
453459

454-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
455-
primarily intended for internal usage.
460+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
461+
otherwise. This is primarily for internal usage.
456462
*/
457463
public java.util.List<java.lang.String> getExtraLocationTypes() {
458464
return extraLocationTypes;
459465
}
460466

461467
/**
462-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
463-
* is primarily intended for internal usage.
468+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
469+
* documented otherwise. This is primarily for internal usage.
464470
*/
465471
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
466472
this.extraLocationTypes = extraLocationTypes;
@@ -880,6 +886,41 @@ public List setPageToken(java.lang.String pageToken) {
880886
return this;
881887
}
882888

889+
/**
890+
* When set to `true`, operations that are reachable are returned as normal, and those
891+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
892+
* can only be `true` when reading across collections. For example, when `parent` is set
893+
* to `"projects/example/locations/-"`. This field is not supported by default and will
894+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
895+
* service or product specific documentation.
896+
*/
897+
@com.google.api.client.util.Key
898+
private java.lang.Boolean returnPartialSuccess;
899+
900+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
901+
unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true`
902+
when reading across collections. For example, when `parent` is set to
903+
`"projects/example/locations/-"`. This field is not supported by default and will result in an
904+
`UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific
905+
documentation.
906+
*/
907+
public java.lang.Boolean getReturnPartialSuccess() {
908+
return returnPartialSuccess;
909+
}
910+
911+
/**
912+
* When set to `true`, operations that are reachable are returned as normal, and those
913+
* that are unreachable are returned in the ListOperationsResponse.unreachable field. This
914+
* can only be `true` when reading across collections. For example, when `parent` is set
915+
* to `"projects/example/locations/-"`. This field is not supported by default and will
916+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
917+
* service or product specific documentation.
918+
*/
919+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
920+
this.returnPartialSuccess = returnPartialSuccess;
921+
return this;
922+
}
923+
883924
@Override
884925
public List set(String parameterName, Object value) {
885926
return (List) super.set(parameterName, value);
@@ -4817,8 +4858,7 @@ private static String chooseEndpoint(com.google.api.client.http.HttpTransport tr
48174858
* {@code com.google.api.client.extensions.appengine.http.UrlFetchTransport}</li>
48184859
* <li>Android: {@code newCompatibleTransport} from
48194860
* {@code com.google.api.client.extensions.android.http.AndroidHttp}</li>
4820-
* <li>Java: {@link com.google.api.client.googleapis.javanet.GoogleNetHttpTransport#newTrustedTransport()}
4821-
* </li>
4861+
* <li>Java: {@code com.google.api.client.http.javanet.NetHttpTransport}</li>
48224862
* </ul>
48234863
* @param jsonFactory JSON factory, which may be:
48244864
* <ul>

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4343
@com.google.api.client.util.Key
4444
private java.util.List<Operation> operations;
4545

46+
/**
47+
* Unordered list. Unreachable resources. Populated when the request sets
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
49+
* attempting to list all resources across all supported locations.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.List<java.lang.String> unreachable;
54+
4655
/**
4756
* The standard List next-page token.
4857
* @return value or {@code null} for none
@@ -77,6 +86,27 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
7786
return this;
7887
}
7988

89+
/**
90+
* Unordered list. Unreachable resources. Populated when the request sets
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
92+
* attempting to list all resources across all supported locations.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.List<java.lang.String> getUnreachable() {
96+
return unreachable;
97+
}
98+
99+
/**
100+
* Unordered list. Unreachable resources. Populated when the request sets
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102+
* attempting to list all resources across all supported locations.
103+
* @param unreachable unreachable or {@code null} for none
104+
*/
105+
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {
106+
this.unreachable = unreachable;
107+
return this;
108+
}
109+
80110
@Override
81111
public ListOperationsResponse set(String fieldName, Object value) {
82112
return (ListOperationsResponse) 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-rev20250918-2.0.0</version>
12-
<name>Cloud Domains API v1alpha2-rev20250918-2.0.0</name>
11+
<version>v1alpha2-rev20260126-2.0.0</version>
12+
<name>Cloud Domains API v1alpha2-rev20260126-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)