com.azure.resourcemanager.search.implementation.AdminKeysClientImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-search Show documentation
Show all versions of azure-resourcemanager-search Show documentation
This package contains Microsoft Azure Cognitive Search Management SDK. For documentation on how to use this package, please see https://aka.ms/azure-sdk-java-mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.search.implementation;
import com.azure.core.annotation.ExpectedResponses;
import com.azure.core.annotation.HeaderParam;
import com.azure.core.annotation.Headers;
import com.azure.core.annotation.Host;
import com.azure.core.annotation.HostParam;
import com.azure.core.annotation.PathParam;
import com.azure.core.annotation.Post;
import com.azure.core.annotation.QueryParam;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceInterface;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.annotation.UnexpectedResponseExceptionType;
import com.azure.core.http.rest.Response;
import com.azure.core.http.rest.RestProxy;
import com.azure.core.management.exception.ManagementException;
import com.azure.core.util.Context;
import com.azure.core.util.FluxUtil;
import com.azure.resourcemanager.search.fluent.AdminKeysClient;
import com.azure.resourcemanager.search.fluent.models.AdminKeyResultInner;
import com.azure.resourcemanager.search.models.AdminKeyKind;
import java.util.UUID;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in AdminKeysClient.
*/
public final class AdminKeysClientImpl implements AdminKeysClient {
/**
* The proxy service used to perform REST calls.
*/
private final AdminKeysService service;
/**
* The service client containing this operation class.
*/
private final SearchManagementClientImpl client;
/**
* Initializes an instance of AdminKeysClientImpl.
*
* @param client the instance of the service client containing this operation class.
*/
AdminKeysClientImpl(SearchManagementClientImpl client) {
this.service
= RestProxy.create(AdminKeysService.class, client.getHttpPipeline(), client.getSerializerAdapter());
this.client = client;
}
/**
* The interface defining all the services for SearchManagementClientAdminKeys to be used by the proxy service to
* perform REST calls.
*/
@Host("{$host}")
@ServiceInterface(name = "SearchManagementClie")
public interface AdminKeysService {
@Headers({ "Content-Type: application/json" })
@Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/listAdminKeys")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> get(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("searchServiceName") String searchServiceName,
@HeaderParam("x-ms-client-request-id") UUID clientRequestId, @QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId, @HeaderParam("Accept") String accept, Context context);
@Headers({ "Content-Type: application/json" })
@Post("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/regenerateAdminKey/{keyKind}")
@ExpectedResponses({ 200 })
@UnexpectedResponseExceptionType(ManagementException.class)
Mono> regenerate(@HostParam("$host") String endpoint,
@PathParam("resourceGroupName") String resourceGroupName,
@PathParam("searchServiceName") String searchServiceName, @PathParam("keyKind") AdminKeyKind keyKind,
@HeaderParam("x-ms-client-request-id") UUID clientRequestId, @QueryParam("api-version") String apiVersion,
@PathParam("subscriptionId") String subscriptionId, @HeaderParam("Accept") String accept, Context context);
}
/**
* Gets the primary and secondary admin API keys for the specified search service.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the primary and secondary admin API keys for the specified search service along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> getWithResponseAsync(String resourceGroupName, String searchServiceName,
UUID clientRequestId) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (searchServiceName == null) {
return Mono
.error(new IllegalArgumentException("Parameter searchServiceName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(context -> service.get(this.client.getEndpoint(), resourceGroupName, searchServiceName,
clientRequestId, this.client.getApiVersion(), this.client.getSubscriptionId(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Gets the primary and secondary admin API keys for the specified search service.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the primary and secondary admin API keys for the specified search service along with {@link Response} on
* successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> getWithResponseAsync(String resourceGroupName, String searchServiceName,
UUID clientRequestId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (searchServiceName == null) {
return Mono
.error(new IllegalArgumentException("Parameter searchServiceName is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.get(this.client.getEndpoint(), resourceGroupName, searchServiceName, clientRequestId,
this.client.getApiVersion(), this.client.getSubscriptionId(), accept, context);
}
/**
* Gets the primary and secondary admin API keys for the specified search service.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the primary and secondary admin API keys for the specified search service on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono getAsync(String resourceGroupName, String searchServiceName) {
final UUID clientRequestId = null;
return getWithResponseAsync(resourceGroupName, searchServiceName, clientRequestId)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Gets the primary and secondary admin API keys for the specified search service.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the primary and secondary admin API keys for the specified search service along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response getWithResponse(String resourceGroupName, String searchServiceName,
UUID clientRequestId, Context context) {
return getWithResponseAsync(resourceGroupName, searchServiceName, clientRequestId, context).block();
}
/**
* Gets the primary and secondary admin API keys for the specified search service.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the primary and secondary admin API keys for the specified search service.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public AdminKeyResultInner get(String resourceGroupName, String searchServiceName) {
final UUID clientRequestId = null;
return getWithResponse(resourceGroupName, searchServiceName, clientRequestId, Context.NONE).getValue();
}
/**
* Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param keyKind Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response containing the primary and secondary admin API keys for a given search service along with
* {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono> regenerateWithResponseAsync(String resourceGroupName,
String searchServiceName, AdminKeyKind keyKind, UUID clientRequestId) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (searchServiceName == null) {
return Mono
.error(new IllegalArgumentException("Parameter searchServiceName is required and cannot be null."));
}
if (keyKind == null) {
return Mono.error(new IllegalArgumentException("Parameter keyKind is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String accept = "application/json";
return FluxUtil
.withContext(
context -> service.regenerate(this.client.getEndpoint(), resourceGroupName, searchServiceName, keyKind,
clientRequestId, this.client.getApiVersion(), this.client.getSubscriptionId(), accept, context))
.contextWrite(context -> context.putAll(FluxUtil.toReactorContext(this.client.getContext()).readOnly()));
}
/**
* Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param keyKind Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response containing the primary and secondary admin API keys for a given search service along with
* {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
private Mono> regenerateWithResponseAsync(String resourceGroupName,
String searchServiceName, AdminKeyKind keyKind, UUID clientRequestId, Context context) {
if (this.client.getEndpoint() == null) {
return Mono.error(
new IllegalArgumentException("Parameter this.client.getEndpoint() is required and cannot be null."));
}
if (resourceGroupName == null) {
return Mono
.error(new IllegalArgumentException("Parameter resourceGroupName is required and cannot be null."));
}
if (searchServiceName == null) {
return Mono
.error(new IllegalArgumentException("Parameter searchServiceName is required and cannot be null."));
}
if (keyKind == null) {
return Mono.error(new IllegalArgumentException("Parameter keyKind is required and cannot be null."));
}
if (this.client.getSubscriptionId() == null) {
return Mono.error(new IllegalArgumentException(
"Parameter this.client.getSubscriptionId() is required and cannot be null."));
}
final String accept = "application/json";
context = this.client.mergeContext(context);
return service.regenerate(this.client.getEndpoint(), resourceGroupName, searchServiceName, keyKind,
clientRequestId, this.client.getApiVersion(), this.client.getSubscriptionId(), accept, context);
}
/**
* Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param keyKind Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response containing the primary and secondary admin API keys for a given search service on successful
* completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Mono regenerateAsync(String resourceGroupName, String searchServiceName,
AdminKeyKind keyKind) {
final UUID clientRequestId = null;
return regenerateWithResponseAsync(resourceGroupName, searchServiceName, keyKind, clientRequestId)
.flatMap(res -> Mono.justOrEmpty(res.getValue()));
}
/**
* Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param keyKind Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.
* @param clientRequestId A client-generated GUID value that identifies this request. If specified, this will be
* included in response information as a way to track the request.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response containing the primary and secondary admin API keys for a given search service along with
* {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public Response regenerateWithResponse(String resourceGroupName, String searchServiceName,
AdminKeyKind keyKind, UUID clientRequestId, Context context) {
return regenerateWithResponseAsync(resourceGroupName, searchServiceName, keyKind, clientRequestId, context)
.block();
}
/**
* Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
*
* @param resourceGroupName The name of the resource group within the current subscription. You can obtain this
* value from the Azure Resource Manager API or the portal.
* @param searchServiceName The name of the search service associated with the specified resource group.
* @param keyKind Specifies which key to regenerate. Valid values include 'primary' and 'secondary'.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return response containing the primary and secondary admin API keys for a given search service.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
public AdminKeyResultInner regenerate(String resourceGroupName, String searchServiceName, AdminKeyKind keyKind) {
final UUID clientRequestId = null;
return regenerateWithResponse(resourceGroupName, searchServiceName, keyKind, clientRequestId, Context.NONE)
.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy