|
17 | 17 | package com.google.api.services.connectors.v1.model; |
18 | 18 |
|
19 | 19 | /** |
20 | | - * Eventing Configuration of a connection next: 18 |
| 20 | + * Eventing Configuration of a connection next: 19 |
21 | 21 | * |
22 | 22 | * <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is |
23 | 23 | * transmitted over HTTP when working with the Connectors API. For a detailed explanation see: |
@@ -85,6 +85,14 @@ public final class EventingConfig extends com.google.api.client.json.GenericJson |
85 | 85 | @com.google.api.client.util.Key |
86 | 86 | private AuthConfig listenerAuthConfig; |
87 | 87 |
|
| 88 | + /** |
| 89 | + * Optional. List of projects to be allowlisted for the service attachment created in the tenant |
| 90 | + * project for eventing ingress. |
| 91 | + * The value may be {@code null}. |
| 92 | + */ |
| 93 | + @com.google.api.client.util.Key |
| 94 | + private java.util.List<java.lang.String> privateConnectivityAllowlistedProjects; |
| 95 | + |
88 | 96 | /** |
89 | 97 | * Optional. Private Connectivity Enabled. |
90 | 98 | * The value may be {@code null}. |
@@ -234,6 +242,25 @@ public EventingConfig setListenerAuthConfig(AuthConfig listenerAuthConfig) { |
234 | 242 | return this; |
235 | 243 | } |
236 | 244 |
|
| 245 | + /** |
| 246 | + * Optional. List of projects to be allowlisted for the service attachment created in the tenant |
| 247 | + * project for eventing ingress. |
| 248 | + * @return value or {@code null} for none |
| 249 | + */ |
| 250 | + public java.util.List<java.lang.String> getPrivateConnectivityAllowlistedProjects() { |
| 251 | + return privateConnectivityAllowlistedProjects; |
| 252 | + } |
| 253 | + |
| 254 | + /** |
| 255 | + * Optional. List of projects to be allowlisted for the service attachment created in the tenant |
| 256 | + * project for eventing ingress. |
| 257 | + * @param privateConnectivityAllowlistedProjects privateConnectivityAllowlistedProjects or {@code null} for none |
| 258 | + */ |
| 259 | + public EventingConfig setPrivateConnectivityAllowlistedProjects(java.util.List<java.lang.String> privateConnectivityAllowlistedProjects) { |
| 260 | + this.privateConnectivityAllowlistedProjects = privateConnectivityAllowlistedProjects; |
| 261 | + return this; |
| 262 | + } |
| 263 | + |
237 | 264 | /** |
238 | 265 | * Optional. Private Connectivity Enabled. |
239 | 266 | * @return value or {@code null} for none |
|
0 commit comments