Skip to content

Commit 4fba3a7

Browse files
1 parent e34045e commit 4fba3a7

28 files changed

+3464
-142
lines changed

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

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/Connectors.java

Lines changed: 1032 additions & 128 deletions
Large diffs are not rendered by default.

clients/google-api-services-connectors/v1/2.0.0/com/google/api/services/connectors/v1/model/ConnectorInfraConfig.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,13 @@ public final class ConnectorInfraConfig extends com.google.api.client.json.Gener
100100
@com.google.api.client.util.Key
101101
private java.lang.Boolean provisionCloudSpanner;
102102

103+
/**
104+
* Indicate whether memstore is required for connector job.
105+
* The value may be {@code null}.
106+
*/
107+
@com.google.api.client.util.Key
108+
private java.lang.Boolean provisionMemstore;
109+
103110
/**
104111
* Max QPS supported by the connector version before throttling of requests.
105112
* The value may be {@code null}.
@@ -298,6 +305,23 @@ public ConnectorInfraConfig setProvisionCloudSpanner(java.lang.Boolean provision
298305
return this;
299306
}
300307

308+
/**
309+
* Indicate whether memstore is required for connector job.
310+
* @return value or {@code null} for none
311+
*/
312+
public java.lang.Boolean getProvisionMemstore() {
313+
return provisionMemstore;
314+
}
315+
316+
/**
317+
* Indicate whether memstore is required for connector job.
318+
* @param provisionMemstore provisionMemstore or {@code null} for none
319+
*/
320+
public ConnectorInfraConfig setProvisionMemstore(java.lang.Boolean provisionMemstore) {
321+
this.provisionMemstore = provisionMemstore;
322+
return this;
323+
}
324+
301325
/**
302326
* Max QPS supported by the connector version before throttling of requests.
303327
* @return value or {@code null} for none
Lines changed: 315 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,315 @@
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.connectors.v1.model;
18+
19+
/**
20+
* AuthConfig defines details of a authentication type.
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 Connectors 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 EndUserAuthentication extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. Config variables for the EndUserAuthentication.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<EndUserAuthenticationConfigVariable> configVariables;
38+
39+
/**
40+
* Output only. Created time.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private String createTime;
45+
46+
/**
47+
* Optional. Destination configs for the EndUserAuthentication.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<DestinationConfig> destinationConfigs;
52+
53+
static {
54+
// hack to force ProGuard to consider DestinationConfig used, since otherwise it would be stripped out
55+
// see https://github.com/google/google-api-java-client/issues/543
56+
com.google.api.client.util.Data.nullOf(DestinationConfig.class);
57+
}
58+
59+
/**
60+
* Optional. The EndUserAuthenticationConfig for the EndUserAuthentication.
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private EndUserAuthenticationConfig endUserAuthenticationConfig;
65+
66+
/**
67+
* Optional. Labels for the EndUserAuthentication.
68+
* The value may be {@code null}.
69+
*/
70+
@com.google.api.client.util.Key
71+
private java.util.List<java.lang.String> labels;
72+
73+
/**
74+
* Required. Identifier. Resource name of the EndUserAuthentication. Format: projects/{project}/lo
75+
* cations/{location}/connections/{connection}/endUserAuthentications/{end_user_authentication}
76+
* The value may be {@code null}.
77+
*/
78+
@com.google.api.client.util.Key
79+
private java.lang.String name;
80+
81+
/**
82+
* Optional. The destination to hit when we receive an event
83+
* The value may be {@code null}.
84+
*/
85+
@com.google.api.client.util.Key
86+
private EndUserAuthenticationNotifyEndpointDestination notifyEndpointDestination;
87+
88+
/**
89+
* Optional. Status of the EndUserAuthentication.
90+
* The value may be {@code null}.
91+
*/
92+
@com.google.api.client.util.Key
93+
private EndUserAuthenticationEndUserAuthenticationStatus status;
94+
95+
/**
96+
* Output only. Updated time.
97+
* The value may be {@code null}.
98+
*/
99+
@com.google.api.client.util.Key
100+
private String updateTime;
101+
102+
/**
103+
* Optional. Deprecated: The email of the user.
104+
* The value may be {@code null}.
105+
*/
106+
@com.google.api.client.util.Key
107+
private java.lang.String userEmail;
108+
109+
/**
110+
* Optional. The user id of the user.
111+
* The value may be {@code null}.
112+
*/
113+
@com.google.api.client.util.Key
114+
private java.lang.String userId;
115+
116+
/**
117+
* Optional. Config variables for the EndUserAuthentication.
118+
* @return value or {@code null} for none
119+
*/
120+
public java.util.List<EndUserAuthenticationConfigVariable> getConfigVariables() {
121+
return configVariables;
122+
}
123+
124+
/**
125+
* Optional. Config variables for the EndUserAuthentication.
126+
* @param configVariables configVariables or {@code null} for none
127+
*/
128+
public EndUserAuthentication setConfigVariables(java.util.List<EndUserAuthenticationConfigVariable> configVariables) {
129+
this.configVariables = configVariables;
130+
return this;
131+
}
132+
133+
/**
134+
* Output only. Created time.
135+
* @return value or {@code null} for none
136+
*/
137+
public String getCreateTime() {
138+
return createTime;
139+
}
140+
141+
/**
142+
* Output only. Created time.
143+
* @param createTime createTime or {@code null} for none
144+
*/
145+
public EndUserAuthentication setCreateTime(String createTime) {
146+
this.createTime = createTime;
147+
return this;
148+
}
149+
150+
/**
151+
* Optional. Destination configs for the EndUserAuthentication.
152+
* @return value or {@code null} for none
153+
*/
154+
public java.util.List<DestinationConfig> getDestinationConfigs() {
155+
return destinationConfigs;
156+
}
157+
158+
/**
159+
* Optional. Destination configs for the EndUserAuthentication.
160+
* @param destinationConfigs destinationConfigs or {@code null} for none
161+
*/
162+
public EndUserAuthentication setDestinationConfigs(java.util.List<DestinationConfig> destinationConfigs) {
163+
this.destinationConfigs = destinationConfigs;
164+
return this;
165+
}
166+
167+
/**
168+
* Optional. The EndUserAuthenticationConfig for the EndUserAuthentication.
169+
* @return value or {@code null} for none
170+
*/
171+
public EndUserAuthenticationConfig getEndUserAuthenticationConfig() {
172+
return endUserAuthenticationConfig;
173+
}
174+
175+
/**
176+
* Optional. The EndUserAuthenticationConfig for the EndUserAuthentication.
177+
* @param endUserAuthenticationConfig endUserAuthenticationConfig or {@code null} for none
178+
*/
179+
public EndUserAuthentication setEndUserAuthenticationConfig(EndUserAuthenticationConfig endUserAuthenticationConfig) {
180+
this.endUserAuthenticationConfig = endUserAuthenticationConfig;
181+
return this;
182+
}
183+
184+
/**
185+
* Optional. Labels for the EndUserAuthentication.
186+
* @return value or {@code null} for none
187+
*/
188+
public java.util.List<java.lang.String> getLabels() {
189+
return labels;
190+
}
191+
192+
/**
193+
* Optional. Labels for the EndUserAuthentication.
194+
* @param labels labels or {@code null} for none
195+
*/
196+
public EndUserAuthentication setLabels(java.util.List<java.lang.String> labels) {
197+
this.labels = labels;
198+
return this;
199+
}
200+
201+
/**
202+
* Required. Identifier. Resource name of the EndUserAuthentication. Format: projects/{project}/lo
203+
* cations/{location}/connections/{connection}/endUserAuthentications/{end_user_authentication}
204+
* @return value or {@code null} for none
205+
*/
206+
public java.lang.String getName() {
207+
return name;
208+
}
209+
210+
/**
211+
* Required. Identifier. Resource name of the EndUserAuthentication. Format: projects/{project}/lo
212+
* cations/{location}/connections/{connection}/endUserAuthentications/{end_user_authentication}
213+
* @param name name or {@code null} for none
214+
*/
215+
public EndUserAuthentication setName(java.lang.String name) {
216+
this.name = name;
217+
return this;
218+
}
219+
220+
/**
221+
* Optional. The destination to hit when we receive an event
222+
* @return value or {@code null} for none
223+
*/
224+
public EndUserAuthenticationNotifyEndpointDestination getNotifyEndpointDestination() {
225+
return notifyEndpointDestination;
226+
}
227+
228+
/**
229+
* Optional. The destination to hit when we receive an event
230+
* @param notifyEndpointDestination notifyEndpointDestination or {@code null} for none
231+
*/
232+
public EndUserAuthentication setNotifyEndpointDestination(EndUserAuthenticationNotifyEndpointDestination notifyEndpointDestination) {
233+
this.notifyEndpointDestination = notifyEndpointDestination;
234+
return this;
235+
}
236+
237+
/**
238+
* Optional. Status of the EndUserAuthentication.
239+
* @return value or {@code null} for none
240+
*/
241+
public EndUserAuthenticationEndUserAuthenticationStatus getStatus() {
242+
return status;
243+
}
244+
245+
/**
246+
* Optional. Status of the EndUserAuthentication.
247+
* @param status status or {@code null} for none
248+
*/
249+
public EndUserAuthentication setStatus(EndUserAuthenticationEndUserAuthenticationStatus status) {
250+
this.status = status;
251+
return this;
252+
}
253+
254+
/**
255+
* Output only. Updated time.
256+
* @return value or {@code null} for none
257+
*/
258+
public String getUpdateTime() {
259+
return updateTime;
260+
}
261+
262+
/**
263+
* Output only. Updated time.
264+
* @param updateTime updateTime or {@code null} for none
265+
*/
266+
public EndUserAuthentication setUpdateTime(String updateTime) {
267+
this.updateTime = updateTime;
268+
return this;
269+
}
270+
271+
/**
272+
* Optional. Deprecated: The email of the user.
273+
* @return value or {@code null} for none
274+
*/
275+
public java.lang.String getUserEmail() {
276+
return userEmail;
277+
}
278+
279+
/**
280+
* Optional. Deprecated: The email of the user.
281+
* @param userEmail userEmail or {@code null} for none
282+
*/
283+
public EndUserAuthentication setUserEmail(java.lang.String userEmail) {
284+
this.userEmail = userEmail;
285+
return this;
286+
}
287+
288+
/**
289+
* Optional. The user id of the user.
290+
* @return value or {@code null} for none
291+
*/
292+
public java.lang.String getUserId() {
293+
return userId;
294+
}
295+
296+
/**
297+
* Optional. The user id of the user.
298+
* @param userId userId or {@code null} for none
299+
*/
300+
public EndUserAuthentication setUserId(java.lang.String userId) {
301+
this.userId = userId;
302+
return this;
303+
}
304+
305+
@Override
306+
public EndUserAuthentication set(String fieldName, Object value) {
307+
return (EndUserAuthentication) super.set(fieldName, value);
308+
}
309+
310+
@Override
311+
public EndUserAuthentication clone() {
312+
return (EndUserAuthentication) super.clone();
313+
}
314+
315+
}

0 commit comments

Comments
 (0)