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

com.azure.resourcemanager.relay.implementation.RelayNamespaceImpl Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.relay.implementation;

import com.azure.core.management.Region;
import com.azure.core.util.Context;
import com.azure.resourcemanager.relay.fluent.models.RelayNamespaceInner;
import com.azure.resourcemanager.relay.models.ProvisioningStateEnum;
import com.azure.resourcemanager.relay.models.RelayNamespace;
import com.azure.resourcemanager.relay.models.RelayUpdateParameters;
import com.azure.resourcemanager.relay.models.Sku;
import java.time.OffsetDateTime;
import java.util.Collections;
import java.util.Map;

public final class RelayNamespaceImpl implements RelayNamespace, RelayNamespace.Definition, RelayNamespace.Update {
    private RelayNamespaceInner innerObject;

    private final com.azure.resourcemanager.relay.RelayManager 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 Sku sku() {
        return this.innerModel().sku();
    }

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

    public OffsetDateTime createdAt() {
        return this.innerModel().createdAt();
    }

    public OffsetDateTime updatedAt() {
        return this.innerModel().updatedAt();
    }

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

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

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

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

    public String resourceGroupName() {
        return resourceGroupName;
    }

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

    private com.azure.resourcemanager.relay.RelayManager manager() {
        return this.serviceManager;
    }

    private String resourceGroupName;

    private String namespaceName;

    private RelayUpdateParameters updateParameters;

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

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

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

    RelayNamespaceImpl(String name, com.azure.resourcemanager.relay.RelayManager serviceManager) {
        this.innerObject = new RelayNamespaceInner();
        this.serviceManager = serviceManager;
        this.namespaceName = name;
    }

    public RelayNamespaceImpl update() {
        this.updateParameters = new RelayUpdateParameters();
        return this;
    }

    public RelayNamespace apply() {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .updateWithResponse(resourceGroupName, namespaceName, updateParameters, Context.NONE)
            .getValue();
        return this;
    }

    public RelayNamespace apply(Context context) {
        this.innerObject = serviceManager.serviceClient()
            .getNamespaces()
            .updateWithResponse(resourceGroupName, namespaceName, updateParameters, context)
            .getValue();
        return this;
    }

    RelayNamespaceImpl(RelayNamespaceInner innerObject, com.azure.resourcemanager.relay.RelayManager serviceManager) {
        this.innerObject = innerObject;
        this.serviceManager = serviceManager;
        this.resourceGroupName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "resourceGroups");
        this.namespaceName = ResourceManagerUtils.getValueFromIdByName(innerObject.id(), "namespaces");
    }

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

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

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

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

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

    public RelayNamespaceImpl withSku(Sku sku) {
        if (isInCreateMode()) {
            this.innerModel().withSku(sku);
            return this;
        } else {
            this.updateParameters.withSku(sku);
            return this;
        }
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy