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

com.azure.resourcemanager.dnsresolver.implementation.OutboundEndpointsImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.

There is a newer version: 1.0.0-beta.3
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.dnsresolver.implementation;

import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.SimpleResponse;
import com.azure.core.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.dnsresolver.fluent.OutboundEndpointsClient;
import com.azure.resourcemanager.dnsresolver.fluent.models.OutboundEndpointInner;
import com.azure.resourcemanager.dnsresolver.models.OutboundEndpoint;
import com.azure.resourcemanager.dnsresolver.models.OutboundEndpoints;

public final class OutboundEndpointsImpl implements OutboundEndpoints {
    private static final ClientLogger LOGGER = new ClientLogger(OutboundEndpointsImpl.class);

    private final OutboundEndpointsClient innerClient;

    private final com.azure.resourcemanager.dnsresolver.DnsResolverManager serviceManager;

    public OutboundEndpointsImpl(OutboundEndpointsClient innerClient,
        com.azure.resourcemanager.dnsresolver.DnsResolverManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

    public void delete(String resourceGroupName, String dnsResolverName, String outboundEndpointName) {
        this.serviceClient().delete(resourceGroupName, dnsResolverName, outboundEndpointName);
    }

    public void delete(String resourceGroupName, String dnsResolverName, String outboundEndpointName, String ifMatch,
        Context context) {
        this.serviceClient().delete(resourceGroupName, dnsResolverName, outboundEndpointName, ifMatch, context);
    }

    public Response getWithResponse(String resourceGroupName, String dnsResolverName,
        String outboundEndpointName, Context context) {
        Response inner
            = this.serviceClient().getWithResponse(resourceGroupName, dnsResolverName, outboundEndpointName, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new OutboundEndpointImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public OutboundEndpoint get(String resourceGroupName, String dnsResolverName, String outboundEndpointName) {
        OutboundEndpointInner inner
            = this.serviceClient().get(resourceGroupName, dnsResolverName, outboundEndpointName);
        if (inner != null) {
            return new OutboundEndpointImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public PagedIterable list(String resourceGroupName, String dnsResolverName) {
        PagedIterable inner = this.serviceClient().list(resourceGroupName, dnsResolverName);
        return ResourceManagerUtils.mapPage(inner, inner1 -> new OutboundEndpointImpl(inner1, this.manager()));
    }

    public PagedIterable list(String resourceGroupName, String dnsResolverName, Integer top,
        Context context) {
        PagedIterable inner
            = this.serviceClient().list(resourceGroupName, dnsResolverName, top, context);
        return ResourceManagerUtils.mapPage(inner, inner1 -> new OutboundEndpointImpl(inner1, this.manager()));
    }

    public OutboundEndpoint getById(String id) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String dnsResolverName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolvers");
        if (dnsResolverName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolvers'.", id)));
        }
        String outboundEndpointName = ResourceManagerUtils.getValueFromIdByName(id, "outboundEndpoints");
        if (outboundEndpointName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'outboundEndpoints'.", id)));
        }
        return this.getWithResponse(resourceGroupName, dnsResolverName, outboundEndpointName, Context.NONE).getValue();
    }

    public Response getByIdWithResponse(String id, Context context) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String dnsResolverName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolvers");
        if (dnsResolverName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolvers'.", id)));
        }
        String outboundEndpointName = ResourceManagerUtils.getValueFromIdByName(id, "outboundEndpoints");
        if (outboundEndpointName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'outboundEndpoints'.", id)));
        }
        return this.getWithResponse(resourceGroupName, dnsResolverName, outboundEndpointName, context);
    }

    public void deleteById(String id) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String dnsResolverName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolvers");
        if (dnsResolverName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolvers'.", id)));
        }
        String outboundEndpointName = ResourceManagerUtils.getValueFromIdByName(id, "outboundEndpoints");
        if (outboundEndpointName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'outboundEndpoints'.", id)));
        }
        String localIfMatch = null;
        this.delete(resourceGroupName, dnsResolverName, outboundEndpointName, localIfMatch, Context.NONE);
    }

    public void deleteByIdWithResponse(String id, String ifMatch, Context context) {
        String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
        if (resourceGroupName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
        }
        String dnsResolverName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolvers");
        if (dnsResolverName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolvers'.", id)));
        }
        String outboundEndpointName = ResourceManagerUtils.getValueFromIdByName(id, "outboundEndpoints");
        if (outboundEndpointName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'outboundEndpoints'.", id)));
        }
        this.delete(resourceGroupName, dnsResolverName, outboundEndpointName, ifMatch, context);
    }

    private OutboundEndpointsClient serviceClient() {
        return this.innerClient;
    }

    private com.azure.resourcemanager.dnsresolver.DnsResolverManager manager() {
        return this.serviceManager;
    }

    public OutboundEndpointImpl define(String name) {
        return new OutboundEndpointImpl(name, this.manager());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy