Deprecate assigment results (with toggle depecations) (#1885)

Signed-off-by: Marinov Avgustin <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2024-10-16 16:34:43 +03:00
committed by GitHub
parent ba230f0536
commit d45477cd5a
2 changed files with 8 additions and 4 deletions

View File

@@ -23,14 +23,16 @@ import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonProperty;
/** /**
* * A json annotated rest model for DSAssigmentResult to RESTful API * A json annotated rest model for DSAssigmentResult to RESTful API representation.
* representation. *
* @deprecated since 0.6.0 with deprecation of toggle assignments
*/ */
@Data @Data
@Accessors(chain = true) @Accessors(chain = true)
@ToString @ToString
@JsonInclude(Include.NON_NULL) @JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true) @JsonIgnoreProperties(ignoreUnknown = true)
@Deprecated(forRemoval = true)
public class MgmtDistributionSetTagAssigmentResult { public class MgmtDistributionSetTagAssigmentResult {
@JsonProperty @JsonProperty

View File

@@ -23,14 +23,16 @@ import com.fasterxml.jackson.annotation.JsonInclude.Include;
import com.fasterxml.jackson.annotation.JsonProperty; import com.fasterxml.jackson.annotation.JsonProperty;
/** /**
* * A json annotated rest model for TargetTagAssigmentResult to RESTful API * A json annotated rest model for TargetTagAssigmentResult to RESTful API representation.
* representation. *
* @deprecated since 0.6.0 with deprecation of toggle assignments
*/ */
@Data @Data
@Accessors(chain = true) @Accessors(chain = true)
@ToString @ToString
@JsonInclude(Include.NON_NULL) @JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true) @JsonIgnoreProperties(ignoreUnknown = true)
@Deprecated(forRemoval = true)
public class MgmtTargetTagAssigmentResult { public class MgmtTargetTagAssigmentResult {
@JsonProperty @JsonProperty