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 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813
|
// This file was automatically generated. DO NOT EDIT.
// If you have any remark or suggestion do not hesitate to open an issue.
// Package redis provides methods and message types of the redis v1 API.
package redis
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 AvailableClusterSettingPropertyType string
const (
AvailableClusterSettingPropertyTypeUNKNOWN = AvailableClusterSettingPropertyType("UNKNOWN")
AvailableClusterSettingPropertyTypeBOOLEAN = AvailableClusterSettingPropertyType("BOOLEAN")
AvailableClusterSettingPropertyTypeINT = AvailableClusterSettingPropertyType("INT")
AvailableClusterSettingPropertyTypeSTRING = AvailableClusterSettingPropertyType("STRING")
)
func (enum AvailableClusterSettingPropertyType) String() string {
if enum == "" {
// return default value if empty
return "UNKNOWN"
}
return string(enum)
}
func (enum AvailableClusterSettingPropertyType) Values() []AvailableClusterSettingPropertyType {
return []AvailableClusterSettingPropertyType{
"UNKNOWN",
"BOOLEAN",
"INT",
"STRING",
}
}
func (enum AvailableClusterSettingPropertyType) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *AvailableClusterSettingPropertyType) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = AvailableClusterSettingPropertyType(AvailableClusterSettingPropertyType(tmp).String())
return nil
}
type ClusterStatus string
const (
ClusterStatusUnknown = ClusterStatus("unknown")
ClusterStatusReady = ClusterStatus("ready")
ClusterStatusProvisioning = ClusterStatus("provisioning")
ClusterStatusConfiguring = ClusterStatus("configuring")
ClusterStatusDeleting = ClusterStatus("deleting")
ClusterStatusError = ClusterStatus("error")
ClusterStatusAutohealing = ClusterStatus("autohealing")
ClusterStatusLocked = ClusterStatus("locked")
ClusterStatusSuspended = ClusterStatus("suspended")
ClusterStatusInitializing = ClusterStatus("initializing")
)
func (enum ClusterStatus) String() string {
if enum == "" {
// return default value if empty
return "unknown"
}
return string(enum)
}
func (enum ClusterStatus) Values() []ClusterStatus {
return []ClusterStatus{
"unknown",
"ready",
"provisioning",
"configuring",
"deleting",
"error",
"autohealing",
"locked",
"suspended",
"initializing",
}
}
func (enum ClusterStatus) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ClusterStatus) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ClusterStatus(ClusterStatus(tmp).String())
return nil
}
type ListClustersRequestOrderBy string
const (
ListClustersRequestOrderByCreatedAtAsc = ListClustersRequestOrderBy("created_at_asc")
ListClustersRequestOrderByCreatedAtDesc = ListClustersRequestOrderBy("created_at_desc")
ListClustersRequestOrderByNameAsc = ListClustersRequestOrderBy("name_asc")
ListClustersRequestOrderByNameDesc = ListClustersRequestOrderBy("name_desc")
)
func (enum ListClustersRequestOrderBy) String() string {
if enum == "" {
// return default value if empty
return "created_at_asc"
}
return string(enum)
}
func (enum ListClustersRequestOrderBy) Values() []ListClustersRequestOrderBy {
return []ListClustersRequestOrderBy{
"created_at_asc",
"created_at_desc",
"name_asc",
"name_desc",
}
}
func (enum ListClustersRequestOrderBy) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *ListClustersRequestOrderBy) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = ListClustersRequestOrderBy(ListClustersRequestOrderBy(tmp).String())
return nil
}
type NodeTypeStock string
const (
NodeTypeStockUnknown = NodeTypeStock("unknown")
NodeTypeStockLowStock = NodeTypeStock("low_stock")
NodeTypeStockOutOfStock = NodeTypeStock("out_of_stock")
NodeTypeStockAvailable = NodeTypeStock("available")
)
func (enum NodeTypeStock) String() string {
if enum == "" {
// return default value if empty
return "unknown"
}
return string(enum)
}
func (enum NodeTypeStock) Values() []NodeTypeStock {
return []NodeTypeStock{
"unknown",
"low_stock",
"out_of_stock",
"available",
}
}
func (enum NodeTypeStock) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *NodeTypeStock) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = NodeTypeStock(NodeTypeStock(tmp).String())
return nil
}
type PrivateNetworkProvisioningMode string
const (
PrivateNetworkProvisioningModeStatic = PrivateNetworkProvisioningMode("static")
PrivateNetworkProvisioningModeIpam = PrivateNetworkProvisioningMode("ipam")
)
func (enum PrivateNetworkProvisioningMode) String() string {
if enum == "" {
// return default value if empty
return "static"
}
return string(enum)
}
func (enum PrivateNetworkProvisioningMode) Values() []PrivateNetworkProvisioningMode {
return []PrivateNetworkProvisioningMode{
"static",
"ipam",
}
}
func (enum PrivateNetworkProvisioningMode) MarshalJSON() ([]byte, error) {
return []byte(fmt.Sprintf(`"%s"`, enum)), nil
}
func (enum *PrivateNetworkProvisioningMode) UnmarshalJSON(data []byte) error {
tmp := ""
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
*enum = PrivateNetworkProvisioningMode(PrivateNetworkProvisioningMode(tmp).String())
return nil
}
// EndpointSpecPrivateNetworkSpecIpamConfig: endpoint spec private network spec ipam config.
type EndpointSpecPrivateNetworkSpecIpamConfig struct {
}
// PrivateNetwork: private network.
type PrivateNetwork struct {
// ID: UUID of the Private Network.
ID string `json:"id"`
// ServiceIPs: list of IPv4 CIDR notation addresses of the endpoint.
ServiceIPs []scw.IPNet `json:"service_ips"`
// Zone: zone of the Private Network.
Zone scw.Zone `json:"zone"`
// ProvisioningMode: how your endpoint ips are provisioned.
// Default value: static
ProvisioningMode PrivateNetworkProvisioningMode `json:"provisioning_mode"`
}
// PublicNetwork: public network.
type PublicNetwork struct {
}
// EndpointSpecPrivateNetworkSpec: endpoint spec private network spec.
type EndpointSpecPrivateNetworkSpec struct {
// ID: UUID of the Private Network to connect to the Database Instance.
ID string `json:"id"`
// ServiceIPs: endpoint IPv4 address with a CIDR notation. You must provide at least one IPv4 per node.
ServiceIPs []scw.IPNet `json:"service_ips"`
// IpamConfig: automated configuration of your Private Network endpoint with Scaleway IPAM service.
IpamConfig *EndpointSpecPrivateNetworkSpecIpamConfig `json:"ipam_config"`
}
// EndpointSpecPublicNetworkSpec: endpoint spec public network spec.
type EndpointSpecPublicNetworkSpec struct {
}
// AvailableClusterSetting: available cluster setting.
type AvailableClusterSetting struct {
// Name: name of the setting.
Name string `json:"name"`
// DefaultValue: default value of the setting.
DefaultValue *string `json:"default_value"`
// Type: type of setting.
// Default value: UNKNOWN
Type AvailableClusterSettingPropertyType `json:"type"`
// Description: description of the setting.
Description string `json:"description"`
// MaxValue: optional maximum value of the setting.
MaxValue *int64 `json:"max_value"`
// MinValue: optional minimum value of the setting.
MinValue *int64 `json:"min_value"`
// Regex: optional validation rule of the setting.
Regex *string `json:"regex"`
// Deprecated: defines whether or not the setting is deprecated.
Deprecated bool `json:"deprecated"`
}
// ACLRule: acl rule.
type ACLRule struct {
// ID: ID of the rule.
ID string `json:"id"`
// IPCidr: iPv4 network address of the rule.
IPCidr *scw.IPNet `json:"ip_cidr"`
// Description: description of the rule.
Description *string `json:"description"`
}
// ClusterSetting: cluster setting.
type ClusterSetting struct {
// Value: value of the setting.
Value string `json:"value"`
// Name: name of the setting.
Name string `json:"name"`
}
// Endpoint: endpoint.
type Endpoint struct {
// Port: TCP port of the endpoint.
Port uint32 `json:"port"`
// PrivateNetwork: private Network details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PrivateNetwork *PrivateNetwork `json:"private_network,omitempty"`
// PublicNetwork: public network details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PublicNetwork *PublicNetwork `json:"public_network,omitempty"`
// IPs: list of IPv4 addresses of the endpoint.
IPs []net.IP `json:"ips"`
// ID: UUID of the endpoint.
ID string `json:"id"`
}
// ACLRuleSpec: acl rule spec.
type ACLRuleSpec struct {
// IPCidr: iPv4 network address of the rule.
IPCidr scw.IPNet `json:"ip_cidr"`
// Description: description of the rule.
Description string `json:"description"`
}
// EndpointSpec: endpoint spec.
type EndpointSpec struct {
// PrivateNetwork: private Network specification details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PrivateNetwork *EndpointSpecPrivateNetworkSpec `json:"private_network,omitempty"`
// PublicNetwork: public network specification details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PublicNetwork *EndpointSpecPublicNetworkSpec `json:"public_network,omitempty"`
}
// ClusterVersion: cluster version.
type ClusterVersion struct {
// Version: redis™ engine version.
Version string `json:"version"`
// EndOfLifeAt: date of End of Life.
EndOfLifeAt *time.Time `json:"end_of_life_at"`
// AvailableSettings: cluster settings available to be updated.
AvailableSettings []*AvailableClusterSetting `json:"available_settings"`
// LogoURL: redis™ logo url.
LogoURL string `json:"logo_url"`
// Zone: zone of the Redis™ Database Instance.
Zone scw.Zone `json:"zone"`
}
// Cluster: cluster.
type Cluster struct {
// ID: UUID of the Database Instance.
ID string `json:"id"`
// Name: name of the Database Instance.
Name string `json:"name"`
// ProjectID: project ID the Database Instance belongs to.
ProjectID string `json:"project_id"`
// Status: status of the Database Instance.
// Default value: unknown
Status ClusterStatus `json:"status"`
// Version: redis™ engine version of the Database Instance.
Version string `json:"version"`
// Endpoints: list of Database Instance endpoints.
Endpoints []*Endpoint `json:"endpoints"`
// Tags: list of tags applied to the Database Instance.
Tags []string `json:"tags"`
// NodeType: node type of the Database Instance.
NodeType string `json:"node_type"`
// CreatedAt: creation date (Format ISO 8601).
CreatedAt *time.Time `json:"created_at"`
// UpdatedAt: update date (Format ISO 8601).
UpdatedAt *time.Time `json:"updated_at"`
// TLSEnabled: defines whether or not TLS is enabled.
TLSEnabled bool `json:"tls_enabled"`
// ClusterSettings: list of Database Instance settings.
ClusterSettings []*ClusterSetting `json:"cluster_settings"`
// ACLRules: list of ACL rules.
ACLRules []*ACLRule `json:"acl_rules"`
// ClusterSize: number of nodes of the Database Instance cluster.
ClusterSize uint32 `json:"cluster_size"`
// Zone: zone of the Database Instance.
Zone scw.Zone `json:"zone"`
// UserName: name of the user associated to the cluster.
UserName string `json:"user_name"`
// UpgradableVersions: list of engine versions the Database Instance can upgrade to.
UpgradableVersions []string `json:"upgradable_versions"`
}
// NodeType: node type.
type NodeType struct {
// Name: node type name.
Name string `json:"name"`
// StockStatus: current stock status of the node type.
// Default value: unknown
StockStatus NodeTypeStock `json:"stock_status"`
// Description: current specifications of the offer.
Description string `json:"description"`
// Vcpus: number of virtual CPUs.
Vcpus uint32 `json:"vcpus"`
// Memory: quantity of RAM.
Memory scw.Size `json:"memory"`
// Disabled: defines whether node type is currently disabled or not.
Disabled bool `json:"disabled"`
// Beta: defines whether node type is currently in beta.
Beta bool `json:"beta"`
// Zone: zone of the node type.
Zone scw.Zone `json:"zone"`
}
// AddACLRulesRequest: add acl rules request.
type AddACLRulesRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance you want to add ACL rules to.
ClusterID string `json:"-"`
// ACLRules: aCLs rules to add to the cluster.
ACLRules []*ACLRuleSpec `json:"acl_rules"`
}
// AddACLRulesResponse: add acl rules response.
type AddACLRulesResponse struct {
// ACLRules: ACL Rules enabled for the Database Instance.
ACLRules []*ACLRule `json:"acl_rules"`
// TotalCount: total count of ACL rules of the Database Instance.
TotalCount uint32 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *AddACLRulesResponse) UnsafeGetTotalCount() uint32 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *AddACLRulesResponse) UnsafeAppend(res interface{}) (uint32, error) {
results, ok := res.(*AddACLRulesResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.ACLRules = append(r.ACLRules, results.ACLRules...)
r.TotalCount += uint32(len(results.ACLRules))
return uint32(len(results.ACLRules)), nil
}
// AddClusterSettingsRequest: add cluster settings request.
type AddClusterSettingsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance you want to add settings to.
ClusterID string `json:"-"`
// Settings: settings to add to the cluster.
Settings []*ClusterSetting `json:"settings"`
}
// AddEndpointsRequest: add endpoints request.
type AddEndpointsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance you want to add endpoints to.
ClusterID string `json:"-"`
// Endpoints: endpoints to add to the Database Instance.
Endpoints []*EndpointSpec `json:"endpoints"`
}
// AddEndpointsResponse: add endpoints response.
type AddEndpointsResponse struct {
// Endpoints: endpoints defined on the Database Instance.
Endpoints []*Endpoint `json:"endpoints"`
// TotalCount: total count of endpoints of the Database Instance.
TotalCount uint32 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *AddEndpointsResponse) UnsafeGetTotalCount() uint32 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *AddEndpointsResponse) UnsafeAppend(res interface{}) (uint32, error) {
results, ok := res.(*AddEndpointsResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Endpoints = append(r.Endpoints, results.Endpoints...)
r.TotalCount += uint32(len(results.Endpoints))
return uint32(len(results.Endpoints)), nil
}
// ClusterMetricsResponse: cluster metrics response.
type ClusterMetricsResponse struct {
// Timeseries: time series of metrics of a given cluster.
Timeseries []*scw.TimeSeries `json:"timeseries"`
}
// ClusterSettingsResponse: cluster settings response.
type ClusterSettingsResponse struct {
// Settings: settings configured for a given Database Instance.
Settings []*ClusterSetting `json:"settings"`
}
// CreateClusterRequest: create cluster request.
type CreateClusterRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ProjectID: project ID in which to create the Database Instance.
ProjectID string `json:"project_id"`
// Name: name of the Database Instance.
Name string `json:"name"`
// Version: redis™ engine version of the Database Instance.
Version string `json:"version"`
// Tags: tags to apply to the Database Instance.
Tags []string `json:"tags"`
// NodeType: type of node to use for the Database Instance.
NodeType string `json:"node_type"`
// UserName: name of the user created upon Database Instance creation.
UserName string `json:"user_name"`
// Password: password of the user.
Password string `json:"password"`
// ClusterSize: number of nodes in the Redis™ cluster.
ClusterSize *int32 `json:"cluster_size,omitempty"`
// ACLRules: list of ACLRuleSpec used to secure your publicly exposed cluster.
ACLRules []*ACLRuleSpec `json:"acl_rules"`
// Endpoints: zero or multiple EndpointSpec used to expose your cluster publicly and inside private networks. If no EndpoindSpec is given the cluster will be publicly exposed by default.
Endpoints []*EndpointSpec `json:"endpoints"`
// TLSEnabled: defines whether or not TLS is enabled.
TLSEnabled bool `json:"tls_enabled"`
// ClusterSettings: list of advanced settings to be set upon Database Instance initialization.
ClusterSettings []*ClusterSetting `json:"cluster_settings"`
}
// DeleteACLRuleRequest: delete acl rule request.
type DeleteACLRuleRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ACLID: UUID of the ACL rule you want to delete.
ACLID string `json:"-"`
}
// DeleteClusterRequest: delete cluster request.
type DeleteClusterRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance to delete.
ClusterID string `json:"-"`
}
// DeleteClusterSettingRequest: delete cluster setting request.
type DeleteClusterSettingRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance where the settings must be set.
ClusterID string `json:"-"`
// SettingName: setting name to delete.
SettingName string `json:"-"`
}
// DeleteEndpointRequest: delete endpoint request.
type DeleteEndpointRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// EndpointID: UUID of the endpoint you want to delete.
EndpointID string `json:"-"`
}
// GetACLRuleRequest: get acl rule request.
type GetACLRuleRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ACLID: UUID of the ACL rule you want to get.
ACLID string `json:"-"`
}
// GetClusterCertificateRequest: get cluster certificate request.
type GetClusterCertificateRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the cluster.
ClusterID string `json:"-"`
}
// GetClusterMetricsRequest: get cluster metrics request.
type GetClusterMetricsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the cluster.
ClusterID string `json:"-"`
// StartAt: start date.
StartAt *time.Time `json:"-"`
// EndAt: end date.
EndAt *time.Time `json:"-"`
// MetricName: name of the metric to gather.
MetricName *string `json:"-"`
}
// GetClusterRequest: get cluster request.
type GetClusterRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the cluster.
ClusterID string `json:"-"`
}
// GetEndpointRequest: get endpoint request.
type GetEndpointRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// EndpointID: UUID of the endpoint you want to get.
EndpointID string `json:"-"`
}
// ListClusterVersionsRequest: list cluster versions request.
type ListClusterVersionsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// IncludeDisabled: defines whether or not to include disabled Redis™ engine versions.
IncludeDisabled bool `json:"-"`
// IncludeBeta: defines whether or not to include beta Redis™ engine versions.
IncludeBeta bool `json:"-"`
// IncludeDeprecated: defines whether or not to include deprecated Redis™ engine versions.
IncludeDeprecated bool `json:"-"`
// Version: list Redis™ engine versions that match a given name pattern.
Version *string `json:"-"`
Page *int32 `json:"-"`
PageSize *uint32 `json:"-"`
}
// ListClusterVersionsResponse: list cluster versions response.
type ListClusterVersionsResponse struct {
// Versions: list of available Redis™ engine versions.
Versions []*ClusterVersion `json:"versions"`
// TotalCount: total count of available Redis™ engine versions.
TotalCount uint32 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListClusterVersionsResponse) UnsafeGetTotalCount() uint32 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListClusterVersionsResponse) UnsafeAppend(res interface{}) (uint32, error) {
results, ok := res.(*ListClusterVersionsResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Versions = append(r.Versions, results.Versions...)
r.TotalCount += uint32(len(results.Versions))
return uint32(len(results.Versions)), nil
}
// ListClustersRequest: list clusters request.
type ListClustersRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// Tags: filter by Database Instance tags.
Tags []string `json:"-"`
// Name: filter by Database Instance names.
Name *string `json:"-"`
// OrderBy: criteria to use when ordering the list.
// Default value: created_at_asc
OrderBy ListClustersRequestOrderBy `json:"-"`
// ProjectID: filter by Project ID.
ProjectID *string `json:"-"`
// OrganizationID: filter by Organization ID.
OrganizationID *string `json:"-"`
// Version: filter by Redis™ engine version.
Version *string `json:"-"`
Page *int32 `json:"-"`
PageSize *uint32 `json:"-"`
}
// ListClustersResponse: list clusters response.
type ListClustersResponse struct {
// Clusters: list all Database Instances.
Clusters []*Cluster `json:"clusters"`
// TotalCount: total count of Database Instances.
TotalCount uint32 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListClustersResponse) UnsafeGetTotalCount() uint32 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListClustersResponse) UnsafeAppend(res interface{}) (uint32, error) {
results, ok := res.(*ListClustersResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.Clusters = append(r.Clusters, results.Clusters...)
r.TotalCount += uint32(len(results.Clusters))
return uint32(len(results.Clusters)), nil
}
// ListNodeTypesRequest: list node types request.
type ListNodeTypesRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// IncludeDisabledTypes: defines whether or not to include disabled types.
IncludeDisabledTypes bool `json:"-"`
Page *int32 `json:"-"`
PageSize *uint32 `json:"-"`
}
// ListNodeTypesResponse: list node types response.
type ListNodeTypesResponse struct {
// NodeTypes: types of node.
NodeTypes []*NodeType `json:"node_types"`
// TotalCount: total count of node types available.
TotalCount uint32 `json:"total_count"`
}
// UnsafeGetTotalCount should not be used
// Internal usage only
func (r *ListNodeTypesResponse) UnsafeGetTotalCount() uint32 {
return r.TotalCount
}
// UnsafeAppend should not be used
// Internal usage only
func (r *ListNodeTypesResponse) UnsafeAppend(res interface{}) (uint32, error) {
results, ok := res.(*ListNodeTypesResponse)
if !ok {
return 0, errors.New("%T type cannot be appended to type %T", res, r)
}
r.NodeTypes = append(r.NodeTypes, results.NodeTypes...)
r.TotalCount += uint32(len(results.NodeTypes))
return uint32(len(results.NodeTypes)), nil
}
// MigrateClusterRequest: migrate cluster request.
type MigrateClusterRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance to update.
ClusterID string `json:"-"`
// Version: redis™ engine version of the Database Instance.
// Precisely one of Version, NodeType, ClusterSize must be set.
Version *string `json:"version,omitempty"`
// NodeType: type of node to use for the Database Instance.
// Precisely one of Version, NodeType, ClusterSize must be set.
NodeType *string `json:"node_type,omitempty"`
// ClusterSize: number of nodes for the Database Instance.
// Precisely one of Version, NodeType, ClusterSize must be set.
ClusterSize *uint32 `json:"cluster_size,omitempty"`
}
// RenewClusterCertificateRequest: renew cluster certificate request.
type RenewClusterCertificateRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the cluster.
ClusterID string `json:"-"`
}
// SetACLRulesRequest: set acl rules request.
type SetACLRulesRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance where the ACL rules have to be set.
ClusterID string `json:"-"`
// ACLRules: aCLs rules to define for the cluster.
ACLRules []*ACLRuleSpec `json:"acl_rules"`
}
// SetACLRulesResponse: set acl rules response.
type SetACLRulesResponse struct {
// ACLRules: ACL Rules enabled for the Database Instance.
ACLRules []*ACLRule `json:"acl_rules"`
}
// SetClusterSettingsRequest: set cluster settings request.
type SetClusterSettingsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance where the settings must be set.
ClusterID string `json:"-"`
// Settings: settings to define for the Database Instance.
Settings []*ClusterSetting `json:"settings"`
}
// SetEndpointsRequest: set endpoints request.
type SetEndpointsRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance where the endpoints have to be set.
ClusterID string `json:"-"`
// Endpoints: endpoints to define for the Database Instance.
Endpoints []*EndpointSpec `json:"endpoints"`
}
// SetEndpointsResponse: set endpoints response.
type SetEndpointsResponse struct {
// Endpoints: endpoints defined on the Database Instance.
Endpoints []*Endpoint `json:"endpoints"`
}
// UpdateClusterRequest: update cluster request.
type UpdateClusterRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// ClusterID: UUID of the Database Instance to update.
ClusterID string `json:"-"`
// Name: name of the Database Instance.
Name *string `json:"name,omitempty"`
// Tags: database Instance tags.
Tags *[]string `json:"tags,omitempty"`
// UserName: name of the Database Instance user.
UserName *string `json:"user_name,omitempty"`
// Password: password of the Database Instance user.
Password *string `json:"password,omitempty"`
}
// UpdateEndpointRequest: update endpoint request.
type UpdateEndpointRequest struct {
// Zone: zone to target. If none is passed will use default zone from the config.
Zone scw.Zone `json:"-"`
// EndpointID: UUID of the endpoint you want to get.
EndpointID string `json:"-"`
// PrivateNetwork: private Network details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PrivateNetwork *EndpointSpecPrivateNetworkSpec `json:"private_network,omitempty"`
// PublicNetwork: public network details.
// Precisely one of PrivateNetwork, PublicNetwork must be set.
PublicNetwork *EndpointSpecPublicNetworkSpec `json:"public_network,omitempty"`
}
// This API allows you to manage your Managed Databases for Redis™.
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) Zones() []scw.Zone {
return []scw.Zone{scw.ZoneFrPar1, scw.ZoneFrPar2, scw.ZoneNlAms1, scw.ZoneNlAms2, scw.ZonePlWaw1, scw.ZonePlWaw2}
}
// CreateCluster: Create a new Redis™ Database Instance (Redis™ cluster). You must set the `zone`, `project_id`, `version`, `node_type`, `user_name` and `password` parameters. Optionally you can define `acl_rules`, `endpoints`, `tls_enabled` and `cluster_settings`.
func (s *API) CreateCluster(req *CreateClusterRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if req.ProjectID == "" {
defaultProjectID, _ := s.client.GetDefaultProjectID()
req.ProjectID = defaultProjectID
}
if req.Name == "" {
req.Name = namegenerator.GetRandomName("ins")
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// UpdateCluster: Update the parameters of a Redis™ Database Instance (Redis™ cluster), including `name`, `tags`, `user_name` and `password`.
func (s *API) UpdateCluster(req *UpdateClusterRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PATCH",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetCluster: Retrieve information about a Redis™ Database Instance (Redis™ cluster). Specify the `cluster_id` and `region` in your request to get information such as `id`, `status`, `version`, `tls_enabled`, `cluster_settings`, `upgradable_versions` and `endpoints` about your cluster in the response.
func (s *API) GetCluster(req *GetClusterRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "",
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListClusters: List all Redis™ Database Instances (Redis™ cluster) in the specified zone. By default, the Database Instances returned in the list are ordered by creation date in ascending order, though this can be modified via the order_by field. You can define additional parameters for your query, such as `tags`, `name`, `organization_id` and `version`.
func (s *API) ListClusters(req *ListClustersRequest, opts ...scw.RequestOption) (*ListClustersResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "tags", req.Tags)
parameter.AddToQuery(query, "name", req.Name)
parameter.AddToQuery(query, "order_by", req.OrderBy)
parameter.AddToQuery(query, "project_id", req.ProjectID)
parameter.AddToQuery(query, "organization_id", req.OrganizationID)
parameter.AddToQuery(query, "version", req.Version)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters",
Query: query,
}
var resp ListClustersResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// MigrateCluster: Upgrade your Redis™ Database Instance, either by upgrading to a bigger node type (vertical scaling) or by adding more nodes to your Database Instance to increase your number of endpoints and distribute cache (horizontal scaling, available for clusters only). Note that scaling horizontally your Redis™ Database Instance will not renew its TLS certificate. In order to refresh the TLS certificate, you must use the Renew TLS certificate endpoint.
func (s *API) MigrateCluster(req *MigrateClusterRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/migrate",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteCluster: Delete a Redis™ Database Instance (Redis™ cluster), specified by the `region` and `cluster_id` parameters. Deleting a Database Instance is permanent, and cannot be undone. Note that upon deletion all your data will be lost.
func (s *API) DeleteCluster(req *DeleteClusterRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "",
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetClusterMetrics: Retrieve the metrics of a Redis™ Database Instance (Redis™ cluster). You can define the period from which to retrieve metrics by specifying the `start_date` and `end_date`.
func (s *API) GetClusterMetrics(req *GetClusterMetricsRequest, opts ...scw.RequestOption) (*ClusterMetricsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
query := url.Values{}
parameter.AddToQuery(query, "start_at", req.StartAt)
parameter.AddToQuery(query, "end_at", req.EndAt)
parameter.AddToQuery(query, "metric_name", req.MetricName)
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/metrics",
Query: query,
}
var resp ClusterMetricsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListNodeTypes: List all available node types. By default, the node types returned in the list are ordered by creation date in ascending order, though this can be modified via the `order_by` field.
func (s *API) ListNodeTypes(req *ListNodeTypesRequest, opts ...scw.RequestOption) (*ListNodeTypesResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "include_disabled_types", req.IncludeDisabledTypes)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/node-types",
Query: query,
}
var resp ListNodeTypesResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// ListClusterVersions: List the Redis™ database engine versions available. You can define additional parameters for your query, such as `include_disabled`, `include_beta`, `include_deprecated` and `version`.
func (s *API) ListClusterVersions(req *ListClusterVersionsRequest, opts ...scw.RequestOption) (*ListClusterVersionsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
defaultPageSize, exist := s.client.GetDefaultPageSize()
if (req.PageSize == nil || *req.PageSize == 0) && exist {
req.PageSize = &defaultPageSize
}
query := url.Values{}
parameter.AddToQuery(query, "include_disabled", req.IncludeDisabled)
parameter.AddToQuery(query, "include_beta", req.IncludeBeta)
parameter.AddToQuery(query, "include_deprecated", req.IncludeDeprecated)
parameter.AddToQuery(query, "version", req.Version)
parameter.AddToQuery(query, "page", req.Page)
parameter.AddToQuery(query, "page_size", req.PageSize)
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/cluster-versions",
Query: query,
}
var resp ListClusterVersionsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetClusterCertificate: Retrieve information about the TLS certificate of a Redis™ Database Instance (Redis™ cluster). Details like name and content are returned in the response.
func (s *API) GetClusterCertificate(req *GetClusterCertificateRequest, opts ...scw.RequestOption) (*scw.File, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/certificate",
}
var resp scw.File
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// RenewClusterCertificate: Renew a TLS certificate for a Redis™ Database Instance (Redis™ cluster). Renewing a certificate means that you will not be able to connect to your Database Instance using the previous certificate. You will also need to download and update the new certificate for all database clients.
func (s *API) RenewClusterCertificate(req *RenewClusterCertificateRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/renew-certificate",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// AddClusterSettings: Add an advanced setting to a Redis™ Database Instance (Redis™ cluster). You must set the `name` and the `value` of each setting.
func (s *API) AddClusterSettings(req *AddClusterSettingsRequest, opts ...scw.RequestOption) (*ClusterSettingsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/settings",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp ClusterSettingsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteClusterSetting: Delete an advanced setting in a Redis™ Database Instance (Redis™ cluster). You must specify the names of the settings you want to delete in the request body.
func (s *API) DeleteClusterSetting(req *DeleteClusterSettingRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
if fmt.Sprint(req.SettingName) == "" {
return nil, errors.New("field SettingName cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/settings/" + fmt.Sprint(req.SettingName) + "",
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// SetClusterSettings: Update an advanced setting for a Redis™ Database Instance (Redis™ cluster). Settings added upon database engine initalization can only be defined once, and cannot, therefore, be updated.
func (s *API) SetClusterSettings(req *SetClusterSettingsRequest, opts ...scw.RequestOption) (*ClusterSettingsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PUT",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/settings",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp ClusterSettingsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// SetACLRules: Replace all the ACL rules of a Redis™ Database Instance (Redis™ cluster).
func (s *API) SetACLRules(req *SetACLRulesRequest, opts ...scw.RequestOption) (*SetACLRulesResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PUT",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/acls",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp SetACLRulesResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// AddACLRules: Add an additional ACL rule to a Redis™ Database Instance (Redis™ cluster).
func (s *API) AddACLRules(req *AddACLRulesRequest, opts ...scw.RequestOption) (*AddACLRulesResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/acls",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp AddACLRulesResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteACLRule: Delete an ACL rule of a Redis™ Database Instance (Redis™ cluster). You must specify the `acl_id` of the rule you want to delete in your request.
func (s *API) DeleteACLRule(req *DeleteACLRuleRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ACLID) == "" {
return nil, errors.New("field ACLID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/acls/" + fmt.Sprint(req.ACLID) + "",
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetACLRule: Retrieve information about an ACL rule of a Redis™ Database Instance (Redis™ cluster). You must specify the `acl_id` of the rule in your request.
func (s *API) GetACLRule(req *GetACLRuleRequest, opts ...scw.RequestOption) (*ACLRule, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ACLID) == "" {
return nil, errors.New("field ACLID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/acls/" + fmt.Sprint(req.ACLID) + "",
}
var resp ACLRule
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// SetEndpoints: Update an endpoint for a Redis™ Database Instance (Redis™ cluster). You must specify the `cluster_id` and the `endpoints` parameters in your request.
func (s *API) SetEndpoints(req *SetEndpointsRequest, opts ...scw.RequestOption) (*SetEndpointsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PUT",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/endpoints",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp SetEndpointsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// AddEndpoints: Add a new endpoint for a Redis™ Database Instance (Redis™ cluster). You can add `private_network` or `public_network` specifications to the body of the request.
func (s *API) AddEndpoints(req *AddEndpointsRequest, opts ...scw.RequestOption) (*AddEndpointsResponse, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.ClusterID) == "" {
return nil, errors.New("field ClusterID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "POST",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/clusters/" + fmt.Sprint(req.ClusterID) + "/endpoints",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp AddEndpointsResponse
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// DeleteEndpoint: Delete the endpoint of a Redis™ Database Instance (Redis™ cluster). You must specify the `region` and `endpoint_id` parameters of the endpoint you want to delete. Note that might need to update any environment configurations that point to the deleted endpoint.
func (s *API) DeleteEndpoint(req *DeleteEndpointRequest, opts ...scw.RequestOption) (*Cluster, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.EndpointID) == "" {
return nil, errors.New("field EndpointID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "DELETE",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/endpoints/" + fmt.Sprint(req.EndpointID) + "",
}
var resp Cluster
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// GetEndpoint: Retrieve information about a Redis™ Database Instance (Redis™ cluster) endpoint. Full details about the endpoint, like `ips`, `port`, `private_network` and `public_network` specifications are returned in the response.
func (s *API) GetEndpoint(req *GetEndpointRequest, opts ...scw.RequestOption) (*Endpoint, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.EndpointID) == "" {
return nil, errors.New("field EndpointID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "GET",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/endpoints/" + fmt.Sprint(req.EndpointID) + "",
}
var resp Endpoint
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
// UpdateEndpoint: Update information about a Redis™ Database Instance (Redis™ cluster) endpoint. Full details about the endpoint, like `ips`, `port`, `private_network` and `public_network` specifications are returned in the response.
func (s *API) UpdateEndpoint(req *UpdateEndpointRequest, opts ...scw.RequestOption) (*Endpoint, error) {
var err error
if req.Zone == "" {
defaultZone, _ := s.client.GetDefaultZone()
req.Zone = defaultZone
}
if fmt.Sprint(req.Zone) == "" {
return nil, errors.New("field Zone cannot be empty in request")
}
if fmt.Sprint(req.EndpointID) == "" {
return nil, errors.New("field EndpointID cannot be empty in request")
}
scwReq := &scw.ScalewayRequest{
Method: "PATCH",
Path: "/redis/v1/zones/" + fmt.Sprint(req.Zone) + "/endpoints/" + fmt.Sprint(req.EndpointID) + "",
}
err = scwReq.SetBody(req)
if err != nil {
return nil, err
}
var resp Endpoint
err = s.client.Do(scwReq, &resp, opts...)
if err != nil {
return nil, err
}
return &resp, nil
}
|