Skip to content

Commit e4a0871

Browse files
1 parent 6126dc5 commit e4a0871

File tree

18 files changed

+3300
-6
lines changed

18 files changed

+3300
-6
lines changed

clients/google-api-services-gkehub/v1alpha/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-gkehub</artifactId>
25-
<version>v1alpha-rev20251026-2.0.0</version>
25+
<version>v1alpha-rev20251103-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-gkehub:v1alpha-rev20251026-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkehub:v1alpha-rev20251103-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-gkehub/v1alpha/2.0.0/com/google/api/services/gkehub/v1alpha/GKEHub.java

Lines changed: 1239 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
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.gkehub.v1alpha.model;
18+
19+
/**
20+
* Selector for clusters.
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 GKE Hub 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 ClusterSelector extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The label selector must be a valid CEL (go/cel) expression which evaluates resource.labels.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String labelSelector;
38+
39+
/**
40+
* The label selector must be a valid CEL (go/cel) expression which evaluates resource.labels.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getLabelSelector() {
44+
return labelSelector;
45+
}
46+
47+
/**
48+
* The label selector must be a valid CEL (go/cel) expression which evaluates resource.labels.
49+
* @param labelSelector labelSelector or {@code null} for none
50+
*/
51+
public ClusterSelector setLabelSelector(java.lang.String labelSelector) {
52+
this.labelSelector = labelSelector;
53+
return this;
54+
}
55+
56+
@Override
57+
public ClusterSelector set(String fieldName, Object value) {
58+
return (ClusterSelector) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ClusterSelector clone() {
63+
return (ClusterSelector) super.clone();
64+
}
65+
66+
}
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.gkehub.v1alpha.model;
18+
19+
/**
20+
* An excluded cluster from the rollout.
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 GKE Hub 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 ExcludedCluster extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The name of the fleet Membership resource associated to the excluded cluster.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String membership;
38+
39+
/**
40+
* Output only. The reason for excluding the cluster from the rollout.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String reason;
45+
46+
/**
47+
* Output only. The name of the fleet Membership resource associated to the excluded cluster.
48+
* @return value or {@code null} for none
49+
*/
50+
public java.lang.String getMembership() {
51+
return membership;
52+
}
53+
54+
/**
55+
* Output only. The name of the fleet Membership resource associated to the excluded cluster.
56+
* @param membership membership or {@code null} for none
57+
*/
58+
public ExcludedCluster setMembership(java.lang.String membership) {
59+
this.membership = membership;
60+
return this;
61+
}
62+
63+
/**
64+
* Output only. The reason for excluding the cluster from the rollout.
65+
* @return value or {@code null} for none
66+
*/
67+
public java.lang.String getReason() {
68+
return reason;
69+
}
70+
71+
/**
72+
* Output only. The reason for excluding the cluster from the rollout.
73+
* @param reason reason or {@code null} for none
74+
*/
75+
public ExcludedCluster setReason(java.lang.String reason) {
76+
this.reason = reason;
77+
return this;
78+
}
79+
80+
@Override
81+
public ExcludedCluster set(String fieldName, Object value) {
82+
return (ExcludedCluster) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public ExcludedCluster clone() {
87+
return (ExcludedCluster) super.clone();
88+
}
89+
90+
}
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.gkehub.v1alpha.model;
18+
19+
/**
20+
* LINT.IfChange Feature config to use for Rollout.
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 GKE Hub 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 FeatureUpdate extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Configuration for Binary Authorization.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private BinaryAuthorizationConfig binaryAuthorizationConfig;
38+
39+
/**
40+
* Optional. Configuration for Security Posture.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private SecurityPostureConfig securityPostureConfig;
45+
46+
/**
47+
* Optional. Configuration for Binary Authorization.
48+
* @return value or {@code null} for none
49+
*/
50+
public BinaryAuthorizationConfig getBinaryAuthorizationConfig() {
51+
return binaryAuthorizationConfig;
52+
}
53+
54+
/**
55+
* Optional. Configuration for Binary Authorization.
56+
* @param binaryAuthorizationConfig binaryAuthorizationConfig or {@code null} for none
57+
*/
58+
public FeatureUpdate setBinaryAuthorizationConfig(BinaryAuthorizationConfig binaryAuthorizationConfig) {
59+
this.binaryAuthorizationConfig = binaryAuthorizationConfig;
60+
return this;
61+
}
62+
63+
/**
64+
* Optional. Configuration for Security Posture.
65+
* @return value or {@code null} for none
66+
*/
67+
public SecurityPostureConfig getSecurityPostureConfig() {
68+
return securityPostureConfig;
69+
}
70+
71+
/**
72+
* Optional. Configuration for Security Posture.
73+
* @param securityPostureConfig securityPostureConfig or {@code null} for none
74+
*/
75+
public FeatureUpdate setSecurityPostureConfig(SecurityPostureConfig securityPostureConfig) {
76+
this.securityPostureConfig = securityPostureConfig;
77+
return this;
78+
}
79+
80+
@Override
81+
public FeatureUpdate set(String fieldName, Object value) {
82+
return (FeatureUpdate) super.set(fieldName, value);
83+
}
84+
85+
@Override
86+
public FeatureUpdate clone() {
87+
return (FeatureUpdate) super.clone();
88+
}
89+
90+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.gkehub.v1alpha.model;
18+
19+
/**
20+
* Response message for listing rollout sequences.
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 GKE Hub 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 ListRolloutSequencesResponse extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
34+
* there are no subsequent pages.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String nextPageToken;
39+
40+
/**
41+
* The rollout sequences from the specified parent resource.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<RolloutSequence> rolloutSequences;
46+
47+
/**
48+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
49+
* there are no subsequent pages.
50+
* @return value or {@code null} for none
51+
*/
52+
public java.lang.String getNextPageToken() {
53+
return nextPageToken;
54+
}
55+
56+
/**
57+
* A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted,
58+
* there are no subsequent pages.
59+
* @param nextPageToken nextPageToken or {@code null} for none
60+
*/
61+
public ListRolloutSequencesResponse setNextPageToken(java.lang.String nextPageToken) {
62+
this.nextPageToken = nextPageToken;
63+
return this;
64+
}
65+
66+
/**
67+
* The rollout sequences from the specified parent resource.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.util.List<RolloutSequence> getRolloutSequences() {
71+
return rolloutSequences;
72+
}
73+
74+
/**
75+
* The rollout sequences from the specified parent resource.
76+
* @param rolloutSequences rolloutSequences or {@code null} for none
77+
*/
78+
public ListRolloutSequencesResponse setRolloutSequences(java.util.List<RolloutSequence> rolloutSequences) {
79+
this.rolloutSequences = rolloutSequences;
80+
return this;
81+
}
82+
83+
@Override
84+
public ListRolloutSequencesResponse set(String fieldName, Object value) {
85+
return (ListRolloutSequencesResponse) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public ListRolloutSequencesResponse clone() {
90+
return (ListRolloutSequencesResponse) super.clone();
91+
}
92+
93+
}

0 commit comments

Comments
 (0)