Class WhatIfOperationResultInner
- java.lang.Object
-
- com.azure.resourcemanager.resources.fluent.models.WhatIfOperationResultInner
-
public final class WhatIfOperationResultInner extends Object
Result of the What-If operation. Contains a list of predicted changes and a URL link to get to the next set of results.
-
-
Constructor Summary
Constructors Constructor Description WhatIfOperationResultInner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<WhatIfChange>changes()Get the changes property: List of resource changes predicted by What-If operation.com.azure.core.management.exception.ManagementErrorerror()Get the error property: Error Response Error when What-If operation fails.Stringstatus()Get the status property: Status of the What-If operation.voidvalidate()Validates the instance.WhatIfOperationResultInnerwithChanges(List<WhatIfChange> changes)Set the changes property: List of resource changes predicted by What-If operation.WhatIfOperationResultInnerwithError(com.azure.core.management.exception.ManagementError error)Set the error property: Error Response Error when What-If operation fails.WhatIfOperationResultInnerwithStatus(String status)Set the status property: Status of the What-If operation.
-
-
-
Method Detail
-
status
public String status()
Get the status property: Status of the What-If operation.- Returns:
- the status value.
-
withStatus
public WhatIfOperationResultInner withStatus(String status)
Set the status property: Status of the What-If operation.- Parameters:
status- the status value to set.- Returns:
- the WhatIfOperationResultInner object itself.
-
error
public com.azure.core.management.exception.ManagementError error()
Get the error property: Error Response Error when What-If operation fails.- Returns:
- the error value.
-
withError
public WhatIfOperationResultInner withError(com.azure.core.management.exception.ManagementError error)
Set the error property: Error Response Error when What-If operation fails.- Parameters:
error- the error value to set.- Returns:
- the WhatIfOperationResultInner object itself.
-
changes
public List<WhatIfChange> changes()
Get the changes property: List of resource changes predicted by What-If operation.- Returns:
- the changes value.
-
withChanges
public WhatIfOperationResultInner withChanges(List<WhatIfChange> changes)
Set the changes property: List of resource changes predicted by What-If operation.- Parameters:
changes- the changes value to set.- Returns:
- the WhatIfOperationResultInner object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-