All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nutanix.mic.java.client.api.DirectoryServerConfigsApi Maven / Gradle / Ivy

The newest version!
package com.nutanix.mic.java.client.api;

import com.nutanix.mic.java.client.ApiClient;




import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.HashSet;
import java.util.Set;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.io.InputStreamResource;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestClientException;
import org.springframework.web.client.HttpClientErrorException;
import org.springframework.web.util.UriComponentsBuilder;
import org.springframework.core.ParameterizedTypeReference;
import org.springframework.core.io.FileSystemResource;
import org.springframework.http.*;

@lombok.extern.slf4j.Slf4j
@javax.annotation.Generated(value = "com.nutanix.swagger.codegen.generators.JavaClientSDKGenerator", date = "2024-05-07T05:34:17.613Z[Etc/UTC]")@Component("com.nutanix.mic.java.client.api.DirectoryServerConfigsApi")
public class DirectoryServerConfigsApi {
    private ApiClient apiClient;
	private final Set headersToSkip;

    public DirectoryServerConfigsApi() {
        this(new ApiClient());
    }

    @Autowired
    public DirectoryServerConfigsApi(ApiClient apiClient) {
        this.apiClient = apiClient;
        this.headersToSkip = new HashSet<>(Arrays.asList("authorization", "cookie", "host", "user-agent"));
    }

    public ApiClient getApiClient() {
        return apiClient;
    }

    public void setApiClient(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    /**
     * Creates the mapping between a group in Active Directory and the Category.
     * 

202 - ExtID of the task corresponding to Identity Categorization Category Mapping create request. *

4XX - Client error response *

5XX - Server error response * @param body Creates the mapping between a group in Active Directory and the Category. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.CreateDsCategoryMappingApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.CreateDsCategoryMappingApiResponse createCategoryMapping(com.nutanix.dp1.mic.microseg.v4.config.CategoryMapping body, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = body; // verify the required parameter 'body' is set if (body == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'body' when calling createCategoryMapping"); } String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/category-mappings").build().toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { "application/json" }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.POST, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Configures various aspects of identity categorization. *

202 - ExtID of the task corresponding to Directory Server(s) create request. *

4XX - Client error response *

5XX - Server error response * @param body Configures various aspects of identity categorization. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.CreateDirectoryServerConfigApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.CreateDirectoryServerConfigApiResponse createDirectoryServerConfig(com.nutanix.dp1.mic.microseg.v4.config.DirectoryServerConfig body, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = body; // verify the required parameter 'body' is set if (body == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'body' when calling createDirectoryServerConfig"); } String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/directory-server-configs").build().toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { "application/json" }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.POST, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Deletes the Directory Server with the provided ExtID. *

202 - ExtID of the task corresponding to Directory Server delete request. *

4XX - Client error response *

5XX - Server error response * @param extId UUID to specify Directory Server. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.DeleteDirectoryServerConfigApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.DeleteDirectoryServerConfigApiResponse deleteDirectoryServerConfigById(String extId, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling deleteDirectoryServerConfigById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/directory-server-configs/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.DELETE, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Deletes the directory configuration with the provided ExtID. *

202 - ExtID of the task corresponding to Identity categorization Category Mapping delete request. *

4XX - Client error response *

5XX - Server error response * @param extId Category Mapping UUID. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.DeleteDsCategoryMappingApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.DeleteDsCategoryMappingApiResponse deleteDsCategoryMappingById(String extId, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling deleteDsCategoryMappingById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/category-mappings/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.DELETE, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Gets the list of Directory Server configurations. *

200 - Details of queried Directory Server. *

4XX - Client error response *

5XX - Server error response * @param extId UUID to specify Directory Server. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.GetDirectoryServerConfigApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.GetDirectoryServerConfigApiResponse getDirectoryServerConfigById(String extId, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling getDirectoryServerConfigById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/directory-server-configs/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.GET, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Gets the category to directory configuration information with the provided ExtID. *

200 - Details of queried Identity categorization Category Mapping. *

4XX - Client error response *

5XX - Server error response * @param extId Category Mapping UUID. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.GetDsCategoryMappingApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.GetDsCategoryMappingApiResponse getDsCategoryMappingById(String extId, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling getDsCategoryMappingById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/category-mappings/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.GET, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Gets the list of Directory Server Category Mappings. *

200 - Paginated list of Directory Server Category Mappings. *

4XX - Client error response *

5XX - Server error response * @param $page A URL query parameter that specifies the page number of the result set. It must be a positive integer between 0 and the maximum number of pages that are available for that resource. Any number out of this range might lead to no results. * @param $limit A URL query parameter that specifies the total number of records returned in the result set. Must be a positive integer between 1 and 100. Any number out of this range will lead to a validation error. If the limit is not provided, a default value of 50 records will be returned in the result set. * @param $select A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the [OData V4.01](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html) URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. - adInfo/directoryServiceReference - adInfo/objectIdentifier - adInfo/objectPath - adInfo/status - categoryName - categoryValue - extId - links - name - tenantId * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.ListDsCategoryMappingsApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.ListDsCategoryMappingsApiResponse listCategoryMappings(Integer $page, Integer $limit, String $select, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/category-mappings").build().toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); queryParams.putAll(apiClient.parameterToMultiValueMap(null, "$page", $page)); queryParams.putAll(apiClient.parameterToMultiValueMap(null, "$limit", $limit)); queryParams.putAll(apiClient.parameterToMultiValueMap(null, "$select", $select)); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.GET, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Gets the list of Directory Servers. *

200 - Paginated list of Directory Servers. *

4XX - Client error response *

5XX - Server error response * @param $select A URL query parameter that allows clients to request a specific set of properties for each entity or complex type. Expression specified with the $select must conform to the [OData V4.01](https://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html) URL conventions. If a $select expression consists of a single select item that is an asterisk (i.e., *), then all properties on the matching resource will be returned. - directoryServiceReference - domainControllers - extId - isDefaultCategoryEnabled - links - matchingCriterias - shouldKeepDefaultCategoryOnLogin - tenantId * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.ListDirectoryServerConfigsApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.ListDirectoryServerConfigsApiResponse listDirectoryServerConfigs(String $select, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = null; String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/directory-server-configs").build().toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); queryParams.putAll(apiClient.parameterToMultiValueMap(null, "$select", $select)); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.GET, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Updates the Directory Server Config with the provided ExtID. *

202 - ExtID of the task corresponding to Directory Server update request. *

4XX - Client error response *

5XX - Server error response * @param extId UUID to specify Directory Server. * @param body Updates the Directory Server Config with the provided ExtID. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.UpdateDirectoryServerConfigApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.UpdateDirectoryServerConfigApiResponse updateDirectoryServerConfigById(String extId, com.nutanix.dp1.mic.microseg.v4.config.DirectoryServerConfig body, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = body; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling updateDirectoryServerConfigById"); } // verify the required parameter 'body' is set if (body == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'body' when calling updateDirectoryServerConfigById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/directory-server-configs/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { "application/json" }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.PUT, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } /** * Updates the category to directory configuration mapping information with the provided ExtID. *

202 - ExtID of the task corresponding to Identity categorization Category Mapping update request. *

4XX - Client error response *

5XX - Server error response * @param extId Category Mapping UUID. * @param body Updates the category to directory configuration mapping information with the provided ExtID. * @param args Additional arguments * @return com.nutanix.dp1.mic.microseg.v4.config.UpdateDsCategoryMappingApiResponse * @throws RestClientException if an error occurs while attempting to invoke the API */ public com.nutanix.dp1.mic.microseg.v4.config.UpdateDsCategoryMappingApiResponse updateDsCategoryMappingById(String extId, com.nutanix.dp1.mic.microseg.v4.config.CategoryMapping body, Map ... args) throws RestClientException { // Check for optional argument map Map argMap = args.length > 0 ? args[0] : new HashMap(); Object postBody = body; // verify the required parameter 'extId' is set if (extId == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'extId' when calling updateDsCategoryMappingById"); } // verify the required parameter 'body' is set if (body == null) { throw new HttpClientErrorException(HttpStatus.BAD_REQUEST, "Missing the required parameter 'body' when calling updateDsCategoryMappingById"); } // create path and map variables final Map uriVariables = new HashMap(); uriVariables.put("extId", extId); String path = UriComponentsBuilder.fromPath("/api/microseg/v4.0.b1/config/category-mappings/{extId}").buildAndExpand(uriVariables).toUriString(); final MultiValueMap queryParams = new LinkedMultiValueMap(); final HttpHeaders headerParams = new HttpHeaders(); final MultiValueMap formParams = new LinkedMultiValueMap(); argMap.forEach((key, value) -> { if (!this.headersToSkip.contains(key.toLowerCase())) { String stringValue = apiClient.parameterToString(value); if (stringValue != null && !stringValue.trim().isEmpty()) { headerParams.add(key, apiClient.parameterToString(value)); } } }); final String[] accepts = { "application/json" }; final List accept = apiClient.selectHeaderAccept(accepts); final String[] contentTypes = { "application/json" }; final MediaType contentType = apiClient.selectHeaderContentType(contentTypes); String[] authNames = new String[] { "basicAuthScheme" }; ParameterizedTypeReference returnType = new ParameterizedTypeReference() {}; return apiClient.invokeAPI(path, HttpMethod.PUT, queryParams, postBody, headerParams, formParams, accept, contentType, authNames, returnType); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy