You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Required for create_gateway_approve requests to select the gateway's routing option. Gateways with global
1283
1302
* routing (`true`) can connect to networks outside of their associated region.
1284
1303
*/
@@ -1517,6 +1536,16 @@ namespace DirectLinkV1 {
1517
1536
1518
1537
/** gateway. */
1519
1538
exportinterfaceGateway{
1539
+
/** BGP MD5 authentication key.
1540
+
*
1541
+
* BGP MD5 keys must be type=standard.
1542
+
*
1543
+
* The key material that you provide must be base64 encoded and original string must be maximum 126 ASCII
1544
+
* characters in length.
1545
+
*
1546
+
* To clear the optional `authentication_key` field patch its crn to `""`.
1547
+
*/
1548
+
authentication_key?: GatewayAuthenticationKey;
1520
1549
/** Customer BGP ASN. */
1521
1550
bgp_asn: number;
1522
1551
/** (DEPRECATED) BGP base CIDR is deprecated and no longer recognized by the Direct Link APIs.
@@ -1586,14 +1615,26 @@ namespace DirectLinkV1 {
1586
1615
resource_group?: ResourceGroupReference;
1587
1616
/** Gateway speed in megabits per second. */
1588
1617
speed_mbps: number;
1589
-
/** Gateway type. The list of enumerated values for this property may expand in the future. Code and processes
1618
+
/** Offering type. The list of enumerated values for this property may expand in the future. Code and processes
1590
1619
* using this field must tolerate unexpected values.
1591
1620
*/
1592
1621
type: string;
1593
1622
/** VLAN allocated for this gateway. Only set for type=connect gateways. */
1594
1623
vlan?: number;
1595
1624
}
1596
1625
1626
+
/** BGP MD5 authentication key. BGP MD5 keys must be type=standard. The key material that you provide must be base64 encoded and original string must be maximum 126 ASCII characters in length. To clear the optional `authentication_key` field patch its crn to `""`. */
/** BGP MD5 authentication key. BGP MD5 keys must be type=standard. The key material that you provide must be base64 encoded and original string must be maximum 126 ASCII characters in length. To clear the optional `authentication_key` field patch its crn to `""`. */
0 commit comments