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
/** Gateways with global routing (`true`) can connect to networks outside of their associated region. */
1254
1270
global?: boolean;
1255
1271
/** Use this field during LOA rejection to provide the reason for the rejection.
@@ -1284,6 +1300,11 @@ namespace DirectLinkV1 {
1284
1300
1285
1301
/** Constants for the `updateGateway` operation. */
1286
1302
exportnamespaceUpdateGatewayConstants{
1303
+
/** Type of services this Gateway is attached to. Mode transit means this Gateway will be attached to Transit Gateway Service and direct means this Gateway will be attached to vpc or classic connection. The list of enumerated values for this property may expand in the future. Code and processes using this field must tolerate unexpected values. */
1304
+
exportenumConnectionMode{
1305
+
DIRECT='direct',
1306
+
TRANSIT='transit',
1307
+
}
1287
1308
/** Gateway operational status. For gateways pending LOA approval, patch operational_status to the appropriate value to approve or reject its LOA. When rejecting an LOA, provide reject reasoning in `loa_reject_reason`. Only allowed for type=dedicated gateways. */
1288
1309
exportenumOperationalStatus{
1289
1310
LOA_ACCEPTED='loa_accepted',
@@ -1303,6 +1324,12 @@ namespace DirectLinkV1 {
1303
1324
* To clear the optional `authentication_key` field patch its crn to `""`.
/** Type of services this Gateway is attached to. Mode transit means this Gateway will be attached to Transit Gateway Service and direct means this Gateway will be attached to vpc or classic connection. The list of enumerated values for this property may expand in the future. Code and processes using this field must tolerate unexpected values. */
1366
+
exportenumConnectionMode{
1367
+
DIRECT='direct',
1368
+
TRANSIT='transit',
1369
+
}
1338
1370
}
1339
1371
1340
1372
/** Parameters for the `listGatewayCompletionNotice` operation. */
@@ -1552,7 +1584,7 @@ namespace DirectLinkV1 {
1552
1584
/** (DEPRECATED) BGP base CIDR is deprecated and no longer recognized by the Direct Link APIs.
1553
1585
*
1554
1586
* See bgp_cer_cidr and bgp_ibm_cidr fields instead for IP related information.
1555
-
*
1587
+
*
1556
1588
* Deprecated field bgp_base_cidr will be removed from the API specificiation after 15-MAR-2021.
1557
1589
*/
1558
1590
bgp_base_cidr?: string;
@@ -1574,6 +1606,12 @@ namespace DirectLinkV1 {
1574
1606
* notice.
1575
1607
*/
1576
1608
completion_notice_reject_reason?: string;
1609
+
/** Type of services this Gateway is attached to. Mode transit means this Gateway will be attached to Transit
1610
+
* Gateway Service and direct means this Gateway will be attached to vpc or classic connection. The list of
1611
+
* enumerated values for this property may expand in the future. Code and processes using this field must tolerate
1612
+
* unexpected values.
1613
+
*/
1614
+
connection_mode?: string;
1577
1615
/** The date and time resource was created. */
1578
1616
created_at: string;
1579
1617
/** The CRN (Cloud Resource Name) of this gateway. */
@@ -1867,6 +1905,12 @@ namespace DirectLinkV1 {
1867
1905
* bgp_ibm_cidr must have matching network and subnet mask values.
1868
1906
*/
1869
1907
bgp_ibm_cidr?: string;
1908
+
/** Type of services this Gateway is attached to. Mode transit means this Gateway will be attached to Transit
1909
+
* Gateway Service and direct means this Gateway will be attached to vpc or classic connection. The list of
1910
+
* enumerated values for this property may expand in the future. Code and processes using this field must tolerate
1911
+
* unexpected values.
1912
+
*/
1913
+
connection_mode?: string;
1870
1914
/** Gateways with global routing (`true`) can connect to networks outside their associated region. */
1871
1915
global: boolean;
1872
1916
/** Metered billing option. When `true` gateway usage is billed per gigabyte. When `false` there is no per
0 commit comments