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

com.azure.resourcemanager.security.implementation.ServerVulnerabilityAssessmentsSettingsImpl Maven / Gradle / Ivy

Go to download

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.

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.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.ServerVulnerabilityAssessmentsSettingsClient;
import com.azure.resourcemanager.security.fluent.models.ServerVulnerabilityAssessmentsSettingInner;
import com.azure.resourcemanager.security.models.ServerVulnerabilityAssessmentsSetting;
import com.azure.resourcemanager.security.models.ServerVulnerabilityAssessmentsSettingKindName;
import com.azure.resourcemanager.security.models.ServerVulnerabilityAssessmentsSettings;

public final class ServerVulnerabilityAssessmentsSettingsImpl implements ServerVulnerabilityAssessmentsSettings {
    private static final ClientLogger LOGGER = new ClientLogger(ServerVulnerabilityAssessmentsSettingsImpl.class);

    private final ServerVulnerabilityAssessmentsSettingsClient innerClient;

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

    public ServerVulnerabilityAssessmentsSettingsImpl(ServerVulnerabilityAssessmentsSettingsClient 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 ServerVulnerabilityAssessmentsSettingImpl(inner1, this.manager()));
    }

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

    public Response
        getWithResponse(ServerVulnerabilityAssessmentsSettingKindName settingKind, Context context) {
        Response inner
            = this.serviceClient().getWithResponse(settingKind, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new ServerVulnerabilityAssessmentsSettingImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public ServerVulnerabilityAssessmentsSetting get(ServerVulnerabilityAssessmentsSettingKindName settingKind) {
        ServerVulnerabilityAssessmentsSettingInner inner = this.serviceClient().get(settingKind);
        if (inner != null) {
            return new ServerVulnerabilityAssessmentsSettingImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public Response createOrUpdateWithResponse(
        ServerVulnerabilityAssessmentsSettingKindName settingKind,
        ServerVulnerabilityAssessmentsSettingInner serverVulnerabilityAssessmentsSetting, Context context) {
        Response inner = this.serviceClient()
            .createOrUpdateWithResponse(settingKind, serverVulnerabilityAssessmentsSetting, context);
        if (inner != null) {
            return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
                new ServerVulnerabilityAssessmentsSettingImpl(inner.getValue(), this.manager()));
        } else {
            return null;
        }
    }

    public ServerVulnerabilityAssessmentsSetting createOrUpdate(
        ServerVulnerabilityAssessmentsSettingKindName settingKind,
        ServerVulnerabilityAssessmentsSettingInner serverVulnerabilityAssessmentsSetting) {
        ServerVulnerabilityAssessmentsSettingInner inner
            = this.serviceClient().createOrUpdate(settingKind, serverVulnerabilityAssessmentsSetting);
        if (inner != null) {
            return new ServerVulnerabilityAssessmentsSettingImpl(inner, this.manager());
        } else {
            return null;
        }
    }

    public Response deleteWithResponse(ServerVulnerabilityAssessmentsSettingKindName settingKind,
        Context context) {
        return this.serviceClient().deleteWithResponse(settingKind, context);
    }

    public void delete(ServerVulnerabilityAssessmentsSettingKindName settingKind) {
        this.serviceClient().delete(settingKind);
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy