Skip to content

Commit 236532c

Browse files
1 parent 708998b commit 236532c

16 files changed

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

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,10 @@ public Get set(String parameterName, Object value) {
312312
}
313313
}
314314
/**
315-
* Lists information about the supported locations for this service.
315+
* Lists information about the supported locations for this service. This method can be called in
316+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
317+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
318+
* public locations as well as private or other locations specifically visible to the project.
316319
*
317320
* Create a request for the method "locations.list".
318321
*
@@ -336,7 +339,10 @@ public class List extends DeveloperConnectRequest<com.google.api.services.develo
336339
java.util.regex.Pattern.compile("^projects/[^/]+$");
337340

338341
/**
339-
* Lists information about the supported locations for this service.
342+
* Lists information about the supported locations for this service. This method can be called in
343+
* two ways: * **List all public locations:** Use the path `GET /v1/locations`. * **List project-
344+
* visible locations:** Use the path `GET /v1/projects/{project_id}/locations`. This may include
345+
* public locations as well as private or other locations specifically visible to the project.
340346
*
341347
* Create a request for the method "locations.list".
342348
*

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public final class AccountConnector extends com.google.api.client.json.GenericJs
7878
private java.lang.String oauthStartUri;
7979

8080
/**
81-
* Provider OAuth config.
81+
* Optional. Provider OAuth config.
8282
* The value may be {@code null}.
8383
*/
8484
@com.google.api.client.util.Key
@@ -200,15 +200,15 @@ public AccountConnector setOauthStartUri(java.lang.String oauthStartUri) {
200200
}
201201

202202
/**
203-
* Provider OAuth config.
203+
* Optional. Provider OAuth config.
204204
* @return value or {@code null} for none
205205
*/
206206
public ProviderOAuthConfig getProviderOauthConfig() {
207207
return providerOauthConfig;
208208
}
209209

210210
/**
211-
* Provider OAuth config.
211+
* Optional. Provider OAuth config.
212212
* @param providerOauthConfig providerOauthConfig or {@code null} for none
213213
*/
214214
public AccountConnector setProviderOauthConfig(ProviderOAuthConfig providerOauthConfig) {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
* Basic authentication with username and password.
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 BasicAuthentication extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* The password SecretManager secret version to authenticate as.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String passwordSecretVersion;
39+
40+
/**
41+
* Required. The username to authenticate as.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String username;
46+
47+
/**
48+
* The password SecretManager secret version to authenticate as.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getPasswordSecretVersion() {
52+
return passwordSecretVersion;
53+
}
54+
55+
/**
56+
* The password SecretManager secret version to authenticate as.
57+
* @param passwordSecretVersion passwordSecretVersion or {@code null} for none
58+
*/
59+
public BasicAuthentication setPasswordSecretVersion(java.lang.String passwordSecretVersion) {
60+
this.passwordSecretVersion = passwordSecretVersion;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. The username to authenticate as.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getUsername() {
69+
return username;
70+
}
71+
72+
/**
73+
* Required. The username to authenticate as.
74+
* @param username username or {@code null} for none
75+
*/
76+
public BasicAuthentication setUsername(java.lang.String username) {
77+
this.username = username;
78+
return this;
79+
}
80+
81+
@Override
82+
public BasicAuthentication set(String fieldName, Object value) {
83+
return (BasicAuthentication) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public BasicAuthentication clone() {
88+
return (BasicAuthentication) super.clone();
89+
}
90+
91+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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+
* Bearer token authentication with a token.
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 BearerTokenAuthentication extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The token SecretManager secret version to authenticate as.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String tokenSecretVersion;
39+
40+
/**
41+
* Optional. The token SecretManager secret version to authenticate as.
42+
* @return value or {@code null} for none
43+
*/
44+
public java.lang.String getTokenSecretVersion() {
45+
return tokenSecretVersion;
46+
}
47+
48+
/**
49+
* Optional. The token SecretManager secret version to authenticate as.
50+
* @param tokenSecretVersion tokenSecretVersion or {@code null} for none
51+
*/
52+
public BearerTokenAuthentication setTokenSecretVersion(java.lang.String tokenSecretVersion) {
53+
this.tokenSecretVersion = tokenSecretVersion;
54+
return this;
55+
}
56+
57+
@Override
58+
public BearerTokenAuthentication set(String fieldName, Object value) {
59+
return (BearerTokenAuthentication) super.set(fieldName, value);
60+
}
61+
62+
@Override
63+
public BearerTokenAuthentication clone() {
64+
return (BearerTokenAuthentication) super.clone();
65+
}
66+
67+
}

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,13 @@ public final class Connection extends com.google.api.client.json.GenericJson {
126126
@com.google.api.client.util.Key
127127
private GitLabEnterpriseConfig gitlabEnterpriseConfig;
128128

129+
/**
130+
* Optional. Configuration for connections to an HTTP service provider.
131+
* The value may be {@code null}.
132+
*/
133+
@com.google.api.client.util.Key
134+
private GenericHTTPEndpointConfig httpConfig;
135+
129136
/**
130137
* Output only. Installation state of the Connection.
131138
* The value may be {@code null}.
@@ -155,6 +162,13 @@ public final class Connection extends com.google.api.client.json.GenericJson {
155162
@com.google.api.client.util.Key
156163
private java.lang.Boolean reconciling;
157164

165+
/**
166+
* Configuration for connections to an instance of Secure Source Manager.
167+
* The value may be {@code null}.
168+
*/
169+
@com.google.api.client.util.Key
170+
private SecureSourceManagerInstanceConfig secureSourceManagerInstanceConfig;
171+
158172
/**
159173
* Output only. A system-assigned unique identifier for the Connection.
160174
* The value may be {@code null}.
@@ -400,6 +414,23 @@ public Connection setGitlabEnterpriseConfig(GitLabEnterpriseConfig gitlabEnterpr
400414
return this;
401415
}
402416

417+
/**
418+
* Optional. Configuration for connections to an HTTP service provider.
419+
* @return value or {@code null} for none
420+
*/
421+
public GenericHTTPEndpointConfig getHttpConfig() {
422+
return httpConfig;
423+
}
424+
425+
/**
426+
* Optional. Configuration for connections to an HTTP service provider.
427+
* @param httpConfig httpConfig or {@code null} for none
428+
*/
429+
public Connection setHttpConfig(GenericHTTPEndpointConfig httpConfig) {
430+
this.httpConfig = httpConfig;
431+
return this;
432+
}
433+
403434
/**
404435
* Output only. Installation state of the Connection.
405436
* @return value or {@code null} for none
@@ -470,6 +501,23 @@ public Connection setReconciling(java.lang.Boolean reconciling) {
470501
return this;
471502
}
472503

504+
/**
505+
* Configuration for connections to an instance of Secure Source Manager.
506+
* @return value or {@code null} for none
507+
*/
508+
public SecureSourceManagerInstanceConfig getSecureSourceManagerInstanceConfig() {
509+
return secureSourceManagerInstanceConfig;
510+
}
511+
512+
/**
513+
* Configuration for connections to an instance of Secure Source Manager.
514+
* @param secureSourceManagerInstanceConfig secureSourceManagerInstanceConfig or {@code null} for none
515+
*/
516+
public Connection setSecureSourceManagerInstanceConfig(SecureSourceManagerInstanceConfig secureSourceManagerInstanceConfig) {
517+
this.secureSourceManagerInstanceConfig = secureSourceManagerInstanceConfig;
518+
return this;
519+
}
520+
473521
/**
474522
* Output only. A system-assigned unique identifier for the Connection.
475523
* @return value or {@code null} for none

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

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ public final class DeploymentEvent extends com.google.api.client.json.GenericJso
6262
private String deployTime;
6363

6464
/**
65-
* Identifier. The name of the DeploymentEvent. This name is provided by DCI. Format: projects/{pr
66-
* oject}/locations/{location}/insightsConfigs/{insights_config}/deploymentEvents/{uuid}
65+
* Identifier. The name of the DeploymentEvent. This name is provided by Developer Connect
66+
* insights. Format: projects/{project}/locations/{location}/insightsConfigs/{insights_config}/dep
67+
* loymentEvents/{uuid}
6768
* The value may be {@code null}.
6869
*/
6970
@com.google.api.client.util.Key
@@ -168,17 +169,19 @@ public DeploymentEvent setDeployTime(String deployTime) {
168169
}
169170

170171
/**
171-
* Identifier. The name of the DeploymentEvent. This name is provided by DCI. Format: projects/{pr
172-
* oject}/locations/{location}/insightsConfigs/{insights_config}/deploymentEvents/{uuid}
172+
* Identifier. The name of the DeploymentEvent. This name is provided by Developer Connect
173+
* insights. Format: projects/{project}/locations/{location}/insightsConfigs/{insights_config}/dep
174+
* loymentEvents/{uuid}
173175
* @return value or {@code null} for none
174176
*/
175177
public java.lang.String getName() {
176178
return name;
177179
}
178180

179181
/**
180-
* Identifier. The name of the DeploymentEvent. This name is provided by DCI. Format: projects/{pr
181-
* oject}/locations/{location}/insightsConfigs/{insights_config}/deploymentEvents/{uuid}
182+
* Identifier. The name of the DeploymentEvent. This name is provided by Developer Connect
183+
* insights. Format: projects/{project}/locations/{location}/insightsConfigs/{insights_config}/dep
184+
* loymentEvents/{uuid}
182185
* @param name name or {@code null} for none
183186
*/
184187
public DeploymentEvent setName(java.lang.String name) {

0 commit comments

Comments
 (0)