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;
/**
* * A json annotated rest model for DSAssigmentResult to RESTful API
* representation.
* A json annotated rest model for DSAssigmentResult to RESTful API representation.
*
* @deprecated since 0.6.0 with deprecation of toggle assignments
*/
@Data
@Accessors(chain = true)
@ToString
@JsonInclude(Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
@Deprecated(forRemoval = true)
public class MgmtDistributionSetTagAssigmentResult {
@JsonProperty

View File

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