Class SignalRUsageList
- java.lang.Object
-
- com.azure.resourcemanager.signalr.models.SignalRUsageList
-
public final class SignalRUsageList extends Object
Object that includes an array of the resource usages and a possible link for next set.
-
-
Constructor Summary
Constructors Constructor Description SignalRUsageList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
nextLink()
Get the nextLink property: The URL the client should use to fetch the next page (per server side paging).void
validate()
Validates the instance.List<SignalRUsageInner>
value()
Get the value property: List of the resource usages.SignalRUsageList
withNextLink(String nextLink)
Set the nextLink property: The URL the client should use to fetch the next page (per server side paging).SignalRUsageList
withValue(List<SignalRUsageInner> value)
Set the value property: List of the resource usages.
-
-
-
Method Detail
-
value
public List<SignalRUsageInner> value()
Get the value property: List of the resource usages.- Returns:
- the value value.
-
withValue
public SignalRUsageList withValue(List<SignalRUsageInner> value)
Set the value property: List of the resource usages.- Parameters:
value
- the value value to set.- Returns:
- the SignalRUsageList object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URL the client should use to fetch the next page (per server side paging). It's null for now, added for future use.- Returns:
- the nextLink value.
-
withNextLink
public SignalRUsageList withNextLink(String nextLink)
Set the nextLink property: The URL the client should use to fetch the next page (per server side paging). It's null for now, added for future use.- Parameters:
nextLink
- the nextLink value to set.- Returns:
- the SignalRUsageList object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-