Class RuleListResult
- java.lang.Object
-
- com.azure.resourcemanager.servicebus.models.RuleListResult
-
public final class RuleListResult extends Object
The response of the List rule operation.
-
-
Constructor Summary
Constructors Constructor Description RuleListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: Link to the next set of results.voidvalidate()Validates the instance.List<RuleInner>value()Get the value property: Result of the List Rules operation.RuleListResultwithNextLink(String nextLink)Set the nextLink property: Link to the next set of results.RuleListResultwithValue(List<RuleInner> value)Set the value property: Result of the List Rules operation.
-
-
-
Method Detail
-
value
public List<RuleInner> value()
Get the value property: Result of the List Rules operation.- Returns:
- the value value.
-
withValue
public RuleListResult withValue(List<RuleInner> value)
Set the value property: Result of the List Rules operation.- Parameters:
value- the value value to set.- Returns:
- the RuleListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of rules.- Returns:
- the nextLink value.
-
withNextLink
public RuleListResult withNextLink(String nextLink)
Set the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of rules.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the RuleListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-