Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.graphrbac; import com.microsoft.azure.management.apigeneration.Fluent; import com.microsoft.azure.management.graphrbac.implementation.PermissionInner; import com.microsoft.azure.management.resources.fluentcore.model.HasInner; import java.util.List;
An immutable client-side representation of a permission.
/** * An immutable client-side representation of a permission. */
@Fluent(ContainerName = "/Microsoft.Azure.Management.Graph.RBAC.Fluent") public interface Permission extends HasInner<PermissionInner> {
Returns:allowed actions
/** * @return allowed actions */
List<String> actions();
Returns:denied actions
/** * @return denied actions */
List<String> notActions();
Returns:allowed Data actions
/** * @return allowed Data actions */
List<String> dataActions();
Returns:denied Data actions
/** * @return denied Data actions */
List<String> notDataActions(); }