Skip to content

Commit f4de7a0

Browse files
1 parent 05a9f1b commit f4de7a0

File tree

6 files changed

+242
-6
lines changed

6 files changed

+242
-6
lines changed

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

Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.developerconnect.v1.model;
18+
19+
/**
20+
* AppHubService represents the App Hub Service.
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 Developer Connect API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class AppHubService extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Output only. Immutable. The name of the App Hub Service. Format:
35+
* `projects/{project}/locations/{location}/applications/{application}/services/{service}`.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String apphubService;
40+
41+
/**
42+
* Output only. The criticality of the App Hub Service.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String criticality;
47+
48+
/**
49+
* Output only. The environment of the App Hub Service.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String environment;
54+
55+
/**
56+
* Required. Output only. Immutable. The name of the App Hub Service. Format:
57+
* `projects/{project}/locations/{location}/applications/{application}/services/{service}`.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.String getApphubService() {
61+
return apphubService;
62+
}
63+
64+
/**
65+
* Required. Output only. Immutable. The name of the App Hub Service. Format:
66+
* `projects/{project}/locations/{location}/applications/{application}/services/{service}`.
67+
* @param apphubService apphubService or {@code null} for none
68+
*/
69+
public AppHubService setApphubService(java.lang.String apphubService) {
70+
this.apphubService = apphubService;
71+
return this;
72+
}
73+
74+
/**
75+
* Output only. The criticality of the App Hub Service.
76+
* @return value or {@code null} for none
77+
*/
78+
public java.lang.String getCriticality() {
79+
return criticality;
80+
}
81+
82+
/**
83+
* Output only. The criticality of the App Hub Service.
84+
* @param criticality criticality or {@code null} for none
85+
*/
86+
public AppHubService setCriticality(java.lang.String criticality) {
87+
this.criticality = criticality;
88+
return this;
89+
}
90+
91+
/**
92+
* Output only. The environment of the App Hub Service.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.lang.String getEnvironment() {
96+
return environment;
97+
}
98+
99+
/**
100+
* Output only. The environment of the App Hub Service.
101+
* @param environment environment or {@code null} for none
102+
*/
103+
public AppHubService setEnvironment(java.lang.String environment) {
104+
this.environment = environment;
105+
return this;
106+
}
107+
108+
@Override
109+
public AppHubService set(String fieldName, Object value) {
110+
return (AppHubService) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public AppHubService clone() {
115+
return (AppHubService) super.clone();
116+
}
117+
118+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.developerconnect.v1.model;
18+
19+
/**
20+
* GoogleCloudRun represents the Cloud Run runtime.
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 Developer Connect API. For a detailed explanation
24+
* see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleCloudRun extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. Immutable. The name of the Cloud Run service. Format:
35+
* `projects/{project}/locations/{location}/services/{service}`.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String serviceUri;
40+
41+
/**
42+
* Required. Immutable. The name of the Cloud Run service. Format:
43+
* `projects/{project}/locations/{location}/services/{service}`.
44+
* @return value or {@code null} for none
45+
*/
46+
public java.lang.String getServiceUri() {
47+
return serviceUri;
48+
}
49+
50+
/**
51+
* Required. Immutable. The name of the Cloud Run service. Format:
52+
* `projects/{project}/locations/{location}/services/{service}`.
53+
* @param serviceUri serviceUri or {@code null} for none
54+
*/
55+
public GoogleCloudRun setServiceUri(java.lang.String serviceUri) {
56+
this.serviceUri = serviceUri;
57+
return this;
58+
}
59+
60+
@Override
61+
public GoogleCloudRun set(String fieldName, Object value) {
62+
return (GoogleCloudRun) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public GoogleCloudRun clone() {
67+
return (GoogleCloudRun) super.clone();
68+
}
69+
70+
}

clients/google-api-services-developerconnect/v1/2.0.0/com/google/api/services/developerconnect/v1/model/RuntimeConfig.java

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,13 @@
3030
@SuppressWarnings("javadoc")
3131
public final class RuntimeConfig extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. App Hub Service.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private AppHubService appHubService;
39+
3340
/**
3441
* Output only. App Hub Workload.
3542
* The value may be {@code null}.
@@ -44,6 +51,13 @@ public final class RuntimeConfig extends com.google.api.client.json.GenericJson
4451
@com.google.api.client.util.Key
4552
private GKEWorkload gkeWorkload;
4653

54+
/**
55+
* Output only. Cloud Run runtime.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private GoogleCloudRun googleCloudRun;
60+
4761
/**
4862
* Output only. The state of the Runtime.
4963
* The value may be {@code null}.
@@ -59,6 +73,23 @@ public final class RuntimeConfig extends com.google.api.client.json.GenericJson
5973
@com.google.api.client.util.Key
6074
private java.lang.String uri;
6175

76+
/**
77+
* Output only. App Hub Service.
78+
* @return value or {@code null} for none
79+
*/
80+
public AppHubService getAppHubService() {
81+
return appHubService;
82+
}
83+
84+
/**
85+
* Output only. App Hub Service.
86+
* @param appHubService appHubService or {@code null} for none
87+
*/
88+
public RuntimeConfig setAppHubService(AppHubService appHubService) {
89+
this.appHubService = appHubService;
90+
return this;
91+
}
92+
6293
/**
6394
* Output only. App Hub Workload.
6495
* @return value or {@code null} for none
@@ -93,6 +124,23 @@ public RuntimeConfig setGkeWorkload(GKEWorkload gkeWorkload) {
93124
return this;
94125
}
95126

127+
/**
128+
* Output only. Cloud Run runtime.
129+
* @return value or {@code null} for none
130+
*/
131+
public GoogleCloudRun getGoogleCloudRun() {
132+
return googleCloudRun;
133+
}
134+
135+
/**
136+
* Output only. Cloud Run runtime.
137+
* @param googleCloudRun googleCloudRun or {@code null} for none
138+
*/
139+
public RuntimeConfig setGoogleCloudRun(GoogleCloudRun googleCloudRun) {
140+
this.googleCloudRun = googleCloudRun;
141+
return this;
142+
}
143+
96144
/**
97145
* Output only. The state of the Runtime.
98146
* @return value or {@code null} for none

clients/google-api-services-developerconnect/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-developerconnect</artifactId>
11-
<version>v1-rev20251003-2.0.0</version>
12-
<name>Developer Connect API v1-rev20251003-2.0.0</name>
11+
<version>v1-rev20251016-2.0.0</version>
12+
<name>Developer Connect API v1-rev20251016-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)