com.azure.resourcemanager.security.implementation.AzureDevOpsOrgsImpl 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.AzureDevOpsOrgsClient;
import com.azure.resourcemanager.security.fluent.models.AzureDevOpsOrgInner;
import com.azure.resourcemanager.security.fluent.models.AzureDevOpsOrgListResponseInner;
import com.azure.resourcemanager.security.models.AzureDevOpsOrg;
import com.azure.resourcemanager.security.models.AzureDevOpsOrgListResponse;
import com.azure.resourcemanager.security.models.AzureDevOpsOrgs;
public final class AzureDevOpsOrgsImpl implements AzureDevOpsOrgs {
private static final ClientLogger LOGGER = new ClientLogger(AzureDevOpsOrgsImpl.class);
private final AzureDevOpsOrgsClient innerClient;
private final com.azure.resourcemanager.security.SecurityManager serviceManager;
public AzureDevOpsOrgsImpl(AzureDevOpsOrgsClient innerClient,
com.azure.resourcemanager.security.SecurityManager serviceManager) {
this.innerClient = innerClient;
this.serviceManager = serviceManager;
}
public Response listAvailableWithResponse(String resourceGroupName,
String securityConnectorName, Context context) {
Response inner
= this.serviceClient().listAvailableWithResponse(resourceGroupName, securityConnectorName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new AzureDevOpsOrgListResponseImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public AzureDevOpsOrgListResponse listAvailable(String resourceGroupName, String securityConnectorName) {
AzureDevOpsOrgListResponseInner inner
= this.serviceClient().listAvailable(resourceGroupName, securityConnectorName);
if (inner != null) {
return new AzureDevOpsOrgListResponseImpl(inner, this.manager());
} else {
return null;
}
}
public PagedIterable list(String resourceGroupName, String securityConnectorName) {
PagedIterable inner = this.serviceClient().list(resourceGroupName, securityConnectorName);
return ResourceManagerUtils.mapPage(inner, inner1 -> new AzureDevOpsOrgImpl(inner1, this.manager()));
}
public PagedIterable list(String resourceGroupName, String securityConnectorName, Context context) {
PagedIterable inner
= this.serviceClient().list(resourceGroupName, securityConnectorName, context);
return ResourceManagerUtils.mapPage(inner, inner1 -> new AzureDevOpsOrgImpl(inner1, this.manager()));
}
public Response getWithResponse(String resourceGroupName, String securityConnectorName,
String orgName, Context context) {
Response inner
= this.serviceClient().getWithResponse(resourceGroupName, securityConnectorName, orgName, context);
if (inner != null) {
return new SimpleResponse<>(inner.getRequest(), inner.getStatusCode(), inner.getHeaders(),
new AzureDevOpsOrgImpl(inner.getValue(), this.manager()));
} else {
return null;
}
}
public AzureDevOpsOrg get(String resourceGroupName, String securityConnectorName, String orgName) {
AzureDevOpsOrgInner inner = this.serviceClient().get(resourceGroupName, securityConnectorName, orgName);
if (inner != null) {
return new AzureDevOpsOrgImpl(inner, this.manager());
} else {
return null;
}
}
public AzureDevOpsOrg 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 securityConnectorName = ResourceManagerUtils.getValueFromIdByName(id, "securityConnectors");
if (securityConnectorName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'securityConnectors'.", id)));
}
String orgName = ResourceManagerUtils.getValueFromIdByName(id, "azureDevOpsOrgs");
if (orgName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'azureDevOpsOrgs'.", id)));
}
return this.getWithResponse(resourceGroupName, securityConnectorName, orgName, 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 securityConnectorName = ResourceManagerUtils.getValueFromIdByName(id, "securityConnectors");
if (securityConnectorName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'securityConnectors'.", id)));
}
String orgName = ResourceManagerUtils.getValueFromIdByName(id, "azureDevOpsOrgs");
if (orgName == null) {
throw LOGGER.logExceptionAsError(new IllegalArgumentException(
String.format("The resource ID '%s' is not valid. Missing path segment 'azureDevOpsOrgs'.", id)));
}
return this.getWithResponse(resourceGroupName, securityConnectorName, orgName, context);
}
private AzureDevOpsOrgsClient serviceClient() {
return this.innerClient;
}
private com.azure.resourcemanager.security.SecurityManager manager() {
return this.serviceManager;
}
public AzureDevOpsOrgImpl define(String name) {
return new AzureDevOpsOrgImpl(name, this.manager());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy