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