File size: 49,288 Bytes
1e92f2d |
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 |
// Code generated by github.com/99designs/gqlgen, DO NOT EDIT.
package graphql2
import (
"bytes"
"fmt"
"io"
"strconv"
"time"
ast1 "github.com/expr-lang/expr/ast"
"github.com/target/goalert/alert"
"github.com/target/goalert/alert/alertlog"
"github.com/target/goalert/assignment"
"github.com/target/goalert/escalation"
"github.com/target/goalert/gadb"
"github.com/target/goalert/integrationkey"
"github.com/target/goalert/label"
"github.com/target/goalert/limit"
"github.com/target/goalert/notification"
"github.com/target/goalert/notification/slack"
"github.com/target/goalert/override"
"github.com/target/goalert/schedule"
"github.com/target/goalert/schedule/rotation"
"github.com/target/goalert/schedule/rule"
"github.com/target/goalert/service"
"github.com/target/goalert/user"
"github.com/target/goalert/util/timeutil"
)
type InlineDisplayInfo interface {
IsInlineDisplayInfo()
}
type AlertConnection struct {
Nodes []alert.Alert `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type AlertDataPoint struct {
Timestamp time.Time `json:"timestamp"`
AlertCount int `json:"alertCount"`
}
type AlertLogEntryConnection struct {
Nodes []alertlog.Entry `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type AlertMetadata struct {
Key string `json:"key"`
Value string `json:"value"`
}
type AlertMetadataInput struct {
Key string `json:"key"`
Value string `json:"value"`
}
type AlertMetricsOptions struct {
RInterval timeutil.ISORInterval `json:"rInterval"`
FilterByServiceID []string `json:"filterByServiceID,omitempty"`
}
type AlertPendingNotification struct {
Destination string `json:"destination"`
}
type AlertRecentEventsOptions struct {
Limit *int `json:"limit,omitempty"`
After *string `json:"after,omitempty"`
}
type AlertSearchOptions struct {
FilterByStatus []AlertStatus `json:"filterByStatus,omitempty"`
FilterByServiceID []string `json:"filterByServiceID,omitempty"`
Search *string `json:"search,omitempty"`
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
IncludeNotified *bool `json:"includeNotified,omitempty"`
Omit []int `json:"omit,omitempty"`
Sort *AlertSearchSort `json:"sort,omitempty"`
CreatedBefore *time.Time `json:"createdBefore,omitempty"`
NotCreatedBefore *time.Time `json:"notCreatedBefore,omitempty"`
ClosedBefore *time.Time `json:"closedBefore,omitempty"`
NotClosedBefore *time.Time `json:"notClosedBefore,omitempty"`
}
// AlertStats returns aggregated statistics about alerts.
type AlertStats struct {
AvgAckSec []TimeSeriesBucket `json:"avgAckSec"`
AvgCloseSec []TimeSeriesBucket `json:"avgCloseSec"`
AlertCount []TimeSeriesBucket `json:"alertCount"`
EscalatedCount []TimeSeriesBucket `json:"escalatedCount"`
}
type AlertsByStatus struct {
Acked int `json:"acked"`
Unacked int `json:"unacked"`
Closed int `json:"closed"`
}
type AuthSubjectConnection struct {
Nodes []user.AuthSubject `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type CalcRotationHandoffTimesInput struct {
Handoff time.Time `json:"handoff"`
From *time.Time `json:"from,omitempty"`
TimeZone string `json:"timeZone"`
// Only accurate for hourly-type rotations. Use shiftLength instead.
ShiftLengthHours *int `json:"shiftLengthHours,omitempty"`
ShiftLength *timeutil.ISODuration `json:"shiftLength,omitempty"`
Count int `json:"count"`
}
type Clause struct {
Field ast1.Node `json:"field"`
Operator string `json:"operator"`
// Value is a constant value that the field should be compared against.
Value ast1.Node `json:"value"`
// Negate indicates whether the clause should be negated (e.g., not contains vs. contains).
Negate bool `json:"negate"`
}
type ClauseInput struct {
Field ast1.Node `json:"field"`
Operator string `json:"operator"`
// Value is a constant value that the field should be compared against.
Value ast1.Node `json:"value"`
// Negate indicates whether the clause should be negated (e.g., not contains vs. contains).
Negate bool `json:"negate"`
}
type ClearTemporarySchedulesInput struct {
ScheduleID string `json:"scheduleID"`
Start time.Time `json:"start"`
End time.Time `json:"end"`
}
type CloseMatchingAlertInput struct {
ServiceID string `json:"serviceID"`
// Summary (and details) will match an alert with the same values.
//
// They can be omitted if the dedup field is provided.
Summary *string `json:"summary,omitempty"`
Details *string `json:"details,omitempty"`
// Preferred over providing the summary & details.
Dedup *string `json:"dedup,omitempty"`
}
type Condition struct {
Clauses []Clause `json:"clauses"`
}
type ConditionInput struct {
Clauses []ClauseInput `json:"clauses"`
}
type ConditionToExprInput struct {
Condition *ConditionInput `json:"condition"`
}
type ConfigHint struct {
ID string `json:"id"`
Value string `json:"value"`
}
type ConfigValue struct {
ID string `json:"id"`
Description string `json:"description"`
Value string `json:"value"`
Type ConfigType `json:"type"`
Password bool `json:"password"`
Deprecated string `json:"deprecated"`
}
type ConfigValueInput struct {
ID string `json:"id"`
Value string `json:"value"`
}
type CreateAlertInput struct {
Summary string `json:"summary"`
Details *string `json:"details,omitempty"`
ServiceID string `json:"serviceID"`
// If true, summary and details will be automatically sanitized and truncated (if necessary).
Sanitize *bool `json:"sanitize,omitempty"`
// Dedup allows setting a unique value to de-duplicate multiple alerts.
//
// It can also be used to close an alert using closeMatchingAlert mutation.
Dedup *string `json:"dedup,omitempty"`
Meta []AlertMetadataInput `json:"meta,omitempty"`
}
type CreateBasicAuthInput struct {
Username string `json:"username"`
Password string `json:"password"`
UserID string `json:"userID"`
}
type CreateEscalationPolicyInput struct {
Name string `json:"name"`
Description *string `json:"description,omitempty"`
Repeat *int `json:"repeat,omitempty"`
Favorite *bool `json:"favorite,omitempty"`
Steps []CreateEscalationPolicyStepInput `json:"steps,omitempty"`
}
type CreateEscalationPolicyStepInput struct {
EscalationPolicyID *string `json:"escalationPolicyID,omitempty"`
DelayMinutes int `json:"delayMinutes"`
Targets []assignment.RawTarget `json:"targets,omitempty"`
NewRotation *CreateRotationInput `json:"newRotation,omitempty"`
NewSchedule *CreateScheduleInput `json:"newSchedule,omitempty"`
Actions []gadb.DestV1 `json:"actions,omitempty"`
}
type CreateGQLAPIKeyInput struct {
Name string `json:"name"`
Description string `json:"description"`
ExpiresAt time.Time `json:"expiresAt"`
Role UserRole `json:"role"`
Query string `json:"query"`
}
type CreateHeartbeatMonitorInput struct {
ServiceID *string `json:"serviceID,omitempty"`
Name string `json:"name"`
TimeoutMinutes int `json:"timeoutMinutes"`
AdditionalDetails *string `json:"additionalDetails,omitempty"`
// If non-empty, the monitor will be muted with this reason.
//
// Muting a monitor will prevent it from triggering new alerts, but existing
// alerts will remain active until closed or the monitor is healthy again.
Muted *string `json:"muted,omitempty"`
}
type CreateIntegrationKeyInput struct {
ServiceID *string `json:"serviceID,omitempty"`
Type IntegrationKeyType `json:"type"`
Name string `json:"name"`
// Name of the external system this key is managed by.
ExternalSystemName *string `json:"externalSystemName,omitempty"`
}
type CreateRotationInput struct {
Name string `json:"name"`
Description *string `json:"description,omitempty"`
TimeZone string `json:"timeZone"`
Start time.Time `json:"start"`
Favorite *bool `json:"favorite,omitempty"`
Type rotation.Type `json:"type"`
ShiftLength *int `json:"shiftLength,omitempty"`
UserIDs []string `json:"userIDs,omitempty"`
}
type CreateScheduleInput struct {
Name string `json:"name"`
Description *string `json:"description,omitempty"`
TimeZone string `json:"timeZone"`
Favorite *bool `json:"favorite,omitempty"`
Targets []ScheduleTargetInput `json:"targets,omitempty"`
NewUserOverrides []CreateUserOverrideInput `json:"newUserOverrides,omitempty"`
}
type CreateServiceInput struct {
Name string `json:"name"`
Description *string `json:"description,omitempty"`
Favorite *bool `json:"favorite,omitempty"`
EscalationPolicyID *string `json:"escalationPolicyID,omitempty"`
NewEscalationPolicy *CreateEscalationPolicyInput `json:"newEscalationPolicy,omitempty"`
NewIntegrationKeys []CreateIntegrationKeyInput `json:"newIntegrationKeys,omitempty"`
Labels []SetLabelInput `json:"labels,omitempty"`
NewHeartbeatMonitors []CreateHeartbeatMonitorInput `json:"newHeartbeatMonitors,omitempty"`
}
type CreateUserCalendarSubscriptionInput struct {
Name string `json:"name"`
ReminderMinutes []int `json:"reminderMinutes,omitempty"`
ScheduleID string `json:"scheduleID"`
Disabled *bool `json:"disabled,omitempty"`
FullSchedule *bool `json:"fullSchedule,omitempty"`
}
type CreateUserContactMethodInput struct {
UserID string `json:"userID"`
Type *ContactMethodType `json:"type,omitempty"`
Dest *gadb.DestV1 `json:"dest,omitempty"`
Name string `json:"name"`
// Only value or dest should be used at a time, never both.
Value *string `json:"value,omitempty"`
NewUserNotificationRule *CreateUserNotificationRuleInput `json:"newUserNotificationRule,omitempty"`
// If true, this contact method will receive status updates.
//
// Note: Some contact method types, like Slack, will always receive status updates and this value is ignored.
EnableStatusUpdates *bool `json:"enableStatusUpdates,omitempty"`
}
type CreateUserInput struct {
Username string `json:"username"`
Password string `json:"password"`
Name *string `json:"name,omitempty"`
Email *string `json:"email,omitempty"`
Role *UserRole `json:"role,omitempty"`
Favorite *bool `json:"favorite,omitempty"`
}
type CreateUserNotificationRuleInput struct {
UserID *string `json:"userID,omitempty"`
ContactMethodID *string `json:"contactMethodID,omitempty"`
DelayMinutes int `json:"delayMinutes"`
}
type CreateUserOverrideInput struct {
ScheduleID *string `json:"scheduleID,omitempty"`
Start time.Time `json:"start"`
End time.Time `json:"end"`
AddUserID *string `json:"addUserID,omitempty"`
RemoveUserID *string `json:"removeUserID,omitempty"`
}
type CreatedGQLAPIKey struct {
ID string `json:"id"`
Token string `json:"token"`
}
type DebugCarrierInfoInput struct {
Number string `json:"number"`
}
type DebugMessage struct {
ID string `json:"id"`
CreatedAt time.Time `json:"createdAt"`
UpdatedAt time.Time `json:"updatedAt"`
Type string `json:"type"`
Status string `json:"status"`
UserID *string `json:"userID,omitempty"`
UserName *string `json:"userName,omitempty"`
Source *string `json:"source,omitempty"`
Destination string `json:"destination"`
ServiceID *string `json:"serviceID,omitempty"`
ServiceName *string `json:"serviceName,omitempty"`
AlertID *int `json:"alertID,omitempty"`
ProviderID *string `json:"providerID,omitempty"`
SentAt *time.Time `json:"sentAt,omitempty"`
RetryCount int `json:"retryCount"`
}
type DebugMessageStatusInfo struct {
State *NotificationState `json:"state"`
}
type DebugMessageStatusInput struct {
ProviderMessageID string `json:"providerMessageID"`
}
type DebugMessagesInput struct {
First *int `json:"first,omitempty"`
CreatedBefore *time.Time `json:"createdBefore,omitempty"`
CreatedAfter *time.Time `json:"createdAfter,omitempty"`
}
type DebugSendSMSInfo struct {
ID string `json:"id"`
ProviderURL string `json:"providerURL"`
FromNumber string `json:"fromNumber"`
}
type DebugSendSMSInput struct {
From string `json:"from"`
To string `json:"to"`
Body string `json:"body"`
}
type DestinationDisplayInfoError struct {
// error message to display when the display info cannot be retrieved
Error string `json:"error"`
}
func (DestinationDisplayInfoError) IsInlineDisplayInfo() {}
type DestinationFieldSearchInput struct {
// the type of destination to search for
DestType string `json:"destType"`
// the ID of the input field to search for
FieldID string `json:"fieldID"`
// search string to match against
Search *string `json:"search,omitempty"`
// values/ids to omit from results
Omit []string `json:"omit,omitempty"`
// cursor to start search from
After *string `json:"after,omitempty"`
// number of results to return
First *int `json:"first,omitempty"`
}
type DestinationFieldValidateInput struct {
// the type of destination to validate
DestType string `json:"destType"`
// the ID of the input field to validate
FieldID string `json:"fieldID"`
// the value to validate
Value string `json:"value"`
}
type EscalationPolicyConnection struct {
Nodes []escalation.Policy `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type EscalationPolicySearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
// Include only favorited escalation policies in the results.
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
// Sort favorite escalation policies first.
FavoritesFirst *bool `json:"favoritesFirst,omitempty"`
}
// Expr contains helpers for working with Expr expressions.
type Expr struct {
// exprToCondition converts an Expr expression to a Condition.
ExprToCondition *Condition `json:"exprToCondition"`
// conditionToExpr converts a Condition to an Expr expression.
ConditionToExpr string `json:"conditionToExpr"`
}
type ExprToConditionInput struct {
Expr string `json:"expr"`
}
// FieldSearchConnection is a connection to a list of FieldSearchResult.
type FieldSearchConnection struct {
Nodes []FieldSearchResult `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type FieldSearchResult struct {
// The ID of the input field that this value is for.
FieldID string `json:"fieldID"`
// The value of the input field.
Value string `json:"value"`
// The user-friendly text for this value of the input field (e.g., if the value is a user ID, label would be the user's name).
Label string `json:"label"`
// if true, this value is a favorite for the user, only set for search results
IsFavorite bool `json:"isFavorite"`
}
type FieldValueInput struct {
// The ID of the input field that this value is for.
FieldID string `json:"fieldID"`
Value string `json:"value"`
}
type FieldValuePair struct {
// The ID of the input field that this value is for.
FieldID string `json:"fieldID"`
// The value of the input field.
Value string `json:"value"`
}
type GQLAPIKey struct {
ID string `json:"id"`
Name string `json:"name"`
Description string `json:"description"`
CreatedAt time.Time `json:"createdAt"`
CreatedBy *user.User `json:"createdBy,omitempty"`
UpdatedAt time.Time `json:"updatedAt"`
UpdatedBy *user.User `json:"updatedBy,omitempty"`
LastUsed *GQLAPIKeyUsage `json:"lastUsed,omitempty"`
ExpiresAt time.Time `json:"expiresAt"`
Query string `json:"query"`
Role UserRole `json:"role"`
}
type GQLAPIKeyUsage struct {
Time time.Time `json:"time"`
Ua string `json:"ua"`
IP string `json:"ip"`
}
type IntegrationKeyConnection struct {
Nodes []integrationkey.IntegrationKey `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type IntegrationKeySearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type IntegrationKeyTypeInfo struct {
ID string `json:"id"`
// User-displayable name of the integration key type.
Name string `json:"name"`
// User-displayable description of the integration key value (i.e., copy/paste instructions).
Label string `json:"label"`
// Indicates if the type is currently enabled.
Enabled bool `json:"enabled"`
}
type LabelConnection struct {
Nodes []label.Label `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type LabelKeySearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type LabelSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
UniqueKeys *bool `json:"uniqueKeys,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type LabelValueSearchOptions struct {
Key string `json:"key"`
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type LinkAccountInfo struct {
UserDetails string `json:"userDetails"`
AlertID *int `json:"alertID,omitempty"`
AlertNewStatus *AlertStatus `json:"alertNewStatus,omitempty"`
}
type MessageLogConnection struct {
Nodes []DebugMessage `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
Stats *notification.SearchOptions `json:"stats"`
}
type MessageLogSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
CreatedBefore *time.Time `json:"createdBefore,omitempty"`
CreatedAfter *time.Time `json:"createdAfter,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type MessageStatusHistory struct {
Status string `json:"status"`
Details string `json:"details"`
Timestamp time.Time `json:"timestamp"`
}
type Mutation struct {
}
type NotificationState struct {
Details string `json:"details"`
Status *NotificationStatus `json:"status,omitempty"`
FormattedSrcValue string `json:"formattedSrcValue"`
}
type OnCallOverview struct {
ServiceCount int `json:"serviceCount"`
ServiceAssignments []OnCallServiceAssignment `json:"serviceAssignments"`
}
type OnCallServiceAssignment struct {
// Step number is the escalation step this assignment is from (beginning with 0).
StepNumber int `json:"stepNumber"`
EscalationPolicyID string `json:"escalationPolicyID"`
EscalationPolicyName string `json:"escalationPolicyName"`
ServiceID string `json:"serviceID"`
ServiceName string `json:"serviceName"`
}
type PageInfo struct {
EndCursor *string `json:"endCursor,omitempty"`
HasNextPage bool `json:"hasNextPage"`
}
type PhoneNumberInfo struct {
ID string `json:"id"`
CountryCode string `json:"countryCode"`
RegionCode string `json:"regionCode"`
Formatted string `json:"formatted"`
Valid bool `json:"valid"`
Error string `json:"error"`
}
type Query struct {
}
type RotationConnection struct {
Nodes []rotation.Rotation `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type RotationSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
// Include only favorited rotations in the results.
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
// Sort favorite rotations first.
FavoritesFirst *bool `json:"favoritesFirst,omitempty"`
}
type SWOConnection struct {
Name string `json:"name"`
Version string `json:"version"`
Type string `json:"type"`
IsNext bool `json:"isNext"`
Count int `json:"count"`
}
type SWONode struct {
ID string `json:"id"`
CanExec bool `json:"canExec"`
IsLeader bool `json:"isLeader"`
// The uptime of the node in seconds. Empty if the node/connection is *not* a GoAlert instance in SWO mode.
Uptime string `json:"uptime"`
ConfigError string `json:"configError"`
Connections []SWOConnection `json:"connections,omitempty"`
}
type SWOStatus struct {
State SWOState `json:"state"`
LastStatus string `json:"lastStatus"`
LastError string `json:"lastError"`
Nodes []SWONode `json:"nodes"`
MainDBVersion string `json:"mainDBVersion"`
NextDBVersion string `json:"nextDBVersion"`
}
type ScheduleConnection struct {
Nodes []schedule.Schedule `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type ScheduleRuleInput struct {
ID *string `json:"id,omitempty"`
Start *timeutil.Clock `json:"start,omitempty"`
End *timeutil.Clock `json:"end,omitempty"`
// Weekday filter is a 7-item array that indicates if the rule is active on each weekday, starting with Sunday.
WeekdayFilter *timeutil.WeekdayFilter `json:"weekdayFilter,omitempty"`
}
type ScheduleSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
// Include only favorited services in the results.
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
// Sort favorite services first.
FavoritesFirst *bool `json:"favoritesFirst,omitempty"`
}
type ScheduleTarget struct {
ScheduleID string `json:"scheduleID"`
Target *assignment.RawTarget `json:"target"`
Rules []rule.Rule `json:"rules"`
}
type ScheduleTargetInput struct {
ScheduleID *string `json:"scheduleID,omitempty"`
Target *assignment.RawTarget `json:"target,omitempty"`
NewRotation *CreateRotationInput `json:"newRotation,omitempty"`
Rules []ScheduleRuleInput `json:"rules"`
}
type SendContactMethodVerificationInput struct {
ContactMethodID string `json:"contactMethodID"`
}
type ServiceAlertStatsOptions struct {
Start *time.Time `json:"start,omitempty"`
End *time.Time `json:"end,omitempty"`
TsOptions *TimeSeriesOptions `json:"tsOptions,omitempty"`
}
type ServiceConnection struct {
Nodes []service.Service `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type ServiceSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
Only []string `json:"only,omitempty"`
// Include only favorited services in the results.
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
// Sort favorite services first.
FavoritesFirst *bool `json:"favoritesFirst,omitempty"`
}
type SetAlertNoiseReasonInput struct {
AlertID int `json:"alertID"`
NoiseReason string `json:"noiseReason"`
}
type SetFavoriteInput struct {
Target *assignment.RawTarget `json:"target"`
Favorite bool `json:"favorite"`
}
type SetLabelInput struct {
Target *assignment.RawTarget `json:"target,omitempty"`
Key string `json:"key"`
// If value is empty, the label is removed.
Value string `json:"value"`
}
type SetScheduleOnCallNotificationRulesInput struct {
ScheduleID string `json:"scheduleID"`
Rules []OnCallNotificationRuleInput `json:"rules"`
}
type SetTemporaryScheduleInput struct {
ScheduleID string `json:"scheduleID"`
ClearStart *time.Time `json:"clearStart,omitempty"`
ClearEnd *time.Time `json:"clearEnd,omitempty"`
Start time.Time `json:"start"`
End time.Time `json:"end"`
Shifts []schedule.FixedShift `json:"shifts"`
}
type SlackChannelConnection struct {
Nodes []slack.Channel `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type SlackChannelSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type SlackUserGroupConnection struct {
Nodes []slack.UserGroup `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type SlackUserGroupSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type StringConnection struct {
Nodes []string `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type SystemLimit struct {
ID limit.ID `json:"id"`
Description string `json:"description"`
Value int `json:"value"`
}
type SystemLimitInput struct {
ID limit.ID `json:"id"`
Value int `json:"value"`
}
type TimeSeriesBucket struct {
Start time.Time `json:"start"`
End time.Time `json:"end"`
Count int `json:"count"`
Value float64 `json:"value"`
}
type TimeSeriesOptions struct {
BucketDuration timeutil.ISODuration `json:"bucketDuration"`
BucketOrigin *time.Time `json:"bucketOrigin,omitempty"`
}
type TimeZone struct {
ID string `json:"id"`
}
type TimeZoneConnection struct {
Nodes []TimeZone `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type TimeZoneSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
}
type TokenInfo struct {
// primaryHint is a hint for the primary token. It is empty if the primary token is not set.
PrimaryHint string `json:"primaryHint"`
// secondaryHint is a hint for the secondary token. It is empty if the secondary token is not set.
SecondaryHint string `json:"secondaryHint"`
}
type UpdateAlertsByServiceInput struct {
ServiceID string `json:"serviceID"`
NewStatus AlertStatus `json:"newStatus"`
}
type UpdateAlertsInput struct {
// List of alert IDs.
AlertIDs []int `json:"alertIDs"`
NewStatus *AlertStatus `json:"newStatus,omitempty"`
NoiseReason *string `json:"noiseReason,omitempty"`
}
type UpdateBasicAuthInput struct {
Password string `json:"password"`
OldPassword *string `json:"oldPassword,omitempty"`
UserID string `json:"userID"`
}
type UpdateEscalationPolicyInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
Repeat *int `json:"repeat,omitempty"`
StepIDs []string `json:"stepIDs,omitempty"`
}
type UpdateEscalationPolicyStepInput struct {
ID string `json:"id"`
DelayMinutes *int `json:"delayMinutes,omitempty"`
Targets []assignment.RawTarget `json:"targets,omitempty"`
Actions []gadb.DestV1 `json:"actions,omitempty"`
}
type UpdateGQLAPIKeyInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
}
type UpdateHeartbeatMonitorInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
TimeoutMinutes *int `json:"timeoutMinutes,omitempty"`
AdditionalDetails *string `json:"additionalDetails,omitempty"`
// If non-empty, the monitor will be muted with this reason.
//
// Muting a monitor will prevent it from triggering new alerts, but existing
// alerts will remain active until closed or the monitor is healthy again.
Muted *string `json:"muted,omitempty"`
}
type UpdateKeyConfigInput struct {
KeyID string `json:"keyID"`
Rules []gadb.UIKRuleV1 `json:"rules,omitempty"`
// setRule allows you to set a single rule. If ID is provided, the rule with that ID will be updated. If ID is not provided, a new rule will be created and appended to the list of rules.
SetRule *gadb.UIKRuleV1 `json:"setRule,omitempty"`
// setRuleActions allows you to set the actions for a single rule by ID.
SetRuleActions *gadb.UIKRuleV1 `json:"setRuleActions,omitempty"`
// setRuleOrder allows you to reorder rules by ID.
SetRuleOrder []string `json:"setRuleOrder,omitempty"`
// deleteRule allows you to delete a single rule by ID.
DeleteRule *string `json:"deleteRule,omitempty"`
// defaultAction is the action to take if no rules match the request.
DefaultActions []gadb.UIKActionV1 `json:"defaultActions,omitempty"`
}
type UpdateRotationInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
TimeZone *string `json:"timeZone,omitempty"`
Start *time.Time `json:"start,omitempty"`
Type *rotation.Type `json:"type,omitempty"`
ShiftLength *int `json:"shiftLength,omitempty"`
UserIDs []string `json:"userIDs,omitempty"`
// The index of the user in `userIDs` to set as the active user. If not provided, the existing active user index will be used.
ActiveUserIndex *int `json:"activeUserIndex,omitempty"`
}
type UpdateScheduleInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
TimeZone *string `json:"timeZone,omitempty"`
}
type UpdateServiceInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Description *string `json:"description,omitempty"`
EscalationPolicyID *string `json:"escalationPolicyID,omitempty"`
MaintenanceExpiresAt *time.Time `json:"maintenanceExpiresAt,omitempty"`
}
type UpdateUserCalendarSubscriptionInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
ReminderMinutes []int `json:"reminderMinutes,omitempty"`
Disabled *bool `json:"disabled,omitempty"`
FullSchedule *bool `json:"fullSchedule,omitempty"`
}
type UpdateUserContactMethodInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Value *string `json:"value,omitempty"`
// If true, this contact method will receive status updates.
//
// Note: Some contact method types, like Slack, will always receive status updates and this value is ignored.
EnableStatusUpdates *bool `json:"enableStatusUpdates,omitempty"`
}
type UpdateUserInput struct {
ID string `json:"id"`
Name *string `json:"name,omitempty"`
Email *string `json:"email,omitempty"`
Role *UserRole `json:"role,omitempty"`
StatusUpdateContactMethodID *string `json:"statusUpdateContactMethodID,omitempty"`
}
type UpdateUserOverrideInput struct {
ID string `json:"id"`
Start *time.Time `json:"start,omitempty"`
End *time.Time `json:"end,omitempty"`
AddUserID *string `json:"addUserID,omitempty"`
RemoveUserID *string `json:"removeUserID,omitempty"`
}
type UserConnection struct {
Nodes []user.User `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type UserOverrideConnection struct {
Nodes []override.UserOverride `json:"nodes"`
PageInfo *PageInfo `json:"pageInfo"`
}
type UserOverrideSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Omit []string `json:"omit,omitempty"`
// Limit search to a single schedule
ScheduleID *string `json:"scheduleID,omitempty"`
// Only return overrides where the provided users have been added to a schedule (add or replace types).
FilterAddUserID []string `json:"filterAddUserID,omitempty"`
// Only return overrides where the provided users have been removed from a schedule (remove or replace types).
FilterRemoveUserID []string `json:"filterRemoveUserID,omitempty"`
// Only return overrides that add/remove/replace at least one of the provided user IDs.
FilterAnyUserID []string `json:"filterAnyUserID,omitempty"`
// Start of the window to search for.
Start *time.Time `json:"start,omitempty"`
// End of the window to search for.
End *time.Time `json:"end,omitempty"`
}
type UserSearchOptions struct {
First *int `json:"first,omitempty"`
After *string `json:"after,omitempty"`
Search *string `json:"search,omitempty"`
Omit []string `json:"omit,omitempty"`
CMValue *string `json:"CMValue,omitempty"`
CMType *ContactMethodType `json:"CMType,omitempty"`
Dest *gadb.DestV1 `json:"dest,omitempty"`
// Include only favorited services in the results.
FavoritesOnly *bool `json:"favoritesOnly,omitempty"`
// Sort favorite services first.
FavoritesFirst *bool `json:"favoritesFirst,omitempty"`
}
type UserSession struct {
ID string `json:"id"`
Current bool `json:"current"`
UserAgent string `json:"userAgent"`
CreatedAt time.Time `json:"createdAt"`
LastAccessAt time.Time `json:"lastAccessAt"`
}
type VerifyContactMethodInput struct {
ContactMethodID string `json:"contactMethodID"`
Code int `json:"code"`
}
type AlertSearchSort string
const (
AlertSearchSortStatusID AlertSearchSort = "statusID"
AlertSearchSortDateID AlertSearchSort = "dateID"
AlertSearchSortDateIDReverse AlertSearchSort = "dateIDReverse"
)
var AllAlertSearchSort = []AlertSearchSort{
AlertSearchSortStatusID,
AlertSearchSortDateID,
AlertSearchSortDateIDReverse,
}
func (e AlertSearchSort) IsValid() bool {
switch e {
case AlertSearchSortStatusID, AlertSearchSortDateID, AlertSearchSortDateIDReverse:
return true
}
return false
}
func (e AlertSearchSort) String() string {
return string(e)
}
func (e *AlertSearchSort) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = AlertSearchSort(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid AlertSearchSort", str)
}
return nil
}
func (e AlertSearchSort) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *AlertSearchSort) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e AlertSearchSort) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type AlertStatus string
const (
AlertStatusStatusAcknowledged AlertStatus = "StatusAcknowledged"
AlertStatusStatusClosed AlertStatus = "StatusClosed"
AlertStatusStatusUnacknowledged AlertStatus = "StatusUnacknowledged"
)
var AllAlertStatus = []AlertStatus{
AlertStatusStatusAcknowledged,
AlertStatusStatusClosed,
AlertStatusStatusUnacknowledged,
}
func (e AlertStatus) IsValid() bool {
switch e {
case AlertStatusStatusAcknowledged, AlertStatusStatusClosed, AlertStatusStatusUnacknowledged:
return true
}
return false
}
func (e AlertStatus) String() string {
return string(e)
}
func (e *AlertStatus) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = AlertStatus(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid AlertStatus", str)
}
return nil
}
func (e AlertStatus) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *AlertStatus) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e AlertStatus) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type ConfigType string
const (
ConfigTypeString ConfigType = "string"
ConfigTypeStringList ConfigType = "stringList"
ConfigTypeInteger ConfigType = "integer"
ConfigTypeBoolean ConfigType = "boolean"
)
var AllConfigType = []ConfigType{
ConfigTypeString,
ConfigTypeStringList,
ConfigTypeInteger,
ConfigTypeBoolean,
}
func (e ConfigType) IsValid() bool {
switch e {
case ConfigTypeString, ConfigTypeStringList, ConfigTypeInteger, ConfigTypeBoolean:
return true
}
return false
}
func (e ConfigType) String() string {
return string(e)
}
func (e *ConfigType) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = ConfigType(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid ConfigType", str)
}
return nil
}
func (e ConfigType) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *ConfigType) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e ConfigType) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type ContactMethodType string
const (
ContactMethodTypeSms ContactMethodType = "SMS"
ContactMethodTypeVoice ContactMethodType = "VOICE"
ContactMethodTypeEmail ContactMethodType = "EMAIL"
ContactMethodTypeWebhook ContactMethodType = "WEBHOOK"
ContactMethodTypeSLACkDm ContactMethodType = "SLACK_DM"
)
var AllContactMethodType = []ContactMethodType{
ContactMethodTypeSms,
ContactMethodTypeVoice,
ContactMethodTypeEmail,
ContactMethodTypeWebhook,
ContactMethodTypeSLACkDm,
}
func (e ContactMethodType) IsValid() bool {
switch e {
case ContactMethodTypeSms, ContactMethodTypeVoice, ContactMethodTypeEmail, ContactMethodTypeWebhook, ContactMethodTypeSLACkDm:
return true
}
return false
}
func (e ContactMethodType) String() string {
return string(e)
}
func (e *ContactMethodType) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = ContactMethodType(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid ContactMethodType", str)
}
return nil
}
func (e ContactMethodType) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *ContactMethodType) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e ContactMethodType) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
// Known error codes that the server can return.
//
// These values will be returned in the `extensions.code` field of the error response.
type ErrorCode string
const (
// The input value is invalid, the `path` field will contain the exact path to the invalid input.
//
// A separate error will be returned for each invalid field.
ErrorCodeInvalidInputValue ErrorCode = "INVALID_INPUT_VALUE"
// The `path` field contains the exact path to the DestinationInput that is invalid.
//
// The `extensions.fieldID` field contains the ID of the input field that is invalid.
//
// A separate error will be returned for each invalid field.
ErrorCodeInvalidDestFieldValue ErrorCode = "INVALID_DEST_FIELD_VALUE"
// The `path` field contains the exact path to the map that is invalid.
//
// The `extensions.key` field contains the key of the value that is invalid.
//
// A separate error will be returned for each invalid value.
ErrorCodeInvalidMapFieldValue ErrorCode = "INVALID_MAP_FIELD_VALUE"
// The expr expression is too complex to be converted to a Condition.
ErrorCodeExprTooComplex ErrorCode = "EXPR_TOO_COMPLEX"
)
var AllErrorCode = []ErrorCode{
ErrorCodeInvalidInputValue,
ErrorCodeInvalidDestFieldValue,
ErrorCodeInvalidMapFieldValue,
ErrorCodeExprTooComplex,
}
func (e ErrorCode) IsValid() bool {
switch e {
case ErrorCodeInvalidInputValue, ErrorCodeInvalidDestFieldValue, ErrorCodeInvalidMapFieldValue, ErrorCodeExprTooComplex:
return true
}
return false
}
func (e ErrorCode) String() string {
return string(e)
}
func (e *ErrorCode) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = ErrorCode(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid ErrorCode", str)
}
return nil
}
func (e ErrorCode) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *ErrorCode) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e ErrorCode) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type IntegrationKeyType string
const (
IntegrationKeyTypeGeneric IntegrationKeyType = "generic"
IntegrationKeyTypeGrafana IntegrationKeyType = "grafana"
IntegrationKeyTypeSite24x7 IntegrationKeyType = "site24x7"
IntegrationKeyTypePrometheusAlertmanager IntegrationKeyType = "prometheusAlertmanager"
IntegrationKeyTypeEmail IntegrationKeyType = "email"
IntegrationKeyTypeUniversal IntegrationKeyType = "universal"
)
var AllIntegrationKeyType = []IntegrationKeyType{
IntegrationKeyTypeGeneric,
IntegrationKeyTypeGrafana,
IntegrationKeyTypeSite24x7,
IntegrationKeyTypePrometheusAlertmanager,
IntegrationKeyTypeEmail,
IntegrationKeyTypeUniversal,
}
func (e IntegrationKeyType) IsValid() bool {
switch e {
case IntegrationKeyTypeGeneric, IntegrationKeyTypeGrafana, IntegrationKeyTypeSite24x7, IntegrationKeyTypePrometheusAlertmanager, IntegrationKeyTypeEmail, IntegrationKeyTypeUniversal:
return true
}
return false
}
func (e IntegrationKeyType) String() string {
return string(e)
}
func (e *IntegrationKeyType) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = IntegrationKeyType(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid IntegrationKeyType", str)
}
return nil
}
func (e IntegrationKeyType) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *IntegrationKeyType) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e IntegrationKeyType) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type NotificationStatus string
const (
NotificationStatusOk NotificationStatus = "OK"
NotificationStatusWarn NotificationStatus = "WARN"
NotificationStatusError NotificationStatus = "ERROR"
)
var AllNotificationStatus = []NotificationStatus{
NotificationStatusOk,
NotificationStatusWarn,
NotificationStatusError,
}
func (e NotificationStatus) IsValid() bool {
switch e {
case NotificationStatusOk, NotificationStatusWarn, NotificationStatusError:
return true
}
return false
}
func (e NotificationStatus) String() string {
return string(e)
}
func (e *NotificationStatus) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = NotificationStatus(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid NotificationStatus", str)
}
return nil
}
func (e NotificationStatus) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *NotificationStatus) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e NotificationStatus) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type SWOAction string
const (
SWOActionReset SWOAction = "reset"
SWOActionExecute SWOAction = "execute"
)
var AllSWOAction = []SWOAction{
SWOActionReset,
SWOActionExecute,
}
func (e SWOAction) IsValid() bool {
switch e {
case SWOActionReset, SWOActionExecute:
return true
}
return false
}
func (e SWOAction) String() string {
return string(e)
}
func (e *SWOAction) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = SWOAction(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid SWOAction", str)
}
return nil
}
func (e SWOAction) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *SWOAction) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e SWOAction) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type SWOState string
const (
SWOStateUnknown SWOState = "unknown"
SWOStateResetting SWOState = "resetting"
SWOStateIdle SWOState = "idle"
SWOStateSyncing SWOState = "syncing"
SWOStatePausing SWOState = "pausing"
SWOStateExecuting SWOState = "executing"
SWOStateDone SWOState = "done"
)
var AllSWOState = []SWOState{
SWOStateUnknown,
SWOStateResetting,
SWOStateIdle,
SWOStateSyncing,
SWOStatePausing,
SWOStateExecuting,
SWOStateDone,
}
func (e SWOState) IsValid() bool {
switch e {
case SWOStateUnknown, SWOStateResetting, SWOStateIdle, SWOStateSyncing, SWOStatePausing, SWOStateExecuting, SWOStateDone:
return true
}
return false
}
func (e SWOState) String() string {
return string(e)
}
func (e *SWOState) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = SWOState(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid SWOState", str)
}
return nil
}
func (e SWOState) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *SWOState) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e SWOState) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type StatusUpdateState string
const (
StatusUpdateStateDisabled StatusUpdateState = "DISABLED"
StatusUpdateStateEnabled StatusUpdateState = "ENABLED"
StatusUpdateStateEnabledForced StatusUpdateState = "ENABLED_FORCED"
StatusUpdateStateDisabledForced StatusUpdateState = "DISABLED_FORCED"
)
var AllStatusUpdateState = []StatusUpdateState{
StatusUpdateStateDisabled,
StatusUpdateStateEnabled,
StatusUpdateStateEnabledForced,
StatusUpdateStateDisabledForced,
}
func (e StatusUpdateState) IsValid() bool {
switch e {
case StatusUpdateStateDisabled, StatusUpdateStateEnabled, StatusUpdateStateEnabledForced, StatusUpdateStateDisabledForced:
return true
}
return false
}
func (e StatusUpdateState) String() string {
return string(e)
}
func (e *StatusUpdateState) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = StatusUpdateState(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid StatusUpdateState", str)
}
return nil
}
func (e StatusUpdateState) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *StatusUpdateState) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e StatusUpdateState) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
type UserRole string
const (
UserRoleUnknown UserRole = "unknown"
UserRoleUser UserRole = "user"
UserRoleAdmin UserRole = "admin"
)
var AllUserRole = []UserRole{
UserRoleUnknown,
UserRoleUser,
UserRoleAdmin,
}
func (e UserRole) IsValid() bool {
switch e {
case UserRoleUnknown, UserRoleUser, UserRoleAdmin:
return true
}
return false
}
func (e UserRole) String() string {
return string(e)
}
func (e *UserRole) UnmarshalGQL(v any) error {
str, ok := v.(string)
if !ok {
return fmt.Errorf("enums must be strings")
}
*e = UserRole(str)
if !e.IsValid() {
return fmt.Errorf("%s is not a valid UserRole", str)
}
return nil
}
func (e UserRole) MarshalGQL(w io.Writer) {
fmt.Fprint(w, strconv.Quote(e.String()))
}
func (e *UserRole) UnmarshalJSON(b []byte) error {
s, err := strconv.Unquote(string(b))
if err != nil {
return err
}
return e.UnmarshalGQL(s)
}
func (e UserRole) MarshalJSON() ([]byte, error) {
var buf bytes.Buffer
e.MarshalGQL(&buf)
return buf.Bytes(), nil
}
|