All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.authorization.models.Permission Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Authorization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.authorization.models;

import com.azure.resourcemanager.authorization.fluent.models.PermissionInner;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
import java.util.List;

/** An immutable client-side representation of a permission. */
public interface Permission extends HasInnerModel {
    /** @return allowed actions */
    List actions();

    /** @return denied actions */
    List notActions();

    /** @return allowed Data actions */
    List dataActions();

    /** @return denied Data actions */
    List notDataActions();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy