Skip to content

Commit 74df945

Browse files
chore: generate libraries at Fri Feb 20 02:58:54 UTC 2026
1 parent 8746a7c commit 74df945

File tree

102 files changed

+32749
-881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+32749
-881
lines changed

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/DeveloperConnectClient.java

Lines changed: 317 additions & 15 deletions
Large diffs are not rendered by default.

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/DeveloperConnectSettings.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,16 @@ public UnaryCallSettings<DeleteSelfRequest, Operation> deleteSelfSettings() {
340340
return ((DeveloperConnectStubSettings) getStubSettings()).deleteSelfOperationSettings();
341341
}
342342

343+
/** Returns the object with the settings used for calls to startOAuth. */
344+
public UnaryCallSettings<StartOAuthRequest, StartOAuthResponse> startOAuthSettings() {
345+
return ((DeveloperConnectStubSettings) getStubSettings()).startOAuthSettings();
346+
}
347+
348+
/** Returns the object with the settings used for calls to finishOAuth. */
349+
public UnaryCallSettings<FinishOAuthRequest, FinishOAuthResponse> finishOAuthSettings() {
350+
return ((DeveloperConnectStubSettings) getStubSettings()).finishOAuthSettings();
351+
}
352+
343353
/** Returns the object with the settings used for calls to listLocations. */
344354
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
345355
listLocationsSettings() {
@@ -678,6 +688,17 @@ public UnaryCallSettings.Builder<DeleteSelfRequest, Operation> deleteSelfSetting
678688
return getStubSettingsBuilder().deleteSelfOperationSettings();
679689
}
680690

691+
/** Returns the builder for the settings used for calls to startOAuth. */
692+
public UnaryCallSettings.Builder<StartOAuthRequest, StartOAuthResponse> startOAuthSettings() {
693+
return getStubSettingsBuilder().startOAuthSettings();
694+
}
695+
696+
/** Returns the builder for the settings used for calls to finishOAuth. */
697+
public UnaryCallSettings.Builder<FinishOAuthRequest, FinishOAuthResponse>
698+
finishOAuthSettings() {
699+
return getStubSettingsBuilder().finishOAuthSettings();
700+
}
701+
681702
/** Returns the builder for the settings used for calls to listLocations. */
682703
public PagedCallSettings.Builder<
683704
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/InsightsConfigServiceClient.java

Lines changed: 467 additions & 11 deletions
Large diffs are not rendered by default.

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/InsightsConfigServiceSettings.java

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package com.google.cloud.developerconnect.v1;
1818

19+
import static com.google.cloud.developerconnect.v1.InsightsConfigServiceClient.ListDeploymentEventsPagedResponse;
1920
import static com.google.cloud.developerconnect.v1.InsightsConfigServiceClient.ListInsightsConfigsPagedResponse;
2021
import static com.google.cloud.developerconnect.v1.InsightsConfigServiceClient.ListLocationsPagedResponse;
2122

@@ -172,6 +173,21 @@ public UnaryCallSettings<DeleteInsightsConfigRequest, Operation> deleteInsightsC
172173
.deleteInsightsConfigOperationSettings();
173174
}
174175

176+
/** Returns the object with the settings used for calls to getDeploymentEvent. */
177+
public UnaryCallSettings<GetDeploymentEventRequest, DeploymentEvent>
178+
getDeploymentEventSettings() {
179+
return ((InsightsConfigServiceStubSettings) getStubSettings()).getDeploymentEventSettings();
180+
}
181+
182+
/** Returns the object with the settings used for calls to listDeploymentEvents. */
183+
public PagedCallSettings<
184+
ListDeploymentEventsRequest,
185+
ListDeploymentEventsResponse,
186+
ListDeploymentEventsPagedResponse>
187+
listDeploymentEventsSettings() {
188+
return ((InsightsConfigServiceStubSettings) getStubSettings()).listDeploymentEventsSettings();
189+
}
190+
175191
/** Returns the object with the settings used for calls to listLocations. */
176192
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
177193
listLocationsSettings() {
@@ -349,6 +365,21 @@ public Builder applyToAllUnaryMethods(
349365
return getStubSettingsBuilder().deleteInsightsConfigOperationSettings();
350366
}
351367

368+
/** Returns the builder for the settings used for calls to getDeploymentEvent. */
369+
public UnaryCallSettings.Builder<GetDeploymentEventRequest, DeploymentEvent>
370+
getDeploymentEventSettings() {
371+
return getStubSettingsBuilder().getDeploymentEventSettings();
372+
}
373+
374+
/** Returns the builder for the settings used for calls to listDeploymentEvents. */
375+
public PagedCallSettings.Builder<
376+
ListDeploymentEventsRequest,
377+
ListDeploymentEventsResponse,
378+
ListDeploymentEventsPagedResponse>
379+
listDeploymentEventsSettings() {
380+
return getStubSettingsBuilder().listDeploymentEventsSettings();
381+
}
382+
352383
/** Returns the builder for the settings used for calls to listLocations. */
353384
public PagedCallSettings.Builder<
354385
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/gapic_metadata.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@
5555
"FetchSelf": {
5656
"methods": ["fetchSelf", "fetchSelf", "fetchSelf", "fetchSelfCallable"]
5757
},
58+
"FinishOAuth": {
59+
"methods": ["finishOAuth", "finishOAuth", "finishOAuth", "finishOAuthCallable"]
60+
},
5861
"GetAccountConnector": {
5962
"methods": ["getAccountConnector", "getAccountConnector", "getAccountConnector", "getAccountConnectorCallable"]
6063
},
@@ -82,6 +85,9 @@
8285
"ListUsers": {
8386
"methods": ["listUsers", "listUsers", "listUsers", "listUsersPagedCallable", "listUsersCallable"]
8487
},
88+
"StartOAuth": {
89+
"methods": ["startOAuth", "startOAuth", "startOAuth", "startOAuthCallable"]
90+
},
8591
"UpdateAccountConnector": {
8692
"methods": ["updateAccountConnectorAsync", "updateAccountConnectorAsync", "updateAccountConnectorOperationCallable", "updateAccountConnectorCallable"]
8793
},
@@ -103,12 +109,18 @@
103109
"DeleteInsightsConfig": {
104110
"methods": ["deleteInsightsConfigAsync", "deleteInsightsConfigAsync", "deleteInsightsConfigAsync", "deleteInsightsConfigOperationCallable", "deleteInsightsConfigCallable"]
105111
},
112+
"GetDeploymentEvent": {
113+
"methods": ["getDeploymentEvent", "getDeploymentEvent", "getDeploymentEvent", "getDeploymentEventCallable"]
114+
},
106115
"GetInsightsConfig": {
107116
"methods": ["getInsightsConfig", "getInsightsConfig", "getInsightsConfig", "getInsightsConfigCallable"]
108117
},
109118
"GetLocation": {
110119
"methods": ["getLocation", "getLocationCallable"]
111120
},
121+
"ListDeploymentEvents": {
122+
"methods": ["listDeploymentEvents", "listDeploymentEvents", "listDeploymentEvents", "listDeploymentEventsPagedCallable", "listDeploymentEventsCallable"]
123+
},
112124
"ListInsightsConfigs": {
113125
"methods": ["listInsightsConfigs", "listInsightsConfigs", "listInsightsConfigs", "listInsightsConfigsPagedCallable", "listInsightsConfigsCallable"]
114126
},

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
* <p>Service Description: Creates and manages InsightsConfigs.
4343
*
4444
* <p>The InsightsConfig resource is the core configuration object to capture events from your
45-
* Software Development Lifecycle. It acts as the central hub for managing how Developer connect
45+
* Software Development Lifecycle. It acts as the central hub for managing how Developer Connect
4646
* understands your application, its runtime environments, and the artifacts deployed within them. A
4747
* user can create an InsightsConfig, list previously-requested InsightsConfigs or get
4848
* InsightsConfigs by their ID to determine the status of the InsightsConfig.

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/stub/DeveloperConnectStub.java

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
import com.google.cloud.developerconnect.v1.FetchReadWriteTokenRequest;
5151
import com.google.cloud.developerconnect.v1.FetchReadWriteTokenResponse;
5252
import com.google.cloud.developerconnect.v1.FetchSelfRequest;
53+
import com.google.cloud.developerconnect.v1.FinishOAuthRequest;
54+
import com.google.cloud.developerconnect.v1.FinishOAuthResponse;
5355
import com.google.cloud.developerconnect.v1.GetAccountConnectorRequest;
5456
import com.google.cloud.developerconnect.v1.GetConnectionRequest;
5557
import com.google.cloud.developerconnect.v1.GetGitRepositoryLinkRequest;
@@ -63,6 +65,8 @@
6365
import com.google.cloud.developerconnect.v1.ListUsersRequest;
6466
import com.google.cloud.developerconnect.v1.ListUsersResponse;
6567
import com.google.cloud.developerconnect.v1.OperationMetadata;
68+
import com.google.cloud.developerconnect.v1.StartOAuthRequest;
69+
import com.google.cloud.developerconnect.v1.StartOAuthResponse;
6670
import com.google.cloud.developerconnect.v1.UpdateAccountConnectorRequest;
6771
import com.google.cloud.developerconnect.v1.UpdateConnectionRequest;
6872
import com.google.cloud.developerconnect.v1.User;
@@ -285,6 +289,14 @@ public UnaryCallable<DeleteSelfRequest, Operation> deleteSelfCallable() {
285289
throw new UnsupportedOperationException("Not implemented: deleteSelfCallable()");
286290
}
287291

292+
public UnaryCallable<StartOAuthRequest, StartOAuthResponse> startOAuthCallable() {
293+
throw new UnsupportedOperationException("Not implemented: startOAuthCallable()");
294+
}
295+
296+
public UnaryCallable<FinishOAuthRequest, FinishOAuthResponse> finishOAuthCallable() {
297+
throw new UnsupportedOperationException("Not implemented: finishOAuthCallable()");
298+
}
299+
288300
public UnaryCallable<ListLocationsRequest, ListLocationsPagedResponse>
289301
listLocationsPagedCallable() {
290302
throw new UnsupportedOperationException("Not implemented: listLocationsPagedCallable()");

java-developerconnect/google-cloud-developerconnect/src/main/java/com/google/cloud/developerconnect/v1/stub/DeveloperConnectStubSettings.java

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@
7777
import com.google.cloud.developerconnect.v1.FetchReadWriteTokenRequest;
7878
import com.google.cloud.developerconnect.v1.FetchReadWriteTokenResponse;
7979
import com.google.cloud.developerconnect.v1.FetchSelfRequest;
80+
import com.google.cloud.developerconnect.v1.FinishOAuthRequest;
81+
import com.google.cloud.developerconnect.v1.FinishOAuthResponse;
8082
import com.google.cloud.developerconnect.v1.GetAccountConnectorRequest;
8183
import com.google.cloud.developerconnect.v1.GetConnectionRequest;
8284
import com.google.cloud.developerconnect.v1.GetGitRepositoryLinkRequest;
@@ -91,6 +93,8 @@
9193
import com.google.cloud.developerconnect.v1.ListUsersRequest;
9294
import com.google.cloud.developerconnect.v1.ListUsersResponse;
9395
import com.google.cloud.developerconnect.v1.OperationMetadata;
96+
import com.google.cloud.developerconnect.v1.StartOAuthRequest;
97+
import com.google.cloud.developerconnect.v1.StartOAuthResponse;
9498
import com.google.cloud.developerconnect.v1.UpdateAccountConnectorRequest;
9599
import com.google.cloud.developerconnect.v1.UpdateConnectionRequest;
96100
import com.google.cloud.developerconnect.v1.User;
@@ -267,6 +271,8 @@ public class DeveloperConnectStubSettings extends StubSettings<DeveloperConnectS
267271
private final UnaryCallSettings<DeleteSelfRequest, Operation> deleteSelfSettings;
268272
private final OperationCallSettings<DeleteSelfRequest, Empty, OperationMetadata>
269273
deleteSelfOperationSettings;
274+
private final UnaryCallSettings<StartOAuthRequest, StartOAuthResponse> startOAuthSettings;
275+
private final UnaryCallSettings<FinishOAuthRequest, FinishOAuthResponse> finishOAuthSettings;
270276
private final PagedCallSettings<
271277
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
272278
listLocationsSettings;
@@ -895,6 +901,16 @@ public UnaryCallSettings<DeleteSelfRequest, Operation> deleteSelfSettings() {
895901
return deleteSelfOperationSettings;
896902
}
897903

904+
/** Returns the object with the settings used for calls to startOAuth. */
905+
public UnaryCallSettings<StartOAuthRequest, StartOAuthResponse> startOAuthSettings() {
906+
return startOAuthSettings;
907+
}
908+
909+
/** Returns the object with the settings used for calls to finishOAuth. */
910+
public UnaryCallSettings<FinishOAuthRequest, FinishOAuthResponse> finishOAuthSettings() {
911+
return finishOAuthSettings;
912+
}
913+
898914
/** Returns the object with the settings used for calls to listLocations. */
899915
public PagedCallSettings<ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
900916
listLocationsSettings() {
@@ -1057,6 +1073,8 @@ protected DeveloperConnectStubSettings(Builder settingsBuilder) throws IOExcepti
10571073
fetchSelfSettings = settingsBuilder.fetchSelfSettings().build();
10581074
deleteSelfSettings = settingsBuilder.deleteSelfSettings().build();
10591075
deleteSelfOperationSettings = settingsBuilder.deleteSelfOperationSettings().build();
1076+
startOAuthSettings = settingsBuilder.startOAuthSettings().build();
1077+
finishOAuthSettings = settingsBuilder.finishOAuthSettings().build();
10601078
listLocationsSettings = settingsBuilder.listLocationsSettings().build();
10611079
getLocationSettings = settingsBuilder.getLocationSettings().build();
10621080
}
@@ -1148,6 +1166,10 @@ public static class Builder extends StubSettings.Builder<DeveloperConnectStubSet
11481166
private final UnaryCallSettings.Builder<DeleteSelfRequest, Operation> deleteSelfSettings;
11491167
private final OperationCallSettings.Builder<DeleteSelfRequest, Empty, OperationMetadata>
11501168
deleteSelfOperationSettings;
1169+
private final UnaryCallSettings.Builder<StartOAuthRequest, StartOAuthResponse>
1170+
startOAuthSettings;
1171+
private final UnaryCallSettings.Builder<FinishOAuthRequest, FinishOAuthResponse>
1172+
finishOAuthSettings;
11511173
private final PagedCallSettings.Builder<
11521174
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>
11531175
listLocationsSettings;
@@ -1230,6 +1252,8 @@ protected Builder(ClientContext clientContext) {
12301252
fetchSelfSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
12311253
deleteSelfSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
12321254
deleteSelfOperationSettings = OperationCallSettings.newBuilder();
1255+
startOAuthSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
1256+
finishOAuthSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
12331257
listLocationsSettings = PagedCallSettings.newBuilder(LIST_LOCATIONS_PAGE_STR_FACT);
12341258
getLocationSettings = UnaryCallSettings.newUnaryCallSettingsBuilder();
12351259

@@ -1259,6 +1283,8 @@ protected Builder(ClientContext clientContext) {
12591283
deleteUserSettings,
12601284
fetchSelfSettings,
12611285
deleteSelfSettings,
1286+
startOAuthSettings,
1287+
finishOAuthSettings,
12621288
listLocationsSettings,
12631289
getLocationSettings);
12641290
initDefaults(this);
@@ -1307,6 +1333,8 @@ protected Builder(DeveloperConnectStubSettings settings) {
13071333
fetchSelfSettings = settings.fetchSelfSettings.toBuilder();
13081334
deleteSelfSettings = settings.deleteSelfSettings.toBuilder();
13091335
deleteSelfOperationSettings = settings.deleteSelfOperationSettings.toBuilder();
1336+
startOAuthSettings = settings.startOAuthSettings.toBuilder();
1337+
finishOAuthSettings = settings.finishOAuthSettings.toBuilder();
13101338
listLocationsSettings = settings.listLocationsSettings.toBuilder();
13111339
getLocationSettings = settings.getLocationSettings.toBuilder();
13121340

@@ -1336,6 +1364,8 @@ protected Builder(DeveloperConnectStubSettings settings) {
13361364
deleteUserSettings,
13371365
fetchSelfSettings,
13381366
deleteSelfSettings,
1367+
startOAuthSettings,
1368+
finishOAuthSettings,
13391369
listLocationsSettings,
13401370
getLocationSettings);
13411371
}
@@ -1485,6 +1515,16 @@ private static Builder initDefaults(Builder builder) {
14851515
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes"))
14861516
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params"));
14871517

1518+
builder
1519+
.startOAuthSettings()
1520+
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes"))
1521+
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params"));
1522+
1523+
builder
1524+
.finishOAuthSettings()
1525+
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes"))
1526+
.setRetrySettings(RETRY_PARAM_DEFINITIONS.get("no_retry_params"));
1527+
14881528
builder
14891529
.listLocationsSettings()
14901530
.setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("no_retry_codes"))
@@ -1966,6 +2006,17 @@ public UnaryCallSettings.Builder<DeleteSelfRequest, Operation> deleteSelfSetting
19662006
return deleteSelfOperationSettings;
19672007
}
19682008

2009+
/** Returns the builder for the settings used for calls to startOAuth. */
2010+
public UnaryCallSettings.Builder<StartOAuthRequest, StartOAuthResponse> startOAuthSettings() {
2011+
return startOAuthSettings;
2012+
}
2013+
2014+
/** Returns the builder for the settings used for calls to finishOAuth. */
2015+
public UnaryCallSettings.Builder<FinishOAuthRequest, FinishOAuthResponse>
2016+
finishOAuthSettings() {
2017+
return finishOAuthSettings;
2018+
}
2019+
19692020
/** Returns the builder for the settings used for calls to listLocations. */
19702021
public PagedCallSettings.Builder<
19712022
ListLocationsRequest, ListLocationsResponse, ListLocationsPagedResponse>

0 commit comments

Comments
 (0)