Skip to content
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.4",
"regenerated": "2023-06-15 13:52:07.953319",
"spec_repo_commit": "cd68c9b8"
"regenerated": "2023-06-15 14:21:35.777933",
"spec_repo_commit": "aa16daa0"
},
"v2": {
"apigentools_version": "1.6.4",
"regenerated": "2023-06-15 13:52:07.968139",
"spec_repo_commit": "cd68c9b8"
"regenerated": "2023-06-15 14:21:35.790765",
"spec_repo_commit": "aa16daa0"
}
}
}
2 changes: 2 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12408,6 +12408,7 @@ components:
- isInMoreThan
- isInLessThan
- doesNotExist
- isUndefined
example: contains
type: string
x-enum-varnames:
Expand All @@ -12425,6 +12426,7 @@ components:
- IS_IN_MORE_DAYS_THAN
- IS_IN_LESS_DAYS_THAN
- DOES_NOT_EXIST
- IS_UNDEFINED
SyntheticsAssertionTarget:
description: An assertion which uses a simple target.
properties:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public class SyntheticsAssertionOperator {
new SyntheticsAssertionOperator("isInLessThan");
public static final SyntheticsAssertionOperator DOES_NOT_EXIST =
new SyntheticsAssertionOperator("doesNotExist");
public static final SyntheticsAssertionOperator IS_UNDEFINED =
new SyntheticsAssertionOperator("isUndefined");

private static final Set<String> allowedValues =
new HashSet<String>(
Expand All @@ -66,7 +68,8 @@ public class SyntheticsAssertionOperator {
"validates",
"isInMoreThan",
"isInLessThan",
"doesNotExist"));
"doesNotExist",
"isUndefined"));

private String value;

Expand Down