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

com.azure.security.keyvault.administration.models.KeyVaultRoleAssignment Maven / Gradle / Ivy

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

package com.azure.security.keyvault.administration.models;

import com.azure.core.annotation.Immutable;

/**
 * A class that defines a role assignment.
 */
@Immutable
public final class KeyVaultRoleAssignment {
    private final String id;
    private final String name;
    private final String type;
    private final KeyVaultRoleAssignmentProperties properties;

    /**
     * Creates a new {@link KeyVaultRoleAssignment role assignment} with the specified details.
     *
     * @param id The ID for this {@link KeyVaultRoleAssignment role assignment}.
     * @param name The name of this {@link KeyVaultRoleAssignment role assignment}.
     * @param type The type of this {@link KeyVaultRoleAssignment role assignment}.
     * @param properties {@link KeyVaultRoleAssignmentProperties properties} of this {@link KeyVaultRoleAssignment
     * role assignment}.
     */
    public KeyVaultRoleAssignment(String id, String name, String type, KeyVaultRoleAssignmentProperties properties) {
        this.id = id;
        this.name = name;
        this.type = type;
        this.properties = properties;
    }

    /**
     * Get the {@link KeyVaultRoleAssignment role assignment} ID.
     *
     * @return The {@link KeyVaultRoleAssignment role assignment} ID.
     */
    public String getId() {
        return id;
    }

    /**
     * Get the {@link KeyVaultRoleAssignment role assignment} name.
     *
     * @return The {@link KeyVaultRoleAssignment role assignment} name.
     */
    public String getName() {
        return name;
    }

    /**
     * Get the {@link KeyVaultRoleAssignment role assignment} type.
     *
     * @return The {@link KeyVaultRoleAssignment role assignment} type.
     */
    public String getType() {
        return type;
    }

    /**
     * Get the {@link KeyVaultRoleAssignment role assignment} {@link KeyVaultRoleAssignmentProperties properties}.
     *
     * @return The {@link KeyVaultRoleAssignment role assignment} {@link KeyVaultRoleAssignmentProperties properties}.
     */
    public KeyVaultRoleAssignmentProperties getProperties() {
        return properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy