This is an automated email from the ASF dual-hosted git repository. ocket8888 pushed a commit to branch 4.x in repository https://gitbox.apache.org/repos/asf/trafficcontrol-trafficops-types.git
commit b2762f5559af03e54a0243a343773c79c9203ec3 Author: ocket8888 <[email protected]> AuthorDate: Wed Nov 23 19:05:47 2022 -0700 Update DSs --- src/delivery.service.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/delivery.service.ts b/src/delivery.service.ts index 0988cb6..e56959b 100644 --- a/src/delivery.service.ts +++ b/src/delivery.service.ts @@ -359,6 +359,8 @@ interface RequestDeliveryServiceBase { * Service belongs. */ tenantId: number; + /** A list of explicitly supported TLS versions. */ + tlsVersions?: undefined | null | [string, ...string[]]; topology?: string | null; /** * HTTP headers that should be logged from client requests by Traffic @@ -664,6 +666,8 @@ interface ResponseDeliveryServiceBase { * Service belongs. */ tenantId: number; + /** A list of explicitly supported TLS versions. */ + tlsVersions: null | [string, ...string[]]; topology: string | null; /** Extra HTTP headers that Traffic Router should provide in responses. */ trResponseHeaders: string | null;
