1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
|
// This file was automatically generated. DO NOT EDIT.
// If you have any remark or suggestion do not hesitate to open an issue.
// Package interlink provides methods and message types of the interlink v1beta1 API.
package interlink
import (
"bytes"
"encoding/json"
"fmt"
"net"
"net/http"
"net/url"
"strings"
"time"
"github.com/scaleway/scaleway-sdk-go/errors"
"github.com/scaleway/scaleway-sdk-go/marshaler"
"github.com/scaleway/scaleway-sdk-go/namegenerator"
"github.com/scaleway/scaleway-sdk-go/parameter"
"github.com/scaleway/scaleway-sdk-go/scw"
)
// always import dependencies
var (
_ fmt.Stringer
_ json.Unmarshaler
_ url.URL
_ net.IP
_ http.Header
_ bytes.Reader
_ time.Time
_ = strings.Join
_ scw.ScalewayRequest
_ marshaler.Duration
_ scw.File
_ = parameter.AddToQuery
_ = namegenerator.GetRandomName
)
type BgpStatus string
const (
BgpStatusUnknownBgpStatus = BgpStatus("unknown_bgp_status")
BgpStatusUp = BgpStatus("up")
BgpStatusDown = BgpStatus("down")
)
func (enum BgpStatus) String() string {
if enum == "" {
// return default value if empty
return "unknown_bgp_status"
}
return string(enum)
}
func (enum BgpStatus) Values() []BgpStatus {
return []BgpStatus{
"unknown_bgp_status",
"up",
"down",
}
}
func (enum BgpStatus) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *BgpStatus) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = BgpStatus(BgpStatus(tmp).String())
return nil
}
type LinkStatus string
const (
LinkStatusUnknownLinkStatus = LinkStatus("unknown_link_status")
LinkStatusConfiguring = LinkStatus("configuring")
LinkStatusFailed = LinkStatus("failed")
LinkStatusRequested = LinkStatus("requested")
LinkStatusRefused = LinkStatus("refused")
LinkStatusExpired = LinkStatus("expired")
LinkStatusProvisioning = LinkStatus("provisioning")
LinkStatusActive = LinkStatus("active")
LinkStatusLimitedConnectivity = LinkStatus("limited_connectivity")
LinkStatusAllDown = LinkStatus("all_down")
LinkStatusDeprovisioning = LinkStatus("deprovisioning")
LinkStatusDeleted = LinkStatus("deleted")
LinkStatusLocked = LinkStatus("locked")
)
func (enum LinkStatus) String() string {
if enum == "" {
// return default value if empty
return "unknown_link_status"
}
return string(enum)
}
func (enum LinkStatus) Values() []LinkStatus {
return []LinkStatus{
"unknown_link_status",
"configuring",
"failed",
"requested",
"refused",
"expired",
"provisioning",
"active",
"limited_connectivity",
"all_down",
"deprovisioning",
"deleted",
"locked",
}
}
func (enum LinkStatus) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *LinkStatus) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = LinkStatus(LinkStatus(tmp).String())
return nil
}
type ListLinksRequestOrderBy string
const (
ListLinksRequestOrderByCreatedAtAsc = ListLinksRequestOrderBy("created_at_asc")
ListLinksRequestOrderByCreatedAtDesc = ListLinksRequestOrderBy("created_at_desc")
ListLinksRequestOrderByNameAsc = ListLinksRequestOrderBy("name_asc")
ListLinksRequestOrderByNameDesc = ListLinksRequestOrderBy("name_desc")
ListLinksRequestOrderByStatusAsc = ListLinksRequestOrderBy("status_asc")
ListLinksRequestOrderByStatusDesc = ListLinksRequestOrderBy("status_desc")
)
func (enum ListLinksRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "created_at_asc"
}
return string(enum)
}
func (enum ListLinksRequestOrderBy) Values() []ListLinksRequestOrderBy {
return []ListLinksRequestOrderBy{
"created_at_asc",
"created_at_desc",
"name_asc",
"name_desc",
"status_asc",
"status_desc",
}
}
func (enum ListLinksRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListLinksRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListLinksRequestOrderBy(ListLinksRequestOrderBy(tmp).String())
return nil
}
type ListPartnersRequestOrderBy string
const (
ListPartnersRequestOrderByNameAsc = ListPartnersRequestOrderBy("name_asc")
ListPartnersRequestOrderByNameDesc = ListPartnersRequestOrderBy("name_desc")
)
func (enum ListPartnersRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "name_asc"
}
return string(enum)
}
func (enum ListPartnersRequestOrderBy) Values() []ListPartnersRequestOrderBy {
return []ListPartnersRequestOrderBy{
"name_asc",
"name_desc",
}
}
func (enum ListPartnersRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListPartnersRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListPartnersRequestOrderBy(ListPartnersRequestOrderBy(tmp).String())
return nil
}
type ListPopsRequestOrderBy string
const (
ListPopsRequestOrderByNameAsc = ListPopsRequestOrderBy("name_asc")
ListPopsRequestOrderByNameDesc = ListPopsRequestOrderBy("name_desc")
)
func (enum ListPopsRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "name_asc"
}
return string(enum)
}
func (enum ListPopsRequestOrderBy) Values() []ListPopsRequestOrderBy {
return []ListPopsRequestOrderBy{
"name_asc",
"name_desc",
}
}
func (enum ListPopsRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListPopsRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListPopsRequestOrderBy(ListPopsRequestOrderBy(tmp).String())
return nil
}
type ListRoutingPoliciesRequestOrderBy string
const (
ListRoutingPoliciesRequestOrderByCreatedAtAsc = ListRoutingPoliciesRequestOrderBy("created_at_asc")
ListRoutingPoliciesRequestOrderByCreatedAtDesc = ListRoutingPoliciesRequestOrderBy("created_at_desc")
ListRoutingPoliciesRequestOrderByNameAsc = ListRoutingPoliciesRequestOrderBy("name_asc")
ListRoutingPoliciesRequestOrderByNameDesc = ListRoutingPoliciesRequestOrderBy("name_desc")
)
func (enum ListRoutingPoliciesRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "created_at_asc"
}
return string(enum)
}
func (enum ListRoutingPoliciesRequestOrderBy) Values() []ListRoutingPoliciesRequestOrderBy {
return []ListRoutingPoliciesRequestOrderBy{
"created_at_asc",
"created_at_desc",
"name_asc",
"name_desc",
}
}
func (enum ListRoutingPoliciesRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListRoutingPoliciesRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListRoutingPoliciesRequestOrderBy(ListRoutingPoliciesRequestOrderBy(tmp).String())
return nil
}
// Link: link.
type Link struct {
// ID: unique identifier of the link.
ID string `json:"id"`
// ProjectID: project ID.
ProjectID string `json:"project_id"`
// OrganizationID: organization ID.
OrganizationID string `json:"organization_id"`
// Name: name of the link.
Name string `json:"name"`
// Tags: list of tags associated with the link.
Tags []string `json:"tags"`
// PopID: ID of the PoP where the link's corresponding port is located.
PopID string `json:"pop_id"`
// PartnerID: ID of the partner facilitating this link.
PartnerID *string `json:"partner_id"`
// BandwidthMbps: rate limited bandwidth of the link.
BandwidthMbps uint64 `json:"bandwidth_mbps"`
// Status: status of the link.
// Default value: unknown_link_status
Status LinkStatus `json:"status"`
// BgpV4Status: status of the link's BGP IPv4 session.
// Default value: unknown_bgp_status
BgpV4Status BgpStatus `json:"bgp_v4_status"`
// BgpV6Status: status of the link's BGP IPv6 session.
// Default value: unknown_bgp_status
BgpV6Status BgpStatus `json:"bgp_v6_status"`
// VpcID: ID of the Scaleway VPC attached to the link.
VpcID *string `json:"vpc_id"`
// RoutingPolicyID: ID of the routing policy attached to the link.
RoutingPolicyID *string `json:"routing_policy_id"`
// EnableRoutePropagation: defines whether route propagation is enabled or not. To enable or disable route propagation, use the dedicated endpoint.
EnableRoutePropagation bool `json:"enable_route_propagation"`
// CreatedAt: creation date of the link.
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: last modification date of the link.
UpdatedAt *time.Time `json:"updated_at"`
// PairingKey: used to identify a link from a user or partner's point of view.
PairingKey string `json:"pairing_key"`
// DisapprovedReason: reason given by partner to explain why they did not approve the request for a hosted link.
DisapprovedReason *string `json:"disapproved_reason"`
// Region: region of the link.
Region scw.Region `json:"region"`
}
// Partner: partner.
type Partner struct {
// ID: unique identifier of the partner.
ID string `json:"id"`
// Name: name of the partner.
Name string `json:"name"`
// ContactEmail: contact email address of partner.
ContactEmail string `json:"contact_email"`
// LogoURL: image URL of the partner's logo.
LogoURL string `json:"logo_url"`
// PortalURL: URL of the partner's portal.
PortalURL string `json:"portal_url"`
// CreatedAt: creation date of the partner.
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: last modification date of the partner.
UpdatedAt *time.Time `json:"updated_at"`
}
// Pop: pop.
type Pop struct {
// ID: unique identifier of the PoP.
ID string `json:"id"`
// Name: name of the PoP. It is the common reference of Hosting DC (ex: TH2).
Name string `json:"name"`
// HostingProviderName: name of the PoP's hosting provider, e.g. Telehouse for TH2 or OpCore for DC3.
HostingProviderName string `json:"hosting_provider_name"`
// Address: physical address of the PoP.
Address string `json:"address"`
// City: city where PoP is located.
City string `json:"city"`
// LogoURL: image URL of the PoP's logo.
LogoURL string `json:"logo_url"`
// AvailableLinkBandwidthsMbps: available bandwidth in Mbits/s for future hosted_links from available ports in this PoP.
AvailableLinkBandwidthsMbps []uint64 `json:"available_link_bandwidths_mbps"`
// Region: region of the PoP.
Region scw.Region `json:"region"`
}
// RoutingPolicy: routing policy.
type RoutingPolicy struct {
// ID: unique identifier of the routing policy.
ID string `json:"id"`
// ProjectID: project ID.
ProjectID string `json:"project_id"`
// OrganizationID: organization ID.
OrganizationID string `json:"organization_id"`
// Name: name of the routing policy.
Name string `json:"name"`
// Tags: list of tags associated with the routing policy.
Tags []string `json:"tags"`
// PrefixFilterIn: IP prefixes to accept from the peer (ranges of route announcements to accept).
PrefixFilterIn []scw.IPNet `json:"prefix_filter_in"`
// PrefixFilterOut: IP prefix filters to advertise to the peer (ranges of routes to advertise).
PrefixFilterOut []scw.IPNet `json:"prefix_filter_out"`
// CreatedAt: creation date of the routing policy.
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: last modification date of the routing policy.
UpdatedAt *time.Time `json:"updated_at"`
// Region: region of the routing policy.
Region scw.Region `json:"region"`
}
// AttachRoutingPolicyRequest: attach routing policy request.
type AttachRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to attach a routing policy to.
LinkID string `json:"-"`
// RoutingPolicyID: ID of the routing policy to be attached.
RoutingPolicyID string `json:"routing_policy_id"`
}
// AttachVpcRequest: attach vpc request.
type AttachVpcRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to attach VPC to.
LinkID string `json:"-"`
// VpcID: ID of the VPC to attach.
VpcID string `json:"vpc_id"`
}
// CreateLinkRequest: create link request.
type CreateLinkRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// ProjectID: ID of the Project to create the link in.
ProjectID string `json:"project_id"`
// Name: name of the link.
Name string `json:"name"`
// Tags: list of tags to apply to the link.
Tags []string `json:"tags"`
// PopID: poP (location) where the link will be created.
PopID string `json:"pop_id"`
// BandwidthMbps: desired bandwidth for the link. Must be compatible with available link bandwidths and remaining bandwidth capacity of the port.
BandwidthMbps uint64 `json:"bandwidth_mbps"`
// Dedicated: if true, a dedicated link (1 link per port, dedicated to one customer) will be crated. It is not necessary to specify a `port_id` or `partner_id`. A new port will created and assigned to the link. Note that Scaleway has not yet enabled the creation of dedicated links, this field is reserved for future use.
// Precisely one of Dedicated, PortID, PartnerID must be set.
Dedicated *bool `json:"dedicated,omitempty"`
// PortID: if set, a shared link (N links per port, one of which is this customer's port) will be created. As the customer, specify the ID of the port you already have for this link. Note that shared links are not currently available. Note that Scaleway has not yet enabled the creation of shared links, this field is reserved for future use.
// Precisely one of Dedicated, PortID, PartnerID must be set.
PortID *string `json:"port_id,omitempty"`
// PartnerID: if set, a hosted link (N links per port on a partner port) will be created. Specify the ID of the chosen partner, who already has a shareable port with available bandwidth. Note that this is currently the only type of link offered by Scaleway, and therefore this field must be set when creating a link.
// Precisely one of Dedicated, PortID, PartnerID must be set.
PartnerID *string `json:"partner_id,omitempty"`
}
// CreateRoutingPolicyRequest: create routing policy request.
type CreateRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// ProjectID: ID of the Project to create the routing policy in.
ProjectID string `json:"project_id"`
// Name: name of the routing policy.
Name string `json:"name"`
// Tags: list of tags to apply to the routing policy.
Tags []string `json:"tags"`
// PrefixFilterIn: IP prefixes to accept from the peer (ranges of route announcements to accept).
PrefixFilterIn []scw.IPNet `json:"prefix_filter_in"`
// PrefixFilterOut: IP prefix filters to advertise to the peer (ranges of routes to advertise).
PrefixFilterOut []scw.IPNet `json:"prefix_filter_out"`
}
// DeleteLinkRequest: delete link request.
type DeleteLinkRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to delete.
LinkID string `json:"-"`
}
// DeleteRoutingPolicyRequest: delete routing policy request.
type DeleteRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// RoutingPolicyID: ID of the routing policy to delete.
RoutingPolicyID string `json:"-"`
}
// DetachRoutingPolicyRequest: detach routing policy request.
type DetachRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to detach a routing policy from.
LinkID string `json:"-"`
}
// DetachVpcRequest: detach vpc request.
type DetachVpcRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to detach the VPC from.
LinkID string `json:"-"`
}
// DisableRoutePropagationRequest: disable route propagation request.
type DisableRoutePropagationRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link on which to disable route propagation.
LinkID string `json:"-"`
}
// EnableRoutePropagationRequest: enable route propagation request.
type EnableRoutePropagationRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link on which to enable route propagation.
LinkID string `json:"-"`
}
// GetLinkRequest: get link request.
type GetLinkRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to get.
LinkID string `json:"-"`
}
// GetPartnerRequest: get partner request.
type GetPartnerRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// PartnerID: ID of partner to get.
PartnerID string `json:"-"`
}
// GetPopRequest: get pop request.
type GetPopRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// PopID: ID of PoP to get.
PopID string `json:"-"`
}
// GetRoutingPolicyRequest: get routing policy request.
type GetRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// RoutingPolicyID: ID of the routing policy to get.
RoutingPolicyID string `json:"-"`
}
// ListLinksRequest: list links request.
type ListLinksRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// OrderBy: order in which to return results.
// Default value: created_at_asc
OrderBy ListLinksRequestOrderBy `json:"-"`
// Page: page number to return.
Page *int32 `json:"-"`
// PageSize: maximum number of links to return per page.
PageSize *uint32 `json:"-"`
// ProjectID: project ID to filter for.
ProjectID *string `json:"-"`
// OrganizationID: organization ID to filter for.
OrganizationID *string `json:"-"`
// Name: link name to filter for.
Name *string `json:"-"`
// Tags: tags to filter for.
Tags []string `json:"-"`
// Status: link status to filter for.
// Default value: unknown_link_status
Status LinkStatus `json:"-"`
// BgpV4Status: bGP IPv4 status to filter for.
// Default value: unknown_bgp_status
BgpV4Status BgpStatus `json:"-"`
// BgpV6Status: bGP IPv6 status to filter for.
// Default value: unknown_bgp_status
BgpV6Status BgpStatus `json:"-"`
// PopID: filter for links attached to this PoP (via ports).
PopID *string `json:"-"`
// BandwidthMbps: filter for link bandwidth (in Mbps).
BandwidthMbps *uint64 `json:"-"`
// PartnerID: filter for links hosted by this partner.
PartnerID *string `json:"-"`
// VpcID: filter for links attached to this VPC.
VpcID *string `json:"-"`
// RoutingPolicyID: filter for links using this routing policy.
RoutingPolicyID *string `json:"-"`
// PairingKey: filter for the link with this pairing_key.
PairingKey *string `json:"-"`
}
// ListLinksResponse: list links response.
type ListLinksResponse struct {
// Links: list of links on the current page.
Links []*Link `json:"links"`
// TotalCount: total number of links.
TotalCount uint64 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListLinksResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListLinksResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListLinksResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Links = append(r.Links, results.Links...)
r.TotalCount += uint64(len(results.Links))
return uint64(len(results.Links)), nil
}
// ListPartnersRequest: list partners request.
type ListPartnersRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// OrderBy: order in which to return results.
// Default value: name_asc
OrderBy ListPartnersRequestOrderBy `json:"-"`
// Page: page number to return.
Page *int32 `json:"-"`
// PageSize: maximum number of partners to return per page.
PageSize *uint32 `json:"-"`
// PopIDs: filter for partners present (offering a port) in one of these PoPs.
PopIDs []string `json:"-"`
}
// ListPartnersResponse: list partners response.
type ListPartnersResponse struct {
// Partners: list of partners on current page.
Partners []*Partner `json:"partners"`
// TotalCount: total number of partners returned.
TotalCount uint64 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListPartnersResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListPartnersResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListPartnersResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Partners = append(r.Partners, results.Partners...)
r.TotalCount += uint64(len(results.Partners))
return uint64(len(results.Partners)), nil
}
// ListPopsRequest: list pops request.
type ListPopsRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// OrderBy: order in which to return results.
// Default value: name_asc
OrderBy ListPopsRequestOrderBy `json:"-"`
// Page: page number to return.
Page *int32 `json:"-"`
// PageSize: maximum number of PoPs to return per page.
PageSize *uint32 `json:"-"`
// Name: poP name to filter for.
Name *string `json:"-"`
// HostingProviderName: hosting provider name to filter for.
HostingProviderName *string `json:"-"`
// PartnerID: filter for PoPs hosting an available shared port from this partner.
PartnerID *string `json:"-"`
// LinkBandwidthMbps: filter for PoPs with a shared port allowing this bandwidth size. Note that we cannot guarantee that PoPs returned will have available capacity.
LinkBandwidthMbps *uint64 `json:"-"`
}
// ListPopsResponse: list pops response.
type ListPopsResponse struct {
// Pops: list of PoPs on the current page.
Pops []*Pop `json:"pops"`
// TotalCount: total number of PoPs.
TotalCount uint64 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListPopsResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListPopsResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListPopsResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Pops = append(r.Pops, results.Pops...)
r.TotalCount += uint64(len(results.Pops))
return uint64(len(results.Pops)), nil
}
// ListRoutingPoliciesRequest: list routing policies request.
type ListRoutingPoliciesRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// OrderBy: order in which to return results.
// Default value: created_at_asc
OrderBy ListRoutingPoliciesRequestOrderBy `json:"-"`
// Page: page number to return.
Page *int32 `json:"-"`
// PageSize: maximum number of routing policies to return per page.
PageSize *uint32 `json:"-"`
// ProjectID: project ID to filter for.
ProjectID *string `json:"-"`
// OrganizationID: organization ID to filter for.
OrganizationID *string `json:"-"`
// Name: routing policy name to filter for.
Name *string `json:"-"`
// Tags: tags to filter for.
Tags []string `json:"-"`
}
// ListRoutingPoliciesResponse: list routing policies response.
type ListRoutingPoliciesResponse struct {
RoutingPolicies []*RoutingPolicy `json:"routing_policies"`
TotalCount uint64 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListRoutingPoliciesResponse) UnsafeGetTotalCount() uint64 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListRoutingPoliciesResponse) UnsafeAppend(res interface{}) (uint64, error) {
results, ok := res.(*ListRoutingPoliciesResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.RoutingPolicies = append(r.RoutingPolicies, results.RoutingPolicies...)
r.TotalCount += uint64(len(results.RoutingPolicies))
return uint64(len(results.RoutingPolicies)), nil
}
// UpdateLinkRequest: update link request.
type UpdateLinkRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// LinkID: ID of the link to update.
LinkID string `json:"-"`
// Name: name of the link.
Name *string `json:"name,omitempty"`
// Tags: list of tags to apply to the link.
Tags *[]string `json:"tags,omitempty"`
}
// UpdateRoutingPolicyRequest: update routing policy request.
type UpdateRoutingPolicyRequest struct {
// Region: region to target. If none is passed will use default region from the config.
Region scw.Region `json:"-"`
// RoutingPolicyID: ID of the routing policy to update.
RoutingPolicyID string `json:"-"`
// Name: name of the routing policy.
Name *string `json:"name,omitempty"`
// Tags: list of tags to apply to the routing policy.
Tags *[]string `json:"tags,omitempty"`
// PrefixFilterIn: IP prefixes to accept from the peer (ranges of route announcements to accept).
PrefixFilterIn *[]string `json:"prefix_filter_in,omitempty"`
// PrefixFilterOut: IP prefix filters for routes to advertise to the peer (ranges of routes to advertise).
PrefixFilterOut *[]string `json:"prefix_filter_out,omitempty"`
}
// This API allows you to manage your Scaleway InterLink, to connect your on-premises infrastructure with your Scaleway VPC.
type API struct {
client *scw.Client
}
// NewAPI returns a API object from a Scaleway client.
func NewAPI(client *scw.Client) *API {
return &API{
client: client,
}
}
func (s *API) Regions() []scw.Region {
return []scw.Region{scw.RegionFrPar, scw.RegionNlAms, scw.RegionPlWaw}
}
// ListPartners: List all available partners. By default, the partners returned in the list are ordered by name in ascending order, though this can be modified via the `order_by` field.
func (s *API) ListPartners(req *ListPartnersRequest, opts ...scw.RequestOption) (*ListPartnersResponse, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "pop_ids", req.PopIDs)
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/partners",
Query: query,
}
var resp ListPartnersResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetPartner: Get a partner for the given partner IP. The response object includes information such as the partner's name, email address and portal URL.
func (s *API) GetPartner(req *GetPartnerRequest, opts ...scw.RequestOption) (*Partner, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.PartnerID) == "" {
return nil, errors.New("field PartnerID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/partners/" + fmt.Sprint(req.PartnerID) + "",
}
var resp Partner
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListPops: List all available PoPs (locations) for a given region. By default, the results are returned in ascending alphabetical order by name.
func (s *API) ListPops(req *ListPopsRequest, opts ...scw.RequestOption) (*ListPopsResponse, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "name", req.Name)
parameter.AddToQuery(query, "hosting_provider_name", req.HostingProviderName)
parameter.AddToQuery(query, "partner_id", req.PartnerID)
parameter.AddToQuery(query, "link_bandwidth_mbps", req.LinkBandwidthMbps)
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/pops",
Query: query,
}
var resp ListPopsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetPop: Get a PoP for the given PoP ID. The response object includes the PoP's name and information about its physical location.
func (s *API) GetPop(req *GetPopRequest, opts ...scw.RequestOption) (*Pop, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.PopID) == "" {
return nil, errors.New("field PopID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/pops/" + fmt.Sprint(req.PopID) + "",
}
var resp Pop
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListLinks: List all your links (InterLink connections). A number of filters are available, including Project ID, name, tags and status.
func (s *API) ListLinks(req *ListLinksRequest, opts ...scw.RequestOption) (*ListLinksResponse, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "project_id", req.ProjectID)
parameter.AddToQuery(query, "organization_id", req.OrganizationID)
parameter.AddToQuery(query, "name", req.Name)
parameter.AddToQuery(query, "tags", req.Tags)
parameter.AddToQuery(query, "status", req.Status)
parameter.AddToQuery(query, "bgp_v4_status", req.BgpV4Status)
parameter.AddToQuery(query, "bgp_v6_status", req.BgpV6Status)
parameter.AddToQuery(query, "pop_id", req.PopID)
parameter.AddToQuery(query, "bandwidth_mbps", req.BandwidthMbps)
parameter.AddToQuery(query, "partner_id", req.PartnerID)
parameter.AddToQuery(query, "vpc_id", req.VpcID)
parameter.AddToQuery(query, "routing_policy_id", req.RoutingPolicyID)
parameter.AddToQuery(query, "pairing_key", req.PairingKey)
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links",
Query: query,
}
var resp ListLinksResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetLink: Get a link (InterLink connection) for the given link ID. The response object includes information about the link's various configuration details.
func (s *API) GetLink(req *GetLinkRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "",
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// CreateLink: Create a link (InterLink connection) in a given PoP, specifying its various configuration details. For the moment only hosted links (faciliated by partners) are available, though in the future dedicated and shared links will also be possible.
func (s *API) CreateLink(req *CreateLinkRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// UpdateLink: Update an existing link, specified by its link ID. Only its name and tags can be updated.
func (s *API) UpdateLink(req *UpdateLinkRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PATCH",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteLink: Delete an existing link, specified by its link ID. Note that as well as deleting the link here on the Scaleway side, it is also necessary to request deletion from the partner on their side. Only when this action has been carried out on both sides will the resource be completely deleted.
func (s *API) DeleteLink(req *DeleteLinkRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "",
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// AttachVpc: Attach a VPC to an existing link. This facilitates communication between the resources in your Scaleway VPC, and your on-premises infrastructure.
func (s *API) AttachVpc(req *AttachVpcRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/attach-vpc",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DetachVpc: Detach a VPC from an existing link.
func (s *API) DetachVpc(req *DetachVpcRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/detach-vpc",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// AttachRoutingPolicy: Attach a routing policy to an existing link. As all routes across the link are blocked by default, you must attach a routing policy to set IP prefix filters for allowed routes, facilitating traffic flow.
func (s *API) AttachRoutingPolicy(req *AttachRoutingPolicyRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/attach-routing-policy",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DetachRoutingPolicy: Detach a routing policy from an existing link. Without a routing policy, all routes across the link are blocked by default.
func (s *API) DetachRoutingPolicy(req *DetachRoutingPolicyRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/detach-routing-policy",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// EnableRoutePropagation: Enable all allowed prefixes (defined in a routing policy) to be announced in the BGP session. This allows traffic to flow between the attached VPC and the on-premises infrastructure along the announced routes. Note that by default, even when route propagation is enabled, all routes are blocked. It is essential to attach a routing policy to define the ranges of routes to announce.
func (s *API) EnableRoutePropagation(req *EnableRoutePropagationRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/enable-route-propagation",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DisableRoutePropagation: Prevent any prefixes from being announced in the BGP session. Traffic will not be able to flow over the InterLink until route propagation is re-enabled.
func (s *API) DisableRoutePropagation(req *DisableRoutePropagationRequest, opts ...scw.RequestOption) (*Link, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.LinkID) == "" {
return nil, errors.New("field LinkID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/links/" + fmt.Sprint(req.LinkID) + "/disable-route-propagation",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Link
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListRoutingPolicies: List all routing policies in a given region. A routing policy can be attached to one or multiple links (InterLink connections).
func (s *API) ListRoutingPolicies(req *ListRoutingPoliciesRequest, opts ...scw.RequestOption) (*ListRoutingPoliciesResponse, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
parameter.AddToQuery(query, "project_id", req.ProjectID)
parameter.AddToQuery(query, "organization_id", req.OrganizationID)
parameter.AddToQuery(query, "name", req.Name)
parameter.AddToQuery(query, "tags", req.Tags)
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/routing-policies",
Query: query,
}
var resp ListRoutingPoliciesResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetRoutingPolicy: Get a routing policy for the given routing policy ID. The response object gives information including the policy's name, tags and prefix filters.
func (s *API) GetRoutingPolicy(req *GetRoutingPolicyRequest, opts ...scw.RequestOption) (*RoutingPolicy, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.RoutingPolicyID) == "" {
return nil, errors.New("field RoutingPolicyID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/routing-policies/" + fmt.Sprint(req.RoutingPolicyID) + "",
}
var resp RoutingPolicy
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// CreateRoutingPolicy: Create a routing policy. Routing policies allow you to set IP prefix filters to define the incoming route announcements to accept from the peer, and the outgoing routes to announce to the peer.
func (s *API) CreateRoutingPolicy(req *CreateRoutingPolicyRequest, opts ...scw.RequestOption) (*RoutingPolicy, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/routing-policies",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp RoutingPolicy
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// UpdateRoutingPolicy: Update an existing routing policy, specified by its routing policy ID. Its name, tags and incoming/outgoing prefix filters can be updated.
func (s *API) UpdateRoutingPolicy(req *UpdateRoutingPolicyRequest, opts ...scw.RequestOption) (*RoutingPolicy, error) {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return nil, errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.RoutingPolicyID) == "" {
return nil, errors.New("field RoutingPolicyID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PATCH",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/routing-policies/" + fmt.Sprint(req.RoutingPolicyID) + "",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp RoutingPolicy
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteRoutingPolicy: Delete an existing routing policy, specified by its routing policy ID.
func (s *API) DeleteRoutingPolicy(req *DeleteRoutingPolicyRequest, opts ...scw.RequestOption) error {
var err error
if req.Region == "" {
defaultRegion, _ := s.client.GetDefaultRegion()
req.Region = defaultRegion
}
if fmt.Sprint(req.Region) == "" {
return errors.New("field Region cannot be empty in request")
}
if fmt.Sprint(req.RoutingPolicyID) == "" {
return errors.New("field RoutingPolicyID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/interlink/v1beta1/regions/" + fmt.Sprint(req.Region) + "/routing-policies/" + fmt.Sprint(req.RoutingPolicyID) + "",
}
err = s.client.Do(scwReq, nil, opts...)
if err != nil {
return err
}
return nil
}
|