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

com.azure.resourcemanager.eventgrid.implementation.NamespaceImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for EventGrid Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure EventGrid Management Client. Package tag package-2021-10-preview.

There is a newer version: 1.2.0-beta.7
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.eventgrid.implementation;

import com.azure.core.http.rest.Response;
import com.azure.core.management.Region;
import com.azure.core.management.SystemData;
import com.azure.core.util.Context;
import com.azure.resourcemanager.eventgrid.fluent.models.NamespaceInner;
import com.azure.resourcemanager.eventgrid.fluent.models.PrivateEndpointConnectionInner;
import com.azure.resourcemanager.eventgrid.models.CustomDomainOwnershipValidationResult;
import com.azure.resourcemanager.eventgrid.models.IdentityInfo;
import com.azure.resourcemanager.eventgrid.models.InboundIpRule;
import com.azure.resourcemanager.eventgrid.models.Namespace;
import com.azure.resourcemanager.eventgrid.models.NamespaceProvisioningState;
import com.azure.resourcemanager.eventgrid.models.NamespaceRegenerateKeyRequest;
import com.azure.resourcemanager.eventgrid.models.NamespaceSharedAccessKeys;
import com.azure.resourcemanager.eventgrid.models.NamespaceSku;
import com.azure.resourcemanager.eventgrid.models.NamespaceUpdateParameters;
import com.azure.resourcemanager.eventgrid.models.PrivateEndpointConnection;
import com.azure.resourcemanager.eventgrid.models.PublicNetworkAccess;
import com.azure.resourcemanager.eventgrid.models.TlsVersion;
import com.azure.resourcemanager.eventgrid.models.TopicsConfiguration;
import com.azure.resourcemanager.eventgrid.models.TopicSpacesConfiguration;
import com.azure.resourcemanager.eventgrid.models.UpdateTopicsConfigurationInfo;
import com.azure.resourcemanager.eventgrid.models.UpdateTopicSpacesConfigurationInfo;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

public final class NamespaceImpl implements Namespace, Namespace.Definition, Namespace.Update {
    private NamespaceInner innerObject;

    private final com.azure.resourcemanager.eventgrid.EventGridManager serviceManager;

    public String id() {
        return this.innerModel().id();
    }

    public String name() {
        return this.innerModel().name();
    }

    public String type() {
        return this.innerModel().type();
    }

    public String location() {
        return this.innerModel().location();
    }

    public Map tags() {
        Map inner = this.innerModel().tags();
        if (inner != null) {
            return Collections.unmodifiableMap(inner);
        } else {
            return Collections.emptyMap();
        }
    }

    public NamespaceSku sku() {
        return this.innerModel().sku();
    }

    public IdentityInfo identity() {
        return this.innerModel().identity();
    }

    public SystemData systemData() {
        return this.innerModel().systemData();
    }

    public List privateEndpointConnections() {
        List inner = this.innerModel().privateEndpointConnections();
        if (inner != null) {
            return Collections.unmodifiableList(inner.stream()
                .map(inner1 -> new PrivateEndpointConnectionImpl(inner1, this.manager()))
                .collect(Collectors.toList()));
        } else {
            return Collections.emptyList();
        }
    }

    public NamespaceProvisioningState provisioningState() {
        return this.innerModel().provisioningState();
    }

    public TopicsConfiguration topicsConfiguration() {
        return this.innerModel().topicsConfiguration();
    }

    public TopicSpacesConfiguration topicSpacesConfiguration() {
        return this.innerModel().topicSpacesConfiguration();
    }

    public Boolean isZoneRedundant() {
        return this.innerModel().isZoneRedundant();
    }

    public PublicNetworkAccess publicNetworkAccess() {
        return this.innerModel().publicNetworkAccess();
    }

    public List inboundIpRules() {
        List inner = this.innerModel().inboundIpRules();
        if (inner != null) {
            return Collections.unmodifiableList(inner);
        } else {
            return Collections.emptyList();
        }
    }

    public TlsVersion minimumTlsVersionAllowed() {
        return this.innerModel().minimumTlsVersionAllowed();
    }

    public Region region() {
        return Region.fromName(this.regionName());
    }

    public String regionName() {
        return this.location();
    }

    public String resourceGroupName() {
        return resourceGroupName;
    }

    public NamespaceInner innerModel() {
        return this.innerObject;
    }

    private com.azure.resourcemanager.eventgrid.EventGridManager manager() {
        return this.serviceManager;
    }

    private String resourceGroupName;

    private String namespaceName;

    private NamespaceUpdateParameters updateNamespaceUpdateParameters;

    public NamespaceImpl withExistingResourceGroup(String resourceGroupName) {
        this.resourceGroupName = resourceGroupName;
        return this;
    }

    public Namespace create() {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .createOrUpdate(resourceGroupName, namespaceName, this.innerModel(), Context.NONE);
        return this;
    }

    public Namespace create(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .createOrUpdate(resourceGroupName, namespaceName, this.innerModel(), context);
        return this;
    }

    NamespaceImpl(String name, com.azure.resourcemanager.eventgrid.EventGridManager serviceManager) {
        this.innerObject = new NamespaceInner();
        this.serviceManager = serviceManager;
        this.namespaceName = name;
    }

    public NamespaceImpl update() {
        this.updateNamespaceUpdateParameters = new NamespaceUpdateParameters();
        return this;
    }

    public Namespace apply() {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .update(resourceGroupName, namespaceName, updateNamespaceUpdateParameters, Context.NONE);
        return this;
    }

    public Namespace apply(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .update(resourceGroupName, namespaceName, updateNamespaceUpdateParameters, context);
        return this;
    }

    NamespaceImpl(NamespaceInner innerObject, com.azure.resourcemanager.eventgrid.EventGridManager serviceManager) {
        this.innerObject = innerObject;
        this.serviceManager = serviceManager;
        this.resourceGroupName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "resourceGroups");
        this.namespaceName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "namespaces");
    }

    public Namespace refresh() {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .getByResourceGroupWithResponse(resourceGroupName, namespaceName, Context.NONE)
            .getValue();
        return this;
    }

    public Namespace refresh(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .getByResourceGroupWithResponse(resourceGroupName, namespaceName, context)
            .getValue();
        return this;
    }

    public Response listSharedAccessKeysWithResponse(Context context) {
        return serviceManager.namespaces().listSharedAccessKeysWithResponse(resourceGroupName, namespaceName, context);
    }

    public NamespaceSharedAccessKeys listSharedAccessKeys() {
        return serviceManager.namespaces().listSharedAccessKeys(resourceGroupName, namespaceName);
    }

    public NamespaceSharedAccessKeys regenerateKey(NamespaceRegenerateKeyRequest regenerateKeyRequest) {
        return serviceManager.namespaces().regenerateKey(resourceGroupName, namespaceName, regenerateKeyRequest);
    }

    public NamespaceSharedAccessKeys regenerateKey(NamespaceRegenerateKeyRequest regenerateKeyRequest,
        Context context) {
        return serviceManager.namespaces()
            .regenerateKey(resourceGroupName, namespaceName, regenerateKeyRequest, context);
    }

    public CustomDomainOwnershipValidationResult validateCustomDomainOwnership() {
        return serviceManager.namespaces().validateCustomDomainOwnership(resourceGroupName, namespaceName);
    }

    public CustomDomainOwnershipValidationResult validateCustomDomainOwnership(Context context) {
        return serviceManager.namespaces().validateCustomDomainOwnership(resourceGroupName, namespaceName, context);
    }

    public NamespaceImpl withRegion(Region location) {
        this.innerModel().withLocation(location.toString());
        return this;
    }

    public NamespaceImpl withRegion(String location) {
        this.innerModel().withLocation(location);
        return this;
    }

    public NamespaceImpl withTags(Map tags) {
        if (isInCreateMode()) {
            this.innerModel().withTags(tags);
            return this;
        } else {
            this.updateNamespaceUpdateParameters.withTags(tags);
            return this;
        }
    }

    public NamespaceImpl withSku(NamespaceSku sku) {
        if (isInCreateMode()) {
            this.innerModel().withSku(sku);
            return this;
        } else {
            this.updateNamespaceUpdateParameters.withSku(sku);
            return this;
        }
    }

    public NamespaceImpl withIdentity(IdentityInfo identity) {
        if (isInCreateMode()) {
            this.innerModel().withIdentity(identity);
            return this;
        } else {
            this.updateNamespaceUpdateParameters.withIdentity(identity);
            return this;
        }
    }

    public NamespaceImpl
        withPrivateEndpointConnections(List privateEndpointConnections) {
        this.innerModel().withPrivateEndpointConnections(privateEndpointConnections);
        return this;
    }

    public NamespaceImpl withTopicsConfiguration(TopicsConfiguration topicsConfiguration) {
        this.innerModel().withTopicsConfiguration(topicsConfiguration);
        return this;
    }

    public NamespaceImpl withTopicSpacesConfiguration(TopicSpacesConfiguration topicSpacesConfiguration) {
        this.innerModel().withTopicSpacesConfiguration(topicSpacesConfiguration);
        return this;
    }

    public NamespaceImpl withIsZoneRedundant(Boolean isZoneRedundant) {
        this.innerModel().withIsZoneRedundant(isZoneRedundant);
        return this;
    }

    public NamespaceImpl withPublicNetworkAccess(PublicNetworkAccess publicNetworkAccess) {
        if (isInCreateMode()) {
            this.innerModel().withPublicNetworkAccess(publicNetworkAccess);
            return this;
        } else {
            this.updateNamespaceUpdateParameters.withPublicNetworkAccess(publicNetworkAccess);
            return this;
        }
    }

    public NamespaceImpl withInboundIpRules(List inboundIpRules) {
        if (isInCreateMode()) {
            this.innerModel().withInboundIpRules(inboundIpRules);
            return this;
        } else {
            this.updateNamespaceUpdateParameters.withInboundIpRules(inboundIpRules);
            return this;
        }
    }

    public NamespaceImpl withMinimumTlsVersionAllowed(TlsVersion minimumTlsVersionAllowed) {
        this.innerModel().withMinimumTlsVersionAllowed(minimumTlsVersionAllowed);
        return this;
    }

    public NamespaceImpl withTopicSpacesConfiguration(UpdateTopicSpacesConfigurationInfo topicSpacesConfiguration) {
        this.updateNamespaceUpdateParameters.withTopicSpacesConfiguration(topicSpacesConfiguration);
        return this;
    }

    public NamespaceImpl withTopicsConfiguration(UpdateTopicsConfigurationInfo topicsConfiguration) {
        this.updateNamespaceUpdateParameters.withTopicsConfiguration(topicsConfiguration);
        return this;
    }

    private boolean isInCreateMode() {
        return this.innerModel().id() == null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy