3434 SyntheticsCITest .JSON_PROPERTY_PUBLIC_ID ,
3535 SyntheticsCITest .JSON_PROPERTY_RETRY ,
3636 SyntheticsCITest .JSON_PROPERTY_START_URL ,
37- SyntheticsCITest .JSON_PROPERTY_VARIABLES
37+ SyntheticsCITest .JSON_PROPERTY_VARIABLES ,
38+ SyntheticsCITest .JSON_PROPERTY_VERSION
3839})
3940@ jakarta .annotation .Generated (
4041 value = "https://github.com/DataDog/datadog-api-client-java/blob/master/.generator" )
@@ -83,6 +84,9 @@ public class SyntheticsCITest {
8384 public static final String JSON_PROPERTY_VARIABLES = "variables" ;
8485 private Map <String , String > variables = null ;
8586
87+ public static final String JSON_PROPERTY_VERSION = "version" ;
88+ private Long version ;
89+
8690 public SyntheticsCITest () {}
8791
8892 @ JsonCreator
@@ -419,6 +423,27 @@ public void setVariables(Map<String, String> variables) {
419423 this .variables = variables ;
420424 }
421425
426+ public SyntheticsCITest version (Long version ) {
427+ this .version = version ;
428+ return this ;
429+ }
430+
431+ /**
432+ * The version number of the Synthetic test version to trigger.
433+ *
434+ * @return version
435+ */
436+ @ jakarta .annotation .Nullable
437+ @ JsonProperty (JSON_PROPERTY_VERSION )
438+ @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
439+ public Long getVersion () {
440+ return version ;
441+ }
442+
443+ public void setVersion (Long version ) {
444+ this .version = version ;
445+ }
446+
422447 /**
423448 * A container for additional, undeclared properties. This is a holder for any undeclared
424449 * properties as specified with the 'additionalProperties' keyword in the OAS document.
@@ -490,6 +515,7 @@ public boolean equals(Object o) {
490515 && Objects .equals (this .retry , syntheticsCiTest .retry )
491516 && Objects .equals (this .startUrl , syntheticsCiTest .startUrl )
492517 && Objects .equals (this .variables , syntheticsCiTest .variables )
518+ && Objects .equals (this .version , syntheticsCiTest .version )
493519 && Objects .equals (this .additionalProperties , syntheticsCiTest .additionalProperties );
494520 }
495521
@@ -510,6 +536,7 @@ public int hashCode() {
510536 retry ,
511537 startUrl ,
512538 variables ,
539+ version ,
513540 additionalProperties );
514541 }
515542
@@ -533,6 +560,7 @@ public String toString() {
533560 sb .append (" retry: " ).append (toIndentedString (retry )).append ("\n " );
534561 sb .append (" startUrl: " ).append (toIndentedString (startUrl )).append ("\n " );
535562 sb .append (" variables: " ).append (toIndentedString (variables )).append ("\n " );
563+ sb .append (" version: " ).append (toIndentedString (version )).append ("\n " );
536564 sb .append (" additionalProperties: " )
537565 .append (toIndentedString (additionalProperties ))
538566 .append ("\n " );
0 commit comments