@@ -69,21 +69,26 @@ export interface Source {
6969 /**
7070 * This source is global.
7171 *
72- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
72+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'vpcId' could be set.
7373 */
7474 zonal ?: string
7575 /**
7676 * This source is specific.
7777 *
78- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
78+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'vpcId' could be set.
7979 */
8080 privateNetworkId ?: string
8181 /**
8282 * This source is specific.
8383 *
84- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
84+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'vpcId' could be set.
8585 */
8686 subnetId ?: string
87+ /**
88+ *
89+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'vpcId' could be set.
90+ */
91+ vpcId ?: string
8792}
8893
8994export interface CustomResource {
@@ -244,19 +249,19 @@ export type ListIPsRequest = {
244249 /**
245250 * Zone to filter for. Only IPs that are zonal, and in this zone, will be returned.
246251 *
247- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
252+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'sourceVpcId' could be set.
248253 */
249254 zonal ?: string
250255 /**
251256 * Only IPs that are private, and in this Private Network, will be returned.
252257 *
253- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
258+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'sourceVpcId' could be set.
254259 */
255260 privateNetworkId ?: string
256261 /**
257262 * Only IPs inside this exact subnet will be returned.
258263 *
259- * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId' could be set.
264+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'sourceVpcId' could be set.
260265 */
261266 subnetId ?: string
262267 /**
@@ -307,6 +312,11 @@ export type ListIPsRequest = {
307312 * IP IDs to filter for. Only IPs with these UUIDs will be returned.
308313 */
309314 ipIds ?: string [ ]
315+ /**
316+ *
317+ * One-of ('source'): at most one of 'zonal', 'privateNetworkId', 'subnetId', 'sourceVpcId' could be set.
318+ */
319+ sourceVpcId ?: string
310320}
311321
312322export interface ListIPsResponse {
0 commit comments