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

com.azure.resourcemanager.eventhubs.implementation.EventHubAuthorizationRulesImpl Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.resourcemanager.eventhubs.implementation;

import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.resourcemanager.eventhubs.EventHubsManager;
import com.azure.resourcemanager.eventhubs.fluent.EventHubsClient;
import com.azure.resourcemanager.eventhubs.fluent.models.AuthorizationRuleInner;
import com.azure.resourcemanager.eventhubs.models.EventHubAuthorizationRule;
import com.azure.resourcemanager.eventhubs.models.EventHubAuthorizationRules;
import com.azure.resourcemanager.resources.fluentcore.arm.ResourceId;
import reactor.core.publisher.Mono;

import java.util.Objects;
import com.azure.resourcemanager.resources.fluentcore.utils.PagedConverter;

/**
 * Implementation for {@link EventHubAuthorizationRules}.
 */
public final class EventHubAuthorizationRulesImpl
    extends AuthorizationRulesBaseImpl
    implements EventHubAuthorizationRules {

    public EventHubAuthorizationRulesImpl(EventHubsManager manager) {
        super(manager, manager.serviceClient().getEventHubs());
    }

    @Override
    public EventHubAuthorizationRuleImpl define(String name) {
        return new EventHubAuthorizationRuleImpl(name, this.manager);
    }

    @Override
    public Mono getByIdAsync(String id) {
        Objects.requireNonNull(id);
        ResourceId resourceId = ResourceId.fromString(id);

        return getByNameAsync(resourceId.resourceGroupName(), resourceId.parent().parent().name(),
            resourceId.parent().name(), resourceId.name());
    }

    @Override
    public EventHubAuthorizationRule getByName(String resourceGroupName, String namespaceName, String eventHubName,
        String name) {
        return getByNameAsync(resourceGroupName, namespaceName, eventHubName, name).block();
    }

    @Override
    public Mono getByNameAsync(String resourceGroupName, String namespaceName,
        String eventHubName, String name) {
        return this.innerModel()
            .getAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, name)
            .map(this::wrapModel);
    }

    @Override
    public PagedIterable listByEventHub(final String resourceGroupName,
        final String namespaceName, final String eventHubName) {
        return PagedConverter.mapPage(
            innerModel().listAuthorizationRules(resourceGroupName, namespaceName, eventHubName), this::wrapModel);
    }

    @Override
    public PagedFlux listByEventHubAsync(String resourceGroupName, String namespaceName,
        final String eventHubName) {
        return PagedConverter.mapPage(
            this.innerModel().listAuthorizationRulesAsync(resourceGroupName, namespaceName, eventHubName),
            this::wrapModel);
    }

    @Override
    public Mono deleteByIdAsync(String id) {
        Objects.requireNonNull(id);
        ResourceId resourceId = ResourceId.fromString(id);
        return deleteByNameAsync(resourceId.resourceGroupName(), resourceId.parent().parent().name(),
            resourceId.parent().name(), resourceId.name());
    }

    @Override
    public void deleteByName(String resourceGroupName, String namespaceName, String eventHubName, String name) {
        deleteByNameAsync(resourceGroupName, namespaceName, eventHubName, name).block();
    }

    @Override
    public Mono deleteByNameAsync(String resourceGroupName, String namespaceName, String eventHubName,
        String name) {
        return this.innerModel().deleteAuthorizationRuleAsync(resourceGroupName, namespaceName, eventHubName, name);
    }

    @Override
    protected EventHubAuthorizationRuleImpl wrapModel(AuthorizationRuleInner innerModel) {
        return new EventHubAuthorizationRuleImpl(innerModel.name(), innerModel, this.manager);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy