Skip to content

Commit 1bb676c

Browse files
1 parent 071935f commit 1bb676c

File tree

17 files changed

+336
-18
lines changed

17 files changed

+336
-18
lines changed

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

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.v1.model;
18+
19+
/**
20+
* Holds non-protocol-related configuration options.
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 IdentityServiceIdentityServiceOptions extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String sessionDuration;
38+
39+
/**
40+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
41+
* @return value or {@code null} for none
42+
*/
43+
public String getSessionDuration() {
44+
return sessionDuration;
45+
}
46+
47+
/**
48+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
49+
* @param sessionDuration sessionDuration or {@code null} for none
50+
*/
51+
public IdentityServiceIdentityServiceOptions setSessionDuration(String sessionDuration) {
52+
this.sessionDuration = sessionDuration;
53+
return this;
54+
}
55+
56+
@Override
57+
public IdentityServiceIdentityServiceOptions set(String fieldName, Object value) {
58+
return (IdentityServiceIdentityServiceOptions) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public IdentityServiceIdentityServiceOptions clone() {
63+
return (IdentityServiceIdentityServiceOptions) super.clone();
64+
}
65+
66+
}

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/IdentityServiceMembershipSpec.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ public final class IdentityServiceMembershipSpec extends com.google.api.client.j
4242
com.google.api.client.util.Data.nullOf(IdentityServiceAuthMethod.class);
4343
}
4444

45+
/**
46+
* Optional. non-protocol-related configuration options.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private IdentityServiceIdentityServiceOptions identityServiceOptions;
51+
4552
/**
4653
* A member may support multiple auth methods.
4754
* @return value or {@code null} for none
@@ -59,6 +66,23 @@ public IdentityServiceMembershipSpec setAuthMethods(java.util.List<IdentityServi
5966
return this;
6067
}
6168

69+
/**
70+
* Optional. non-protocol-related configuration options.
71+
* @return value or {@code null} for none
72+
*/
73+
public IdentityServiceIdentityServiceOptions getIdentityServiceOptions() {
74+
return identityServiceOptions;
75+
}
76+
77+
/**
78+
* Optional. non-protocol-related configuration options.
79+
* @param identityServiceOptions identityServiceOptions or {@code null} for none
80+
*/
81+
public IdentityServiceMembershipSpec setIdentityServiceOptions(IdentityServiceIdentityServiceOptions identityServiceOptions) {
82+
this.identityServiceOptions = identityServiceOptions;
83+
return this;
84+
}
85+
6286
@Override
6387
public IdentityServiceMembershipSpec set(String fieldName, Object value) {
6488
return (IdentityServiceMembershipSpec) super.set(fieldName, value);

clients/google-api-services-gkehub/v1/2.0.0/com/google/api/services/gkehub/v1/model/ServiceMeshControlPlaneManagement.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ public final class ServiceMeshControlPlaneManagement extends com.google.api.clie
3636
@com.google.api.client.util.Key
3737
private java.util.List<ServiceMeshStatusDetails> details;
3838

39+
/**
40+
* Output only. Implementation of managed control plane.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.lang.String implementation;
45+
3946
/**
4047
* LifecycleState of control plane management.
4148
* The value may be {@code null}.
@@ -60,6 +67,23 @@ public ServiceMeshControlPlaneManagement setDetails(java.util.List<ServiceMeshSt
6067
return this;
6168
}
6269

70+
/**
71+
* Output only. Implementation of managed control plane.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.lang.String getImplementation() {
75+
return implementation;
76+
}
77+
78+
/**
79+
* Output only. Implementation of managed control plane.
80+
* @param implementation implementation or {@code null} for none
81+
*/
82+
public ServiceMeshControlPlaneManagement setImplementation(java.lang.String implementation) {
83+
this.implementation = implementation;
84+
return this;
85+
}
86+
6387
/**
6488
* LifecycleState of control plane management.
6589
* @return value or {@code null} for none

clients/google-api-services-gkehub/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-gkehub</artifactId>
11-
<version>v1-rev20240412-2.0.0</version>
12-
<name>GKE Hub API v1-rev20240412-2.0.0</name>
11+
<version>v1-rev20240428-2.0.0</version>
12+
<name>GKE Hub API v1-rev20240428-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

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

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+
* Holds non-protocol-related configuration options.
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 IdentityServiceIdentityServiceOptions extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String sessionDuration;
38+
39+
/**
40+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
41+
* @return value or {@code null} for none
42+
*/
43+
public String getSessionDuration() {
44+
return sessionDuration;
45+
}
46+
47+
/**
48+
* Optional. Determines the lifespan of STS tokens issued by Anthos Identity Service.
49+
* @param sessionDuration sessionDuration or {@code null} for none
50+
*/
51+
public IdentityServiceIdentityServiceOptions setSessionDuration(String sessionDuration) {
52+
this.sessionDuration = sessionDuration;
53+
return this;
54+
}
55+
56+
@Override
57+
public IdentityServiceIdentityServiceOptions set(String fieldName, Object value) {
58+
return (IdentityServiceIdentityServiceOptions) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public IdentityServiceIdentityServiceOptions clone() {
63+
return (IdentityServiceIdentityServiceOptions) super.clone();
64+
}
65+
66+
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,13 @@ public final class IdentityServiceMembershipSpec extends com.google.api.client.j
4242
com.google.api.client.util.Data.nullOf(IdentityServiceAuthMethod.class);
4343
}
4444

45+
/**
46+
* Optional. non-protocol-related configuration options.
47+
* The value may be {@code null}.
48+
*/
49+
@com.google.api.client.util.Key
50+
private IdentityServiceIdentityServiceOptions identityServiceOptions;
51+
4552
/**
4653
* A member may support multiple auth methods.
4754
* @return value or {@code null} for none
@@ -59,6 +66,23 @@ public IdentityServiceMembershipSpec setAuthMethods(java.util.List<IdentityServi
5966
return this;
6067
}
6168

69+
/**
70+
* Optional. non-protocol-related configuration options.
71+
* @return value or {@code null} for none
72+
*/
73+
public IdentityServiceIdentityServiceOptions getIdentityServiceOptions() {
74+
return identityServiceOptions;
75+
}
76+
77+
/**
78+
* Optional. non-protocol-related configuration options.
79+
* @param identityServiceOptions identityServiceOptions or {@code null} for none
80+
*/
81+
public IdentityServiceMembershipSpec setIdentityServiceOptions(IdentityServiceIdentityServiceOptions identityServiceOptions) {
82+
this.identityServiceOptions = identityServiceOptions;
83+
return this;
84+
}
85+
6286
@Override
6387
public IdentityServiceMembershipSpec set(String fieldName, Object value) {
6488
return (IdentityServiceMembershipSpec) super.set(fieldName, value);

clients/google-api-services-gkehub/v1alpha/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-gkehub</artifactId>
11-
<version>v1alpha-rev20240412-2.0.0</version>
12-
<name>GKE Hub API v1alpha-rev20240412-2.0.0</name>
11+
<version>v1alpha-rev20240428-2.0.0</version>
12+
<name>GKE Hub API v1alpha-rev20240428-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)