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

com.azure.resourcemanager.security.implementation.IotSecuritySolutionsAnalyticsAggregatedAlertsImpl 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.security.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.security.fluent.IotSecuritySolutionsAnalyticsAggregatedAlertsClient;
import com.azure.resourcemanager.security.fluent.models.IoTSecurityAggregatedAlertInner;
import com.azure.resourcemanager.security.models.IoTSecurityAggregatedAlert;
import com.azure.resourcemanager.security.models.IotSecuritySolutionsAnalyticsAggregatedAlerts;

public final class IotSecuritySolutionsAnalyticsAggregatedAlertsImpl
    implements IotSecuritySolutionsAnalyticsAggregatedAlerts {
    private static final ClientLogger LOGGER
        = new ClientLogger(IotSecuritySolutionsAnalyticsAggregatedAlertsImpl.class);

    private final IotSecuritySolutionsAnalyticsAggregatedAlertsClient innerClient;

    private final com.azure.resourcemanager.security.SecurityManager serviceManager;

    public IotSecuritySolutionsAnalyticsAggregatedAlertsImpl(
        IotSecuritySolutionsAnalyticsAggregatedAlertsClient innerClient,
        com.azure.resourcemanager.security.SecurityManager serviceManager) {
        this.innerClient = innerClient;
        this.serviceManager = serviceManager;
    }

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

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

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

    public IoTSecurityAggregatedAlert get(String resourceGroupName, String solutionName, String aggregatedAlertName) {
        IoTSecurityAggregatedAlertInner inner
            = this.serviceClient().get(resourceGroupName, solutionName, aggregatedAlertName);
        if (inner != null) {
            return new IoTSecurityAggregatedAlertImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public Response dismissWithResponse(String resourceGroupName, String solutionName, String aggregatedAlertName,
        Context context) {
        return this.serviceClient().dismissWithResponse(resourceGroupName, solutionName, aggregatedAlertName, context);
    }

    public void dismiss(String resourceGroupName, String solutionName, String aggregatedAlertName) {
        this.serviceClient().dismiss(resourceGroupName, solutionName, aggregatedAlertName);
    }

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

    private com.azure.resourcemanager.security.SecurityManager manager() {
        return this.serviceManager;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy