Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR policyinsights/resource-manager] [Hub Generated] Review request for Microsoft.PolicyInsights to add version 2018-07-01-preview #3130

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ public class ExpressionEvaluationDetails {
* Value of the expression.
*/
@JsonProperty(value = "expressionValue")
private String expressionValue;
private Object expressionValue;

/**
* Target value to be compared with the expression value.
*/
@JsonProperty(value = "targetValue")
private String targetValue;
private Object targetValue;

/**
* Operator to compare the expression value and the target value.
Expand Down Expand Up @@ -115,7 +115,7 @@ public ExpressionEvaluationDetails withPath(String path) {
*
* @return the expressionValue value
*/
public String expressionValue() {
public Object expressionValue() {
return this.expressionValue;
}

Expand All @@ -125,7 +125,7 @@ public String expressionValue() {
* @param expressionValue the expressionValue value to set
* @return the ExpressionEvaluationDetails object itself.
*/
public ExpressionEvaluationDetails withExpressionValue(String expressionValue) {
public ExpressionEvaluationDetails withExpressionValue(Object expressionValue) {
this.expressionValue = expressionValue;
return this;
}
Expand All @@ -135,7 +135,7 @@ public ExpressionEvaluationDetails withExpressionValue(String expressionValue) {
*
* @return the targetValue value
*/
public String targetValue() {
public Object targetValue() {
return this.targetValue;
}

Expand All @@ -145,7 +145,7 @@ public String targetValue() {
* @param targetValue the targetValue value to set
* @return the ExpressionEvaluationDetails object itself.
*/
public ExpressionEvaluationDetails withTargetValue(String targetValue) {
public ExpressionEvaluationDetails withTargetValue(Object targetValue) {
this.targetValue = targetValue;
return this;
}
Expand Down