Skip to content

Commit 6e37a56

Browse files
1 parent bc076c8 commit 6e37a56

File tree

9 files changed

+88
-64
lines changed

9 files changed

+88
-64
lines changed

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

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1ConfigVariable.java

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -31,21 +31,21 @@
3131
public final class GoogleCloudConnectorsV1ConfigVariable extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* Value is a bool.
34+
* Optional. Value is a bool.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
3838
private java.lang.Boolean boolValue;
3939

4040
/**
41-
* Value is a Encryption Key.
41+
* Optional. Value is a Encryption Key.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
4545
private GoogleCloudConnectorsV1EncryptionKey encryptionKeyValue;
4646

4747
/**
48-
* Value is an integer
48+
* Optional. Value is an integer
4949
* The value may be {@code null}.
5050
*/
5151
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
@@ -59,29 +59,29 @@ public final class GoogleCloudConnectorsV1ConfigVariable extends com.google.api.
5959
private java.lang.String key;
6060

6161
/**
62-
* Value is a secret.
62+
* Optional. Value is a secret.
6363
* The value may be {@code null}.
6464
*/
6565
@com.google.api.client.util.Key
6666
private GoogleCloudConnectorsV1Secret secretValue;
6767

6868
/**
69-
* Value is a string.
69+
* Optional. Value is a string.
7070
* The value may be {@code null}.
7171
*/
7272
@com.google.api.client.util.Key
7373
private java.lang.String stringValue;
7474

7575
/**
76-
* Value is a bool.
76+
* Optional. Value is a bool.
7777
* @return value or {@code null} for none
7878
*/
7979
public java.lang.Boolean getBoolValue() {
8080
return boolValue;
8181
}
8282

8383
/**
84-
* Value is a bool.
84+
* Optional. Value is a bool.
8585
* @param boolValue boolValue or {@code null} for none
8686
*/
8787
public GoogleCloudConnectorsV1ConfigVariable setBoolValue(java.lang.Boolean boolValue) {
@@ -90,15 +90,15 @@ public GoogleCloudConnectorsV1ConfigVariable setBoolValue(java.lang.Boolean bool
9090
}
9191

9292
/**
93-
* Value is a Encryption Key.
93+
* Optional. Value is a Encryption Key.
9494
* @return value or {@code null} for none
9595
*/
9696
public GoogleCloudConnectorsV1EncryptionKey getEncryptionKeyValue() {
9797
return encryptionKeyValue;
9898
}
9999

100100
/**
101-
* Value is a Encryption Key.
101+
* Optional. Value is a Encryption Key.
102102
* @param encryptionKeyValue encryptionKeyValue or {@code null} for none
103103
*/
104104
public GoogleCloudConnectorsV1ConfigVariable setEncryptionKeyValue(GoogleCloudConnectorsV1EncryptionKey encryptionKeyValue) {
@@ -107,15 +107,15 @@ public GoogleCloudConnectorsV1ConfigVariable setEncryptionKeyValue(GoogleCloudCo
107107
}
108108

109109
/**
110-
* Value is an integer
110+
* Optional. Value is an integer
111111
* @return value or {@code null} for none
112112
*/
113113
public java.lang.Long getIntValue() {
114114
return intValue;
115115
}
116116

117117
/**
118-
* Value is an integer
118+
* Optional. Value is an integer
119119
* @param intValue intValue or {@code null} for none
120120
*/
121121
public GoogleCloudConnectorsV1ConfigVariable setIntValue(java.lang.Long intValue) {
@@ -141,15 +141,15 @@ public GoogleCloudConnectorsV1ConfigVariable setKey(java.lang.String key) {
141141
}
142142

143143
/**
144-
* Value is a secret.
144+
* Optional. Value is a secret.
145145
* @return value or {@code null} for none
146146
*/
147147
public GoogleCloudConnectorsV1Secret getSecretValue() {
148148
return secretValue;
149149
}
150150

151151
/**
152-
* Value is a secret.
152+
* Optional. Value is a secret.
153153
* @param secretValue secretValue or {@code null} for none
154154
*/
155155
public GoogleCloudConnectorsV1ConfigVariable setSecretValue(GoogleCloudConnectorsV1Secret secretValue) {
@@ -158,15 +158,15 @@ public GoogleCloudConnectorsV1ConfigVariable setSecretValue(GoogleCloudConnector
158158
}
159159

160160
/**
161-
* Value is a string.
161+
* Optional. Value is a string.
162162
* @return value or {@code null} for none
163163
*/
164164
public java.lang.String getStringValue() {
165165
return stringValue;
166166
}
167167

168168
/**
169-
* Value is a string.
169+
* Optional. Value is a string.
170170
* @param stringValue stringValue or {@code null} for none
171171
*/
172172
public GoogleCloudConnectorsV1ConfigVariable setStringValue(java.lang.String stringValue) {

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1Destination.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public final class GoogleCloudConnectorsV1Destination extends com.google.api.cli
3838
private java.lang.String host;
3939

4040
/**
41-
* The port is the target port number that is accepted by the destination.
41+
* Optional. The port is the target port number that is accepted by the destination.
4242
* The value may be {@code null}.
4343
*/
4444
@com.google.api.client.util.Key
@@ -69,15 +69,15 @@ public GoogleCloudConnectorsV1Destination setHost(java.lang.String host) {
6969
}
7070

7171
/**
72-
* The port is the target port number that is accepted by the destination.
72+
* Optional. The port is the target port number that is accepted by the destination.
7373
* @return value or {@code null} for none
7474
*/
7575
public java.lang.Integer getPort() {
7676
return port;
7777
}
7878

7979
/**
80-
* The port is the target port number that is accepted by the destination.
80+
* Optional. The port is the target port number that is accepted by the destination.
8181
* @param port port or {@code null} for none
8282
*/
8383
public GoogleCloudConnectorsV1Destination setPort(java.lang.Integer port) {

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1DestinationConfig.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
public final class GoogleCloudConnectorsV1DestinationConfig extends com.google.api.client.json.GenericJson {
3232

3333
/**
34-
* The destinations for the key.
34+
* Optional. The destinations for the key.
3535
* The value may be {@code null}.
3636
*/
3737
@com.google.api.client.util.Key
@@ -44,22 +44,22 @@ public final class GoogleCloudConnectorsV1DestinationConfig extends com.google.a
4444
}
4545

4646
/**
47-
* The key is the destination identifier that is supported by the Connector.
47+
* Optional. The key is the destination identifier that is supported by the Connector.
4848
* The value may be {@code null}.
4949
*/
5050
@com.google.api.client.util.Key
5151
private java.lang.String key;
5252

5353
/**
54-
* The destinations for the key.
54+
* Optional. The destinations for the key.
5555
* @return value or {@code null} for none
5656
*/
5757
public java.util.List<GoogleCloudConnectorsV1Destination> getDestinations() {
5858
return destinations;
5959
}
6060

6161
/**
62-
* The destinations for the key.
62+
* Optional. The destinations for the key.
6363
* @param destinations destinations or {@code null} for none
6464
*/
6565
public GoogleCloudConnectorsV1DestinationConfig setDestinations(java.util.List<GoogleCloudConnectorsV1Destination> destinations) {
@@ -68,15 +68,15 @@ public GoogleCloudConnectorsV1DestinationConfig setDestinations(java.util.List<G
6868
}
6969

7070
/**
71-
* The key is the destination identifier that is supported by the Connector.
71+
* Optional. The key is the destination identifier that is supported by the Connector.
7272
* @return value or {@code null} for none
7373
*/
7474
public java.lang.String getKey() {
7575
return key;
7676
}
7777

7878
/**
79-
* The key is the destination identifier that is supported by the Connector.
79+
* Optional. The key is the destination identifier that is supported by the Connector.
8080
* @param key key or {@code null} for none
8181
*/
8282
public GoogleCloudConnectorsV1DestinationConfig setKey(java.lang.String key) {

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1EncryptionKey.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public final class GoogleCloudConnectorsV1EncryptionKey extends com.google.api.c
3939
private java.lang.String kmsKeyName;
4040

4141
/**
42-
* Type.
42+
* Optional. Specifies the type of the encryption key.
4343
* The value may be {@code null}.
4444
*/
4545
@com.google.api.client.util.Key
@@ -65,15 +65,15 @@ public GoogleCloudConnectorsV1EncryptionKey setKmsKeyName(java.lang.String kmsKe
6565
}
6666

6767
/**
68-
* Type.
68+
* Optional. Specifies the type of the encryption key.
6969
* @return value or {@code null} for none
7070
*/
7171
public java.lang.String getType() {
7272
return type;
7373
}
7474

7575
/**
76-
* Type.
76+
* Optional. Specifies the type of the encryption key.
7777
* @param type type or {@code null} for none
7878
*/
7979
public GoogleCloudConnectorsV1EncryptionKey setType(java.lang.String type) {

clients/google-api-services-integrations/v1/2.0.0/com/google/api/services/integrations/v1/model/GoogleCloudConnectorsV1EventingConfig.java

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.integrations.v1.model;
1818

1919
/**
20-
* Eventing Configuration of a connection next: 19
20+
* Eventing Configuration of a connection next: 20
2121
*
2222
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2323
* transmitted over HTTP when working with the Application Integration API. For a detailed
@@ -43,6 +43,13 @@ public final class GoogleCloudConnectorsV1EventingConfig extends com.google.api.
4343
com.google.api.client.util.Data.nullOf(GoogleCloudConnectorsV1ConfigVariable.class);
4444
}
4545

46+
/**
47+
* Optional. List of allowed event types for the connection.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private java.util.List<java.lang.String> allowedEventTypes;
52+
4653
/**
4754
* Optional. Auth details for the webhook adapter.
4855
* The value may be {@code null}.
@@ -72,8 +79,8 @@ public final class GoogleCloudConnectorsV1EventingConfig extends com.google.api.
7279
private java.lang.Boolean enrichmentEnabled;
7380

7481
/**
75-
* Optional. Ingress endpoint of the event listener. This is used only when private connectivity
76-
* is enabled.
82+
* Output only. Ingress endpoint of the event listener. This is used only when private
83+
* connectivity is enabled.
7784
* The value may be {@code null}.
7885
*/
7986
@com.google.api.client.util.Key
@@ -139,6 +146,23 @@ public GoogleCloudConnectorsV1EventingConfig setAdditionalVariables(java.util.Li
139146
return this;
140147
}
141148

149+
/**
150+
* Optional. List of allowed event types for the connection.
151+
* @return value or {@code null} for none
152+
*/
153+
public java.util.List<java.lang.String> getAllowedEventTypes() {
154+
return allowedEventTypes;
155+
}
156+
157+
/**
158+
* Optional. List of allowed event types for the connection.
159+
* @param allowedEventTypes allowedEventTypes or {@code null} for none
160+
*/
161+
public GoogleCloudConnectorsV1EventingConfig setAllowedEventTypes(java.util.List<java.lang.String> allowedEventTypes) {
162+
this.allowedEventTypes = allowedEventTypes;
163+
return this;
164+
}
165+
142166
/**
143167
* Optional. Auth details for the webhook adapter.
144168
* @return value or {@code null} for none
@@ -208,17 +232,17 @@ public GoogleCloudConnectorsV1EventingConfig setEnrichmentEnabled(java.lang.Bool
208232
}
209233

210234
/**
211-
* Optional. Ingress endpoint of the event listener. This is used only when private connectivity
212-
* is enabled.
235+
* Output only. Ingress endpoint of the event listener. This is used only when private
236+
* connectivity is enabled.
213237
* @return value or {@code null} for none
214238
*/
215239
public java.lang.String getEventsListenerIngressEndpoint() {
216240
return eventsListenerIngressEndpoint;
217241
}
218242

219243
/**
220-
* Optional. Ingress endpoint of the event listener. This is used only when private connectivity
221-
* is enabled.
244+
* Output only. Ingress endpoint of the event listener. This is used only when private
245+
* connectivity is enabled.
222246
* @param eventsListenerIngressEndpoint eventsListenerIngressEndpoint or {@code null} for none
223247
*/
224248
public GoogleCloudConnectorsV1EventingConfig setEventsListenerIngressEndpoint(java.lang.String eventsListenerIngressEndpoint) {

0 commit comments

Comments
 (0)