com.azure.resourcemanager.security.implementation.DeviceSecurityGroupsImpl 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.DeviceSecurityGroupsClient;
import com.azure.resourcemanager.security.fluent.models.DeviceSecurityGroupInner;
import com.azure.resourcemanager.security.models.DeviceSecurityGroup;
import com.azure.resourcemanager.security.models.DeviceSecurityGroups;
public final class DeviceSecurityGroupsImpl implements DeviceSecurityGroups {
private static final ClientLogger LOGGER = new ClientLogger(DeviceSecurityGroupsImpl.class);
private final DeviceSecurityGroupsClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public DeviceSecurityGroupsImpl(DeviceSecurityGroupsClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public PagedIterable list(String resourceId) {
PagedIterable inner = this.serviceClient().list(resourceId);
return ResourceManagerUtils.mapPage(inner, inner1 -> new DeviceSecurityGroupImpl(inner1, this.manager()));
}
public PagedIterable list(String resourceId, Context context) {
PagedIterable inner = this.serviceClient().list(resourceId, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new DeviceSecurityGroupImpl(inner1, this.manager()));
}
public Response getWithResponse(String resourceId, String deviceSecurityGroupName,
Context context) {
Response inner
= this.serviceClient().getWithResponse(resourceId, deviceSecurityGroupName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new DeviceSecurityGroupImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public DeviceSecurityGroup get(String resourceId, String deviceSecurityGroupName) {
DeviceSecurityGroupInner inner = this.serviceClient().get(resourceId, deviceSecurityGroupName);
if (inner != null) {
return new DeviceSecurityGroupImpl(inner, this.manager());
} else {
return null;
}
}
public Response deleteByResourceGroupWithResponse(String resourceId, String deviceSecurityGroupName,
Context context) {
return this.serviceClient().deleteWithResponse(resourceId, deviceSecurityGroupName, context);
}
public void deleteByResourceGroup(String resourceId, String deviceSecurityGroupName) {
this.serviceClient().delete(resourceId, deviceSecurityGroupName);
}
public DeviceSecurityGroup getById(String id) {
String resourceId = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}", "resourceId");
if (resourceId == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceId'.", id)));
}
String deviceSecurityGroupName = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}",
"deviceSecurityGroupName");
if (deviceSecurityGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'deviceSecurityGroups'.", id)));
}
return this.getWithResponse(resourceId, deviceSecurityGroupName, Context.NONE).getValue();
}
public Response getByIdWithResponse(String id, Context context) {
String resourceId = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}", "resourceId");
if (resourceId == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceId'.", id)));
}
String deviceSecurityGroupName = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}",
"deviceSecurityGroupName");
if (deviceSecurityGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'deviceSecurityGroups'.", id)));
}
return this.getWithResponse(resourceId, deviceSecurityGroupName, context);
}
public void deleteById(String id) {
String resourceId = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}", "resourceId");
if (resourceId == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceId'.", id)));
}
String deviceSecurityGroupName = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}",
"deviceSecurityGroupName");
if (deviceSecurityGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'deviceSecurityGroups'.", id)));
}
this.deleteByResourceGroupWithResponse(resourceId, deviceSecurityGroupName, Context.NONE);
}
public Response deleteByIdWithResponse(String id, Context context) {
String resourceId = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}", "resourceId");
if (resourceId == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'resourceId'.", id)));
}
String deviceSecurityGroupName = ResourceManagerUtils.getValueFromIdByParameterName(id,
"/{resourceId}/providers/Microsoft.Security/deviceSecurityGroups/{deviceSecurityGroupName}",
"deviceSecurityGroupName");
if (deviceSecurityGroupName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'deviceSecurityGroups'.", id)));
}
return this.deleteByResourceGroupWithResponse(resourceId, deviceSecurityGroupName, context);
}
private DeviceSecurityGroupsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
public DeviceSecurityGroupImpl define(String name) {
return new DeviceSecurityGroupImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy