11/**
2- * (C) Copyright IBM Corp. 2020 .
2+ * (C) Copyright IBM Corp. 2021 .
33 *
44 * Licensed under the Apache License, Version 2.0 (the "License");
55 * you may not use this file except in compliance with the License.
@@ -1507,6 +1507,8 @@ namespace DirectLinkV1 {
15071507
15081508 /** Cross Connect Router details. */
15091509 export interface CrossConnectRouter {
1510+ /** Array of capabilities for this router. */
1511+ capabilities ?: string [ ] ;
15101512 /** The name of the Router. */
15111513 router_name ?: string ;
15121514 /** Count of existing Direct Link Dedicated gateways on this router for this account. */
@@ -1517,7 +1519,7 @@ namespace DirectLinkV1 {
15171519 export interface Gateway {
15181520 /** Customer BGP ASN. */
15191521 bgp_asn : number ;
1520- /** (DEPRECATED) BGP base CIDR is deprecated and no longer recognized the Direct Link APIs.
1522+ /** (DEPRECATED) BGP base CIDR is deprecated and no longer recognized by the Direct Link APIs.
15211523 *
15221524 * See bgp_cer_cidr and bgp_ibm_cidr fields instead for IP related information.
15231525 *
@@ -1628,11 +1630,11 @@ namespace DirectLinkV1 {
16281630 primary_cak : GatewayMacsecConfigPrimaryCak ;
16291631 /** Secure Association Key (SAK) expiry time in seconds. */
16301632 sak_expiry_time ?: number ;
1631- /** Packets without MACsec headers are not dropped when security_policy is `should_secure `. */
1633+ /** Packets without MACsec headers are dropped when security_policy is `must_secure `. */
16321634 security_policy ?: string ;
16331635 /** Current status of MACsec on this gateway.
16341636 *
1635- * Status 'unknown ' is returned during gateway creation and deletion.
1637+ * Status 'offline ' is returned during gateway creation and deletion.
16361638 */
16371639 status : string ;
16381640 /** replay protection window size. */
@@ -1904,6 +1906,8 @@ namespace DirectLinkV1 {
19041906
19051907 /** Speed. */
19061908 export interface OfferingSpeed {
1909+ /** Array of capabilities for billing option. */
1910+ capabilities : string [ ] ;
19071911 /** Link speed in megabits per second. */
19081912 link_speed : number ;
19091913 /** Indicate whether speed supports MACsec. Only returned for gateway type=dedicated speeds. Contact IBM
0 commit comments