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

com.azure.resourcemanager.securityinsights.implementation.FileImportsImpl Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for SecurityInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.SecurityInsights (Azure Security Insights) resource provider. Package tag package-preview-2021-09.

There is a newer version: 1.0.0
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.securityinsights.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.securityinsights.fluent.FileImportsClient;
import com.azure.resourcemanager.securityinsights.fluent.models.FileImportInner;
import com.azure.resourcemanager.securityinsights.models.FileImport;
import com.azure.resourcemanager.securityinsights.models.FileImports;

public final class FileImportsImpl implements FileImports {
    private static final ClientLogger LOGGER = new ClientLogger(FileImportsImpl.class);

    private final FileImportsClient innerClient;

    private final com.azure.resourcemanager.securityinsights.SecurityInsightsManager serviceManager;

    public FileImportsImpl(FileImportsClient innerClient,
        com.azure.resourcemanager.securityinsights.SecurityInsightsManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

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

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

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

    public FileImport get(String resourceGroupName, String workspaceName, String fileImportId) {
        FileImportInner inner = this.serviceClient().get(resourceGroupName, workspaceName, fileImportId);
        if (inner != null) {
            return new FileImportImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public FileImport delete(String resourceGroupName, String workspaceName, String fileImportId) {
        FileImportInner inner = this.serviceClient().delete(resourceGroupName, workspaceName, fileImportId);
        if (inner != null) {
            return new FileImportImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public FileImport delete(String resourceGroupName, String workspaceName, String fileImportId, Context context) {
        FileImportInner inner = this.serviceClient().delete(resourceGroupName, workspaceName, fileImportId, context);
        if (inner != null) {
            return new FileImportImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public FileImport 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 workspaceName = ResourceManagerUtils.getValueFromIdByName(id, "workspaces");
        if (workspaceName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'workspaces'.", id)));
        }
        String fileImportId = ResourceManagerUtils.getValueFromIdByName(id, "fileImports");
        if (fileImportId == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'fileImports'.", id)));
        }
        return this.getWithResponse(resourceGroupName, workspaceName, fileImportId, 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 workspaceName = ResourceManagerUtils.getValueFromIdByName(id, "workspaces");
        if (workspaceName == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'workspaces'.", id)));
        }
        String fileImportId = ResourceManagerUtils.getValueFromIdByName(id, "fileImports");
        if (fileImportId == null) {
            throw LOGGER.logExceptionAsError(new IllegalArgumentException(
                String.format("The resource ID '%s' is not valid. Missing path segment 'fileImports'.", id)));
        }
        return this.getWithResponse(resourceGroupName, workspaceName, fileImportId, context);
    }

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

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

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

    private com.azure.resourcemanager.securityinsights.SecurityInsightsManager manager() {
        return this.serviceManager;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy