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

com.azure.resourcemanager.security.implementation.SecureScoresImpl 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.SecureScoresClient;
import com.azure.resourcemanager.security.fluent.models.SecureScoreItemInner;
import com.azure.resourcemanager.security.models.SecureScoreItem;
import com.azure.resourcemanager.security.models.SecureScores;

public final class SecureScoresImpl implements SecureScores {
    private static final ClientLogger LOGGER = new ClientLogger(SecureScoresImpl.class);

    private final SecureScoresClient innerClient;

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

    public SecureScoresImpl(SecureScoresClient 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 SecureScoreItemImpl(inner1, this.manager()));
    }

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

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

    public SecureScoreItem get(String secureScoreName) {
        SecureScoreItemInner inner = this.serviceClient().get(secureScoreName);
        if (inner != null) {
            return new SecureScoreItemImpl(inner, this.manager());
        } else {
            return null;
        }
    }

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy