Class SBAuthorizationRuleListResult
- java.lang.Object
-
- com.azure.resourcemanager.servicebus.models.SBAuthorizationRuleListResult
-
public final class SBAuthorizationRuleListResult extends Object
The response to the List Namespace operation.
-
-
Constructor Summary
Constructors Constructor Description SBAuthorizationRuleListResult()
-
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<SBAuthorizationRuleInner>value()Get the value property: Result of the List Authorization Rules operation.SBAuthorizationRuleListResultwithNextLink(String nextLink)Set the nextLink property: Link to the next set of results.SBAuthorizationRuleListResultwithValue(List<SBAuthorizationRuleInner> value)Set the value property: Result of the List Authorization Rules operation.
-
-
-
Method Detail
-
value
public List<SBAuthorizationRuleInner> value()
Get the value property: Result of the List Authorization Rules operation.- Returns:
- the value value.
-
withValue
public SBAuthorizationRuleListResult withValue(List<SBAuthorizationRuleInner> value)
Set the value property: Result of the List Authorization Rules operation.- Parameters:
value- the value value to set.- Returns:
- the SBAuthorizationRuleListResult 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 Authorization Rules.- Returns:
- the nextLink value.
-
withNextLink
public SBAuthorizationRuleListResult withNextLink(String nextLink)
Set the nextLink property: Link to the next set of results. Not empty if Value contains incomplete list of Authorization Rules.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the SBAuthorizationRuleListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-