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

com.azure.resourcemanager.dnsresolver.implementation.DnsSecurityRulesImpl 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.DnsSecurityRulesClient;
import com.azure.resourcemanager.dnsresolver.fluent.models.DnsSecurityRuleInner;
import com.azure.resourcemanager.dnsresolver.models.DnsSecurityRule;
import com.azure.resourcemanager.dnsresolver.models.DnsSecurityRules;

public final class DnsSecurityRulesImpl implements DnsSecurityRules {
    private static final ClientLogger LOGGER = new ClientLogger(DnsSecurityRulesImpl.class);

    private final DnsSecurityRulesClient innerClient;

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

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

    public void delete(String resourceGroupName, String dnsResolverPolicyName, String dnsSecurityRuleName) {
        this.serviceClient().delete(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName);
    }

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

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

    public DnsSecurityRule get(String resourceGroupName, String dnsResolverPolicyName, String dnsSecurityRuleName) {
        DnsSecurityRuleInner inner
            = this.serviceClient().get(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName);
        if (inner != null) {
            return new DnsSecurityRuleImpl(inner, this.manager());
        } else {
            return null;
        }
    }

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

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

    public DnsSecurityRule 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 dnsResolverPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolverPolicies");
        if (dnsResolverPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolverPolicies'.", id)));
        }
        String dnsSecurityRuleName = ResourceManagerUtils.getValueFromIdByName(id, "dnsSecurityRules");
        if (dnsSecurityRuleName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsSecurityRules'.", id)));
        }
        return this.getWithResponse(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName, 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 dnsResolverPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolverPolicies");
        if (dnsResolverPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolverPolicies'.", id)));
        }
        String dnsSecurityRuleName = ResourceManagerUtils.getValueFromIdByName(id, "dnsSecurityRules");
        if (dnsSecurityRuleName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsSecurityRules'.", id)));
        }
        return this.getWithResponse(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName, 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 dnsResolverPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolverPolicies");
        if (dnsResolverPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolverPolicies'.", id)));
        }
        String dnsSecurityRuleName = ResourceManagerUtils.getValueFromIdByName(id, "dnsSecurityRules");
        if (dnsSecurityRuleName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsSecurityRules'.", id)));
        }
        String localIfMatch = null;
        this.delete(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName, 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 dnsResolverPolicyName = ResourceManagerUtils.getValueFromIdByName(id, "dnsResolverPolicies");
        if (dnsResolverPolicyName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsResolverPolicies'.", id)));
        }
        String dnsSecurityRuleName = ResourceManagerUtils.getValueFromIdByName(id, "dnsSecurityRules");
        if (dnsSecurityRuleName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'dnsSecurityRules'.", id)));
        }
        this.delete(resourceGroupName, dnsResolverPolicyName, dnsSecurityRuleName, ifMatch, context);
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy