com.azure.resourcemanager.security.implementation.InformationProtectionPoliciesImpl 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.InformationProtectionPoliciesClient;
import com.azure.resourcemanager.security.fluent.models.InformationProtectionPolicyInner;
import com.azure.resourcemanager.security.models.InformationProtectionPolicies;
import com.azure.resourcemanager.security.models.InformationProtectionPolicy;
import com.azure.resourcemanager.security.models.InformationProtectionPolicyName;
public final class InformationProtectionPoliciesImpl implements InformationProtectionPolicies {
private static final ClientLogger LOGGER = new ClientLogger(InformationProtectionPoliciesImpl.class);
private final InformationProtectionPoliciesClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public InformationProtectionPoliciesImpl(InformationProtectionPoliciesClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response getWithResponse(String scope,
InformationProtectionPolicyName informationProtectionPolicyName, Context context) {
Response inner
= this.serviceClient().getWithResponse(scope, informationProtectionPolicyName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new InformationProtectionPolicyImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public InformationProtectionPolicy get(String scope,
InformationProtectionPolicyName informationProtectionPolicyName) {
InformationProtectionPolicyInner inner = this.serviceClient().get(scope, informationProtectionPolicyName);
if (inner != null) {
return new InformationProtectionPolicyImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable list(String scope) {
PagedIterable inner = this.serviceClient().list(scope);
return ResourceManagerUtils.mapPage(inner,
inner1 -> new InformationProtectionPolicyImpl(inner1, this.manager()));
}
public PagedIterable list(String scope, Context context) {
PagedIterable inner = this.serviceClient().list(scope, context);
return ResourceManagerUtils.mapPage(inner,
inner1 -> new InformationProtectionPolicyImpl(inner1, this.manager()));
}
public InformationProtectionPolicy getById(String id) {
String scope = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}",
"scope");
if (scope == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String informationProtectionPolicyNameLocal = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}",
"informationProtectionPolicyName");
if (informationProtectionPolicyNameLocal == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String.format(
"The resource ID '%s' is not valid. Missing path segment 'informationProtectionPolicies'.", id)));
}
InformationProtectionPolicyName informationProtectionPolicyName
= InformationProtectionPolicyName.fromString(informationProtectionPolicyNameLocal);
return this.getWithResponse(scope, informationProtectionPolicyName, Context.NONE).getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String scope = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}",
"scope");
if (scope == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'scope'.", id)));
}
String informationProtectionPolicyNameLocal = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{scope}/providers/Microsoft.Security/informationProtectionPolicies/{informationProtectionPolicyName}",
"informationProtectionPolicyName");
if (informationProtectionPolicyNameLocal == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(String.format(
"The resource ID '%s' is not valid. Missing path segment 'informationProtectionPolicies'.", id)));
}
InformationProtectionPolicyName informationProtectionPolicyName
= InformationProtectionPolicyName.fromString(informationProtectionPolicyNameLocal);
return this.getWithResponse(scope, informationProtectionPolicyName, context);
}
private InformationProtectionPoliciesClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
public InformationProtectionPolicyImpl define(InformationProtectionPolicyName name) {
return new InformationProtectionPolicyImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy