Skip to content

Commit 1afad1f

Browse files
committed
chore(spectrum): update codegen output
1 parent 542f312 commit 1afad1f

2 files changed

Lines changed: 38 additions & 0 deletions

File tree

src/resources/spectrum/apps.ts

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 {

tests/api-resources/spectrum/apps.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ describe('resource apps', () => {
4646
origin_port: 22,
4747
proxy_protocol: 'off',
4848
tls: 'off',
49+
virtual_network_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
4950
});
5051
});
5152

@@ -85,6 +86,7 @@ describe('resource apps', () => {
8586
origin_port: 22,
8687
proxy_protocol: 'off',
8788
tls: 'off',
89+
virtual_network_id: '182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e',
8890
});
8991
});
9092

0 commit comments

Comments
 (0)