Class PermissionGetResult
- java.lang.Object
-
- com.azure.resourcemanager.authorization.models.PermissionGetResult
-
public final class PermissionGetResult extends Object
Permissions information.
-
-
Constructor Summary
Constructors Constructor Description PermissionGetResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
nextLink()
Get the nextLink property: The URL to use for getting the next set of results.void
validate()
Validates the instance.List<PermissionInner>
value()
Get the value property: An array of permissions.PermissionGetResult
withNextLink(String nextLink)
Set the nextLink property: The URL to use for getting the next set of results.PermissionGetResult
withValue(List<PermissionInner> value)
Set the value property: An array of permissions.
-
-
-
Method Detail
-
value
public List<PermissionInner> value()
Get the value property: An array of permissions.- Returns:
- the value value.
-
withValue
public PermissionGetResult withValue(List<PermissionInner> value)
Set the value property: An array of permissions.- Parameters:
value
- the value value to set.- Returns:
- the PermissionGetResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URL to use for getting the next set of results.- Returns:
- the nextLink value.
-
withNextLink
public PermissionGetResult withNextLink(String nextLink)
Set the nextLink property: The URL to use for getting the next set of results.- Parameters:
nextLink
- the nextLink value to set.- Returns:
- the PermissionGetResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-