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

com.azure.resourcemanager.authorization.implementation.RoleAssignmentsImpl 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.implementation;

import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.resourcemanager.authorization.AuthorizationManager;
import com.azure.resourcemanager.authorization.fluent.RoleAssignmentsClient;
import com.azure.resourcemanager.authorization.fluent.models.RoleAssignmentInner;
import com.azure.resourcemanager.authorization.models.RoleAssignment;
import com.azure.resourcemanager.authorization.models.RoleAssignments;
import com.azure.resourcemanager.authorization.models.ServicePrincipal;
import com.azure.resourcemanager.resources.fluentcore.arm.collection.implementation.CreatableResourcesImpl;
import com.azure.resourcemanager.resources.fluentcore.utils.PagedConverter;
import reactor.core.publisher.Mono;

import java.util.Objects;

/** The implementation of RoleAssignments and its parent interfaces. */
public class RoleAssignmentsImpl extends CreatableResourcesImpl
    implements RoleAssignments {
    private final AuthorizationManager manager;

    public RoleAssignmentsImpl(final AuthorizationManager manager) {
        this.manager = manager;
    }

    @Override
    protected RoleAssignmentImpl wrapModel(RoleAssignmentInner roleAssignmentInner) {
        if (roleAssignmentInner == null) {
            return null;
        }
        return new RoleAssignmentImpl(roleAssignmentInner.name(), roleAssignmentInner, manager());
    }

    @Override
    public RoleAssignmentImpl getById(String objectId) {
        return (RoleAssignmentImpl) getByIdAsync(objectId).block();
    }

    @Override
    public Mono getByIdAsync(String id) {
        return inner()
            .getByIdAsync(id)
            .map(
                roleAssignmentInner ->
                    new RoleAssignmentImpl(roleAssignmentInner.name(), roleAssignmentInner, manager()));
    }

    @Override
    public RoleAssignmentImpl getByScope(String scope, String name) {
        return (RoleAssignmentImpl) getByScopeAsync(scope, name).block();
    }

    @Override
    public PagedFlux listByScopeAsync(String scope) {
        return PagedConverter.mapPage(inner().listForScopeAsync(scope), this::wrapModel);
    }

    @Override
    public PagedIterable listByScope(String scope) {
        return wrapList(inner().listForScope(scope));
    }

    @Override
    public PagedFlux listByServicePrincipalAsync(ServicePrincipal servicePrincipal) {
        return listByServicePrincipalAsync(Objects.requireNonNull(servicePrincipal).id());
    }

    @Override
    public PagedIterable listByServicePrincipal(ServicePrincipal servicePrincipal) {
        return new PagedIterable<>(listByServicePrincipalAsync(servicePrincipal));
    }

    @Override
    public PagedFlux listByServicePrincipalAsync(String principalId) {
        PercentEscaper percentEscaper = new PercentEscaper("-._~" + "/?", false);
        String filterStr = percentEscaper.escape(
            String.format("principalId eq '%s'", Objects.requireNonNull(principalId)));
        return PagedConverter.mapPage(inner().listAsync(filterStr, null), this::wrapModel);
    }

    @Override
    public PagedIterable listByServicePrincipal(String principalId) {
        return new PagedIterable<>(listByServicePrincipalAsync(principalId));
    }

    @Override
    public Mono getByScopeAsync(String scope, String name) {
        return inner()
            .getAsync(scope, name)
            .map(
                roleAssignmentInner ->
                    new RoleAssignmentImpl(roleAssignmentInner.name(), roleAssignmentInner, manager()));
    }

    @Override
    protected RoleAssignmentImpl wrapModel(String name) {
        return new RoleAssignmentImpl(name, new RoleAssignmentInner(), manager());
    }

    @Override
    public Mono deleteByIdAsync(String id) {
        return inner().deleteByIdAsync(id).then();
    }

    @Override
    public RoleAssignmentImpl define(String name) {
        return wrapModel(name);
    }

    @Override
    public AuthorizationManager manager() {
        return this.manager;
    }

    public RoleAssignmentsClient inner() {
        return manager().roleServiceClient().getRoleAssignments();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy