@@ -194,6 +194,12 @@ export namespace AppCreateResponse {
194194 * The type of TLS termination associated with the application.
195195 */
196196 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
197+
198+ /**
199+ * Optional UUID of a virtual network for routing origin traffic through tunnel
200+ * virtual networks.
201+ */
202+ virtual_network_id ?: string ;
197203 }
198204
199205 export interface SpectrumConfigPaygoAppConfig {
@@ -321,6 +327,12 @@ export namespace AppUpdateResponse {
321327 * The type of TLS termination associated with the application.
322328 */
323329 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
330+
331+ /**
332+ * Optional UUID of a virtual network for routing origin traffic through tunnel
333+ * virtual networks.
334+ */
335+ virtual_network_id ?: string ;
324336 }
325337
326338 export interface SpectrumConfigPaygoAppConfig {
@@ -448,6 +460,12 @@ export namespace AppListResponse {
448460 * The type of TLS termination associated with the application.
449461 */
450462 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
463+
464+ /**
465+ * Optional UUID of a virtual network for routing origin traffic through tunnel
466+ * virtual networks.
467+ */
468+ virtual_network_id ?: string ;
451469 }
452470
453471 export interface SpectrumConfigPaygoAppConfig {
@@ -582,6 +600,12 @@ export namespace AppGetResponse {
582600 * The type of TLS termination associated with the application.
583601 */
584602 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
603+
604+ /**
605+ * Optional UUID of a virtual network for routing origin traffic through tunnel
606+ * virtual networks.
607+ */
608+ virtual_network_id ?: string ;
585609 }
586610
587611 export interface SpectrumConfigPaygoAppConfig {
@@ -701,6 +725,12 @@ export declare namespace AppCreateParams {
701725 * Body param: The type of TLS termination associated with the application.
702726 */
703727 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
728+
729+ /**
730+ * Body param: Optional UUID of a virtual network for routing origin traffic
731+ * through tunnel virtual networks.
732+ */
733+ virtual_network_id ?: string ;
704734 }
705735
706736 export interface SpectrumConfigPaygoAppConfig {
@@ -811,6 +841,12 @@ export declare namespace AppUpdateParams {
811841 * Body param: The type of TLS termination associated with the application.
812842 */
813843 tls ?: 'off' | 'flexible' | 'full' | 'strict' ;
844+
845+ /**
846+ * Body param: Optional UUID of a virtual network for routing origin traffic
847+ * through tunnel virtual networks.
848+ */
849+ virtual_network_id ?: string ;
814850 }
815851
816852 export interface SpectrumConfigPaygoAppConfig {
0 commit comments