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

com.azure.resourcemanager.hybridcompute.implementation.PrivateLinkScopesImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-05.

The 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.hybridcompute.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.hybridcompute.fluent.PrivateLinkScopesClient;
import com.azure.resourcemanager.hybridcompute.fluent.models.HybridComputePrivateLinkScopeInner;
import com.azure.resourcemanager.hybridcompute.fluent.models.PrivateLinkScopeValidationDetailsInner;
import com.azure.resourcemanager.hybridcompute.models.HybridComputePrivateLinkScope;
import com.azure.resourcemanager.hybridcompute.models.PrivateLinkScopeValidationDetails;
import com.azure.resourcemanager.hybridcompute.models.PrivateLinkScopes;

public final class PrivateLinkScopesImpl implements PrivateLinkScopes {
    private static final ClientLogger LOGGER = new ClientLogger(PrivateLinkScopesImpl.class);

    private final PrivateLinkScopesClient innerClient;

    private final com.azure.resourcemanager.hybridcompute.HybridComputeManager serviceManager;

    public PrivateLinkScopesImpl(PrivateLinkScopesClient innerClient,
        com.azure.resourcemanager.hybridcompute.HybridComputeManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

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

    public PagedIterable list(Context context) {
        PagedIterable inner = this.serviceClient().list(context);
        return ResourceManagerUtils.mapPage(inner,
            inner1 -> new HybridComputePrivateLinkScopeImpl(inner1, this.manager()));
    }

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

    public PagedIterable listByResourceGroup(String resourceGroupName, Context context) {
        PagedIterable inner
            = this.serviceClient().listByResourceGroup(resourceGroupName, context);
        return ResourceManagerUtils.mapPage(inner,
            inner1 -> new HybridComputePrivateLinkScopeImpl(inner1, this.manager()));
    }

    public void deleteByResourceGroup(String resourceGroupName, String scopeName) {
        this.serviceClient().delete(resourceGroupName, scopeName);
    }

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

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

    public HybridComputePrivateLinkScope getByResourceGroup(String resourceGroupName, String scopeName) {
        HybridComputePrivateLinkScopeInner inner
            = this.serviceClient().getByResourceGroup(resourceGroupName, scopeName);
        if (inner != null) {
            return new HybridComputePrivateLinkScopeImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public Response getValidationDetailsWithResponse(String location,
        String privateLinkScopeId, Context context) {
        Response inner
            = this.serviceClient().getValidationDetailsWithResponse(location, privateLinkScopeId, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new PrivateLinkScopeValidationDetailsImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public PrivateLinkScopeValidationDetails getValidationDetails(String location, String privateLinkScopeId) {
        PrivateLinkScopeValidationDetailsInner inner
            = this.serviceClient().getValidationDetails(location, privateLinkScopeId);
        if (inner != null) {
            return new PrivateLinkScopeValidationDetailsImpl(inner, this.manager());
        } else {
            return null;
        }
    }

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

    public PrivateLinkScopeValidationDetails getValidationDetailsForMachine(String resourceGroupName,
        String machineName) {
        PrivateLinkScopeValidationDetailsInner inner
            = this.serviceClient().getValidationDetailsForMachine(resourceGroupName, machineName);
        if (inner != null) {
            return new PrivateLinkScopeValidationDetailsImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public HybridComputePrivateLinkScope 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 scopeName = ResourceManagerUtils.getValueFromIdByName(id, "privateLinkScopes");
        if (scopeName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'privateLinkScopes'.", id)));
        }
        return this.getByResourceGroupWithResponse(resourceGroupName, scopeName, 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 scopeName = ResourceManagerUtils.getValueFromIdByName(id, "privateLinkScopes");
        if (scopeName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'privateLinkScopes'.", id)));
        }
        return this.getByResourceGroupWithResponse(resourceGroupName, scopeName, 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 scopeName = ResourceManagerUtils.getValueFromIdByName(id, "privateLinkScopes");
        if (scopeName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'privateLinkScopes'.", id)));
        }
        this.delete(resourceGroupName, scopeName, Context.NONE);
    }

    public void deleteByIdWithResponse(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 scopeName = ResourceManagerUtils.getValueFromIdByName(id, "privateLinkScopes");
        if (scopeName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'privateLinkScopes'.", id)));
        }
        this.delete(resourceGroupName, scopeName, context);
    }

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

    private com.azure.resourcemanager.hybridcompute.HybridComputeManager manager() {
        return this.serviceManager;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy