Skip to content

Commit 19b867f

Browse files
1 parent 6abbfbb commit 19b867f

File tree

4 files changed

+39
-6
lines changed

4 files changed

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

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,16 @@ public final class GitProxyConfig extends com.google.api.client.json.GenericJson
3838
@com.google.api.client.util.Key
3939
private java.lang.Boolean enabled;
4040

41+
/**
42+
* Output only. The base URI for the HTTP proxy endpoint. Has the format
43+
* `https://{generatedID}-c-h-{shortRegion}.developerconnect.dev` Populated only when enabled is
44+
* set to true. This endpoint is used by other Google services that integrate with Developer
45+
* Connect.
46+
* The value may be {@code null}.
47+
*/
48+
@com.google.api.client.util.Key
49+
private java.lang.String httpProxyBaseUri;
50+
4151
/**
4252
* Optional. Setting this to true allows the git proxy to be used for performing git operations on
4353
* the repositories linked in the connection.
@@ -57,6 +67,29 @@ public GitProxyConfig setEnabled(java.lang.Boolean enabled) {
5767
return this;
5868
}
5969

70+
/**
71+
* Output only. The base URI for the HTTP proxy endpoint. Has the format
72+
* `https://{generatedID}-c-h-{shortRegion}.developerconnect.dev` Populated only when enabled is
73+
* set to true. This endpoint is used by other Google services that integrate with Developer
74+
* Connect.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getHttpProxyBaseUri() {
78+
return httpProxyBaseUri;
79+
}
80+
81+
/**
82+
* Output only. The base URI for the HTTP proxy endpoint. Has the format
83+
* `https://{generatedID}-c-h-{shortRegion}.developerconnect.dev` Populated only when enabled is
84+
* set to true. This endpoint is used by other Google services that integrate with Developer
85+
* Connect.
86+
* @param httpProxyBaseUri httpProxyBaseUri or {@code null} for none
87+
*/
88+
public GitProxyConfig setHttpProxyBaseUri(java.lang.String httpProxyBaseUri) {
89+
this.httpProxyBaseUri = httpProxyBaseUri;
90+
return this;
91+
}
92+
6093
@Override
6194
public GitProxyConfig set(String fieldName, Object value) {
6295
return (GitProxyConfig) super.set(fieldName, value);

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-rev20251209-2.0.0</version>
12-
<name>Developer Connect API v1-rev20251209-2.0.0</name>
11+
<version>v1-rev20251211-2.0.0</version>
12+
<name>Developer Connect API v1-rev20251211-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-rev20251209-2.0.0</version>
25+
<version>v1-rev20251211-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-rev20251209-2.0.0'
38+
implementation 'com.google.apis:google-api-services-developerconnect:v1-rev20251211-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)