Skip to content

Commit 834d993

Browse files
1 parent ff72d02 commit 834d993

File tree

14 files changed

+374
-12
lines changed

14 files changed

+374
-12
lines changed

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

clients/google-api-services-composer/v1/2.0.0/com/google/api/services/composer/v1/CloudComposer.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4911,6 +4911,40 @@ public List setPageToken(java.lang.String pageToken) {
49114911
return this;
49124912
}
49134913

4914+
/**
4915+
* When set to `true`, operations that are reachable are returned as normal, and those
4916+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4917+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4918+
* `"projects/example/locations/-"`. This field is not by default supported and will
4919+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4920+
* service or product specific documentation.
4921+
*/
4922+
@com.google.api.client.util.Key
4923+
private java.lang.Boolean returnPartialSuccess;
4924+
4925+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
4926+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
4927+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
4928+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
4929+
explicitly documented otherwise in service or product specific documentation.
4930+
*/
4931+
public java.lang.Boolean getReturnPartialSuccess() {
4932+
return returnPartialSuccess;
4933+
}
4934+
4935+
/**
4936+
* When set to `true`, operations that are reachable are returned as normal, and those
4937+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4938+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4939+
* `"projects/example/locations/-"`. This field is not by default supported and will
4940+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4941+
* service or product specific documentation.
4942+
*/
4943+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
4944+
this.returnPartialSuccess = returnPartialSuccess;
4945+
return this;
4946+
}
4947+
49144948
@Override
49154949
public List set(String parameterName, Object value) {
49164950
return (List) super.set(parameterName, value);

clients/google-api-services-composer/v1/2.0.0/com/google/api/services/composer/v1/model/CheckUpgradeResponse.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public final class CheckUpgradeResponse extends com.google.api.client.json.Gener
3636
@com.google.api.client.util.Key
3737
private java.lang.String buildLogUri;
3838

39+
/**
40+
* Output only. Contains information about environment configuration that is incompatible with the
41+
* new image version, except for pypi modules conflicts.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<ConfigConflict> configConflicts;
46+
3947
/**
4048
* Output only. Whether build has succeeded or failed on modules conflicts.
4149
* The value may be {@code null}.
@@ -83,6 +91,25 @@ public CheckUpgradeResponse setBuildLogUri(java.lang.String buildLogUri) {
8391
return this;
8492
}
8593

94+
/**
95+
* Output only. Contains information about environment configuration that is incompatible with the
96+
* new image version, except for pypi modules conflicts.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.util.List<ConfigConflict> getConfigConflicts() {
100+
return configConflicts;
101+
}
102+
103+
/**
104+
* Output only. Contains information about environment configuration that is incompatible with the
105+
* new image version, except for pypi modules conflicts.
106+
* @param configConflicts configConflicts or {@code null} for none
107+
*/
108+
public CheckUpgradeResponse setConfigConflicts(java.util.List<ConfigConflict> configConflicts) {
109+
this.configConflicts = configConflicts;
110+
return this;
111+
}
112+
86113
/**
87114
* Output only. Whether build has succeeded or failed on modules conflicts.
88115
* @return value or {@code null} for none
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.composer.v1.model;
18+
19+
/**
20+
* Environment configuration conflict.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cloud Composer API. For a detailed explanation see:
24+
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class ConfigConflict extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Conflict message.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String message;
38+
39+
/**
40+
* Conflict type. It can be blocking or non-blocking.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String type;
45+
46+
/**
47+
* Conflict message.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getMessage() {
51+
return message;
52+
}
53+
54+
/**
55+
* Conflict message.
56+
* @param message message or {@code null} for none
57+
*/
58+
public ConfigConflict setMessage(java.lang.String message) {
59+
this.message = message;
60+
return this;
61+
}
62+
63+
/**
64+
* Conflict type. It can be blocking or non-blocking.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getType() {
68+
return type;
69+
}
70+
71+
/**
72+
* Conflict type. It can be blocking or non-blocking.
73+
* @param type type or {@code null} for none
74+
*/
75+
public ConfigConflict setType(java.lang.String type) {
76+
this.type = type;
77+
return this;
78+
}
79+
80+
@Override
81+
public ConfigConflict set(String fieldName, Object value) {
82+
return (ConfigConflict) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ConfigConflict clone() {
87+
return (ConfigConflict) super.clone();
88+
}
89+
90+
}

clients/google-api-services-composer/v1/2.0.0/com/google/api/services/composer/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 e.g. 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 e.g. 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 e.g. 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-composer/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-composer</artifactId>
11-
<version>v1-rev20250803-2.0.0</version>
12-
<name>Cloud Composer API v1-rev20250803-2.0.0</name>
11+
<version>v1-rev20250928-2.0.0</version>
12+
<name>Cloud Composer API v1-rev20250928-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-composer/v1beta1/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-composer</artifactId>
25-
<version>v1beta1-rev20250803-2.0.0</version>
25+
<version>v1beta1-rev20250928-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-composer:v1beta1-rev20250803-2.0.0'
38+
implementation 'com.google.apis:google-api-services-composer:v1beta1-rev20250928-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-composer/v1beta1/2.0.0/com/google/api/services/composer/v1beta1/CloudComposer.java

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4948,6 +4948,40 @@ public List setPageToken(java.lang.String pageToken) {
49484948
return this;
49494949
}
49504950

4951+
/**
4952+
* When set to `true`, operations that are reachable are returned as normal, and those
4953+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4954+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4955+
* `"projects/example/locations/-"`. This field is not by default supported and will
4956+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4957+
* service or product specific documentation.
4958+
*/
4959+
@com.google.api.client.util.Key
4960+
private java.lang.Boolean returnPartialSuccess;
4961+
4962+
/** When set to `true`, operations that are reachable are returned as normal, and those that are
4963+
unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true`
4964+
when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This
4965+
field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless
4966+
explicitly documented otherwise in service or product specific documentation.
4967+
*/
4968+
public java.lang.Boolean getReturnPartialSuccess() {
4969+
return returnPartialSuccess;
4970+
}
4971+
4972+
/**
4973+
* When set to `true`, operations that are reachable are returned as normal, and those
4974+
* that are unreachable are returned in the [ListOperationsResponse.unreachable] field.
4975+
* This can only be `true` when reading across collections e.g. when `parent` is set to
4976+
* `"projects/example/locations/-"`. This field is not by default supported and will
4977+
* result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in
4978+
* service or product specific documentation.
4979+
*/
4980+
public List setReturnPartialSuccess(java.lang.Boolean returnPartialSuccess) {
4981+
this.returnPartialSuccess = returnPartialSuccess;
4982+
return this;
4983+
}
4984+
49514985
@Override
49524986
public List set(String parameterName, Object value) {
49534987
return (List) super.set(parameterName, value);

clients/google-api-services-composer/v1beta1/2.0.0/com/google/api/services/composer/v1beta1/model/CheckUpgradeResponse.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,14 @@ public final class CheckUpgradeResponse extends com.google.api.client.json.Gener
3636
@com.google.api.client.util.Key
3737
private java.lang.String buildLogUri;
3838

39+
/**
40+
* Output only. Contains information about environment configuration that is incompatible with the
41+
* new image version, except for pypi modules conflicts.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<ConfigConflict> configConflicts;
46+
3947
/**
4048
* Output only. Whether build has succeeded or failed on modules conflicts.
4149
* The value may be {@code null}.
@@ -83,6 +91,25 @@ public CheckUpgradeResponse setBuildLogUri(java.lang.String buildLogUri) {
8391
return this;
8492
}
8593

94+
/**
95+
* Output only. Contains information about environment configuration that is incompatible with the
96+
* new image version, except for pypi modules conflicts.
97+
* @return value or {@code null} for none
98+
*/
99+
public java.util.List<ConfigConflict> getConfigConflicts() {
100+
return configConflicts;
101+
}
102+
103+
/**
104+
* Output only. Contains information about environment configuration that is incompatible with the
105+
* new image version, except for pypi modules conflicts.
106+
* @param configConflicts configConflicts or {@code null} for none
107+
*/
108+
public CheckUpgradeResponse setConfigConflicts(java.util.List<ConfigConflict> configConflicts) {
109+
this.configConflicts = configConflicts;
110+
return this;
111+
}
112+
86113
/**
87114
* Output only. Whether build has succeeded or failed on modules conflicts.
88115
* @return value or {@code null} for none

0 commit comments

Comments
 (0)