com.azure.resourcemanager.security.implementation.SecureScoreControlsImpl 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.util.Context;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.security.fluent.SecureScoreControlsClient;
import com.azure.resourcemanager.security.fluent.models.SecureScoreControlDetailsInner;
import com.azure.resourcemanager.security.models.ExpandControlsEnum;
import com.azure.resourcemanager.security.models.SecureScoreControlDetails;
import com.azure.resourcemanager.security.models.SecureScoreControls;
public final class SecureScoreControlsImpl implements SecureScoreControls {
private static final ClientLogger LOGGER = new ClientLogger(SecureScoreControlsImpl.class);
private final SecureScoreControlsClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public SecureScoreControlsImpl(SecureScoreControlsClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable listBySecureScore(String secureScoreName) {
PagedIterable inner = this.serviceClient().listBySecureScore(secureScoreName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SecureScoreControlDetailsImpl(inner1, this.manager()));
}
public PagedIterable listBySecureScore(String secureScoreName, ExpandControlsEnum expand,
Context context) {
PagedIterable inner
= this.serviceClient().listBySecureScore(secureScoreName, expand, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SecureScoreControlDetailsImpl(inner1, this.manager()));
}
public PagedIterable list() {
PagedIterable inner = this.serviceClient().list();
return ResourceManagerUtils.mapPage(inner, inner1 -> new SecureScoreControlDetailsImpl(inner1, this.manager()));
}
public PagedIterable list(ExpandControlsEnum expand, Context context) {
PagedIterable inner = this.serviceClient().list(expand, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new SecureScoreControlDetailsImpl(inner1, this.manager()));
}
private SecureScoreControlsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy