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

com.azure.resourcemanager.authorization.models.RoleDefinition 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.core.annotation.Fluent;
import com.azure.resourcemanager.authorization.AuthorizationManager;
import com.azure.resourcemanager.authorization.fluent.models.RoleDefinitionInner;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasId;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasManager;
import com.azure.resourcemanager.resources.fluentcore.arm.models.HasName;
import com.azure.resourcemanager.resources.fluentcore.model.HasInnerModel;
import java.util.Set;

/** An immutable client-side representation of an Azure AD role definition. */
@Fluent
public interface RoleDefinition
    extends HasInnerModel, HasId, HasName, HasManager {
    /** @return the role name */
    String roleName();

    /** @return the role definition description */
    String description();

    /** @return the role type */
    String type();

    /** @return role definition permissions */
    Set permissions();

    /** @return role definition assignable scopes */
    Set assignableScopes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy