Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fork Sync: Update from parent repository #341

Merged
merged 1 commit into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 55 additions & 5 deletions docs/webhook_events.md
Original file line number Diff line number Diff line change
Expand Up @@ -1173,7 +1173,17 @@ If webhook is set to have Event Grid message format then the payload will look a
471,
472,
473,
474
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484
],
"title": "ErrorCode"
},
Expand Down Expand Up @@ -1809,7 +1819,17 @@ If webhook is set to have Event Grid message format then the payload will look a
471,
472,
473,
474
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484
],
"title": "ErrorCode"
}
Expand Down Expand Up @@ -2744,7 +2764,17 @@ If webhook is set to have Event Grid message format then the payload will look a
471,
472,
473,
474
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484
],
"title": "ErrorCode"
}
Expand Down Expand Up @@ -3461,7 +3491,17 @@ If webhook is set to have Event Grid message format then the payload will look a
471,
472,
473,
474
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484
],
"title": "ErrorCode"
},
Expand Down Expand Up @@ -5529,7 +5569,17 @@ If webhook is set to have Event Grid message format then the payload will look a
471,
472,
473,
474
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484
],
"title": "ErrorCode"
},
Expand Down
1 change: 1 addition & 0 deletions src/ApiService/ApiService/OneFuzzTypes/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public enum ErrorCode {
UNEXPECTED_DATA_SHAPE = 482,
UNABLE_TO_SEND = 483,
NODE_DELETED = 484,
// NB: if you update this enum, also update enums.py
}

public enum VmState {
Expand Down
11 changes: 11 additions & 0 deletions src/pytypes/onefuzztypes/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,17 @@ class ErrorCode(Enum):
PROXY_FAILED = 472
INVALID_CONFIGURATION = 473
UNABLE_TO_CREATE_CONTAINER = 474
UNABLE_TO_DOWNLOAD_FILE = 475
VM_UPDATE_FAILED = 476
UNSUPPORTED_FIELD_OPERATION = 477
ADO_VALIDATION_INVALID_PAT = 478
ADO_VALIDATION_INVALID_FIELDS = 479
GITHUB_VALIDATION_INVALID_PAT = 480
GITHUB_VALIDATION_INVALID_REPOSITORY = 481
UNEXPECTED_DATA_SHAPE = 482
UNABLE_TO_SEND = 483
NODE_DELETED = 484
# NB: if you update this enum, also update Enums.cs


class HeartbeatType(Enum):
Expand Down