File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed
src/main/java/com/datadog/api/client/v1/model Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -17712,6 +17712,8 @@ components:
1771217712 - assertPageLacks
1771317713 - assertRequests
1771417714 - click
17715+ - drag
17716+ - drop
1771517717 - extractFromJavascript
1771617718 - extractFromEmailBody
1771717719 - extractVariable
@@ -17742,6 +17744,8 @@ components:
1774217744 - ASSERT_PAGE_LACKS
1774317745 - ASSERT_REQUESTS
1774417746 - CLICK
17747+ - DRAG
17748+ - DROP
1774517749 - EXTRACT_FROM_JAVASCRIPT
1774617750 - EXTRACT_FROM_EMAIL_BODY
1774717751 - EXTRACT_VARIABLE
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
3636 "assertPageLacks" ,
3737 "assertRequests" ,
3838 "click" ,
39+ "drag" ,
40+ "drop" ,
3941 "extractFromJavascript" ,
4042 "extractFromEmailBody" ,
4143 "extractVariable" ,
@@ -72,6 +74,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
7274 new SyntheticsStepType ("assertPageLacks" );
7375 public static final SyntheticsStepType ASSERT_REQUESTS = new SyntheticsStepType ("assertRequests" );
7476 public static final SyntheticsStepType CLICK = new SyntheticsStepType ("click" );
77+ public static final SyntheticsStepType DRAG = new SyntheticsStepType ("drag" );
78+ public static final SyntheticsStepType DROP = new SyntheticsStepType ("drop" );
7579 public static final SyntheticsStepType EXTRACT_FROM_JAVASCRIPT =
7680 new SyntheticsStepType ("extractFromJavascript" );
7781 public static final SyntheticsStepType EXTRACT_FROM_EMAIL_BODY =
You can’t perform that action at this time.
0 commit comments