com.azure.resourcemanager.security.implementation.AlertsSuppressionRulesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-security Show documentation
Show all versions of azure-resourcemanager-security Show documentation
This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.
// 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.AlertsSuppressionRulesClient;
import com.azure.resourcemanager.security.fluent.models.AlertsSuppressionRuleInner;
import com.azure.resourcemanager.security.models.AlertsSuppressionRule;
import com.azure.resourcemanager.security.models.AlertsSuppressionRules;
public final class AlertsSuppressionRulesImpl implements AlertsSuppressionRules {
private static final ClientLogger LOGGER = new ClientLogger(AlertsSuppressionRulesImpl.class);
private final AlertsSuppressionRulesClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public AlertsSuppressionRulesImpl(AlertsSuppressionRulesClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return ResourceManagerUtils.mapPage(inner, inner1 -> new AlertsSuppressionRuleImpl(inner1, this.manager()));
}
public PagedIterable list(String alertType, Context context) {
PagedIterable inner = this.serviceClient().list(alertType, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new AlertsSuppressionRuleImpl(inner1, this.manager()));
}
public Response getWithResponse(String alertsSuppressionRuleName, Context context) {
Response inner
= this.serviceClient().getWithResponse(alertsSuppressionRuleName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new AlertsSuppressionRuleImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public AlertsSuppressionRule get(String alertsSuppressionRuleName) {
AlertsSuppressionRuleInner inner = this.serviceClient().get(alertsSuppressionRuleName);
if (inner != null) {
return new AlertsSuppressionRuleImpl(inner, this.manager());
} else {
return null;
}
}
public Response updateWithResponse(String alertsSuppressionRuleName,
AlertsSuppressionRuleInner alertsSuppressionRule, Context context) {
Response inner
= this.serviceClient().updateWithResponse(alertsSuppressionRuleName, alertsSuppressionRule, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new AlertsSuppressionRuleImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public AlertsSuppressionRule update(String alertsSuppressionRuleName,
AlertsSuppressionRuleInner alertsSuppressionRule) {
AlertsSuppressionRuleInner inner
= this.serviceClient().update(alertsSuppressionRuleName, alertsSuppressionRule);
if (inner != null) {
return new AlertsSuppressionRuleImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteWithResponse(String alertsSuppressionRuleName, Context context) {
return this.serviceClient().deleteWithResponse(alertsSuppressionRuleName, context);
}
public void delete(String alertsSuppressionRuleName) {
this.serviceClient().delete(alertsSuppressionRuleName);
}
private AlertsSuppressionRulesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy