com.azure.resourcemanager.security.implementation.IotSecuritySolutionsImpl 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.IotSecuritySolutionsClient;
import com.azure.resourcemanager.security.fluent.models.IoTSecuritySolutionModelInner;
import com.azure.resourcemanager.security.models.IoTSecuritySolutionModel;
import com.azure.resourcemanager.security.models.IotSecuritySolutions;
public final class IotSecuritySolutionsImpl implements IotSecuritySolutions {
private static final ClientLogger LOGGER = new ClientLogger(IotSecuritySolutionsImpl.class);
private final IotSecuritySolutionsClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public IotSecuritySolutionsImpl(IotSecuritySolutionsClient 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 IoTSecuritySolutionModelImpl(inner1, this.manager()));
}
public PagedIterable list(String filter, Context context) {
PagedIterable inner = this.serviceClient().list(filter, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new IoTSecuritySolutionModelImpl(inner1, this.manager()));
}
public PagedIterable listByResourceGroup(String resourceGroupName) {
PagedIterable inner
= this.serviceClient().listByResourceGroup(resourceGroupName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new IoTSecuritySolutionModelImpl(inner1, this.manager()));
}
public PagedIterable listByResourceGroup(String resourceGroupName, String filter,
Context context) {
PagedIterable inner
= this.serviceClient().listByResourceGroup(resourceGroupName, filter, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new IoTSecuritySolutionModelImpl(inner1, this.manager()));
}
public Response getByResourceGroupWithResponse(String resourceGroupName,
String solutionName, Context context) {
Response inner
= this.serviceClient().getByResourceGroupWithResponse(resourceGroupName, solutionName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new IoTSecuritySolutionModelImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public IoTSecuritySolutionModel getByResourceGroup(String resourceGroupName, String solutionName) {
IoTSecuritySolutionModelInner inner = this.serviceClient().getByResourceGroup(resourceGroupName, solutionName);
if (inner != null) {
return new IoTSecuritySolutionModelImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteByResourceGroupWithResponse(String resourceGroupName, String solutionName,
Context context) {
return this.serviceClient().deleteWithResponse(resourceGroupName, solutionName, context);
}
public void deleteByResourceGroup(String resourceGroupName, String solutionName) {
this.serviceClient().delete(resourceGroupName, solutionName);
}
public IoTSecuritySolutionModel getById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String solutionName = ResourceManagerUtils.getValueFromIdByName(id, "iotSecuritySolutions");
if (solutionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'iotSecuritySolutions'.", id)));
}
return this.getByResourceGroupWithResponse(resourceGroupName, solutionName, Context.NONE).getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String solutionName = ResourceManagerUtils.getValueFromIdByName(id, "iotSecuritySolutions");
if (solutionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'iotSecuritySolutions'.", id)));
}
return this.getByResourceGroupWithResponse(resourceGroupName, solutionName, context);
}
public void deleteById(String id) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String solutionName = ResourceManagerUtils.getValueFromIdByName(id, "iotSecuritySolutions");
if (solutionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'iotSecuritySolutions'.", id)));
}
this.deleteByResourceGroupWithResponse(resourceGroupName, solutionName, Context.NONE);
}
public Response deleteByIdWithResponse(String id, Context context) {
String resourceGroupName = ResourceManagerUtils.getValueFromIdByName(id, "resourceGroups");
if (resourceGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceGroups'.", id)));
}
String solutionName = ResourceManagerUtils.getValueFromIdByName(id, "iotSecuritySolutions");
if (solutionName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'iotSecuritySolutions'.", id)));
}
return this.deleteByResourceGroupWithResponse(resourceGroupName, solutionName, context);
}
private IotSecuritySolutionsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
public IoTSecuritySolutionModelImpl define(String name) {
return new IoTSecuritySolutionModelImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy