com.azure.resourcemanager.redis.fluent.RedisClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-redis Show documentation
Show all versions of azure-resourcemanager-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.redis.fluent;
import com.azure.core.annotation.ReturnType;
import com.azure.core.annotation.ServiceMethod;
import com.azure.core.http.rest.PagedFlux;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.management.polling.PollResult;
import com.azure.core.util.Context;
import com.azure.core.util.polling.PollerFlux;
import com.azure.core.util.polling.SyncPoller;
import com.azure.resourcemanager.redis.fluent.models.RedisAccessKeysInner;
import com.azure.resourcemanager.redis.fluent.models.RedisForceRebootResponseInner;
import com.azure.resourcemanager.redis.fluent.models.RedisResourceInner;
import com.azure.resourcemanager.redis.fluent.models.UpgradeNotificationInner;
import com.azure.resourcemanager.redis.models.CheckNameAvailabilityParameters;
import com.azure.resourcemanager.redis.models.ExportRdbParameters;
import com.azure.resourcemanager.redis.models.ImportRdbParameters;
import com.azure.resourcemanager.redis.models.OperationStatusResult;
import com.azure.resourcemanager.redis.models.RedisCreateParameters;
import com.azure.resourcemanager.redis.models.RedisRebootParameters;
import com.azure.resourcemanager.redis.models.RedisRegenerateKeyParameters;
import com.azure.resourcemanager.redis.models.RedisUpdateParameters;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet;
import com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsListing;
import java.nio.ByteBuffer;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
/**
* An instance of this class provides access to all the operations defined in RedisClient.
*/
public interface RedisClient
extends InnerSupportsGet, InnerSupportsListing, InnerSupportsDelete {
/**
* Checks that the redis cache name is valid and is not already in use.
*
* @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource
* type is 'Microsoft.Cache/redis'.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> checkNameAvailabilityWithResponseAsync(CheckNameAvailabilityParameters parameters);
/**
* Checks that the redis cache name is valid and is not already in use.
*
* @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource
* type is 'Microsoft.Cache/redis'.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono checkNameAvailabilityAsync(CheckNameAvailabilityParameters parameters);
/**
* Checks that the redis cache name is valid and is not already in use.
*
* @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource
* type is 'Microsoft.Cache/redis'.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response checkNameAvailabilityWithResponse(CheckNameAvailabilityParameters parameters, Context context);
/**
* Checks that the redis cache name is valid and is not already in use.
*
* @param parameters Parameters supplied to the CheckNameAvailability Redis operation. The only supported resource
* type is 'Microsoft.Cache/redis'.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void checkNameAvailability(CheckNameAvailabilityParameters parameters);
/**
* Gets any upgrade notifications for a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param history how many minutes in past to look for upgrade notifications.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return any upgrade notifications for a Redis cache as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedFlux listUpgradeNotificationsAsync(String resourceGroupName, String name,
double history);
/**
* Gets any upgrade notifications for a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param history how many minutes in past to look for upgrade notifications.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listUpgradeNotifications(String resourceGroupName, String name,
double history);
/**
* Gets any upgrade notifications for a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param history how many minutes in past to look for upgrade notifications.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return any upgrade notifications for a Redis cache as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listUpgradeNotifications(String resourceGroupName, String name,
double history, Context context);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> createWithResponseAsync(String resourceGroupName, String name,
RedisCreateParameters parameters);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, RedisResourceInner> beginCreateAsync(String resourceGroupName,
String name, RedisCreateParameters parameters);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, RedisResourceInner> beginCreate(String resourceGroupName, String name,
RedisCreateParameters parameters);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, RedisResourceInner> beginCreate(String resourceGroupName, String name,
RedisCreateParameters parameters, Context context);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono createAsync(String resourceGroupName, String name, RedisCreateParameters parameters);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisResourceInner create(String resourceGroupName, String name, RedisCreateParameters parameters);
/**
* Create or replace (overwrite/recreate, with potential downtime) an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Create Redis operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisResourceInner create(String resourceGroupName, String name, RedisCreateParameters parameters, Context context);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> updateWithResponseAsync(String resourceGroupName, String name,
RedisUpdateParameters parameters);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, RedisResourceInner> beginUpdateAsync(String resourceGroupName,
String name, RedisUpdateParameters parameters);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, RedisResourceInner> beginUpdate(String resourceGroupName, String name,
RedisUpdateParameters parameters);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, RedisResourceInner> beginUpdate(String resourceGroupName, String name,
RedisUpdateParameters parameters, Context context);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono updateAsync(String resourceGroupName, String name, RedisUpdateParameters parameters);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisResourceInner update(String resourceGroupName, String name, RedisUpdateParameters parameters);
/**
* Update an existing Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters supplied to the Update Redis operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a single Redis item in List or Get Operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisResourceInner update(String resourceGroupName, String name, RedisUpdateParameters parameters, Context context);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> deleteWithResponseAsync(String resourceGroupName, String name);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, Void> beginDeleteAsync(String resourceGroupName, String name);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginDelete(String resourceGroupName, String name);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginDelete(String resourceGroupName, String name, Context context);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono deleteAsync(String resourceGroupName, String name);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void delete(String resourceGroupName, String name);
/**
* Deletes a Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void delete(String resourceGroupName, String name, Context context);
/**
* Gets a Redis cache (resource description).
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Redis cache (resource description) along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> getByResourceGroupWithResponseAsync(String resourceGroupName, String name);
/**
* Gets a Redis cache (resource description).
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Redis cache (resource description) on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono getByResourceGroupAsync(String resourceGroupName, String name);
/**
* Gets a Redis cache (resource description).
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Redis cache (resource description) along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response getByResourceGroupWithResponse(String resourceGroupName, String name, Context context);
/**
* Gets a Redis cache (resource description).
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return a Redis cache (resource description).
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisResourceInner getByResourceGroup(String resourceGroupName, String name);
/**
* Lists all Redis caches in a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 response of list Redis operation as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedFlux listByResourceGroupAsync(String resourceGroupName);
/**
* Lists all Redis caches in a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 response of list Redis operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByResourceGroup(String resourceGroupName);
/**
* Lists all Redis caches in a resource group.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 response of list Redis operation as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable listByResourceGroup(String resourceGroupName, Context context);
/**
* Gets all Redis caches in the specified subscription.
*
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all Redis caches in the specified subscription as paginated response with {@link PagedFlux}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedFlux listAsync();
/**
* Gets all Redis caches in the specified subscription.
*
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable list();
/**
* Gets all Redis caches in the specified subscription.
*
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return all Redis caches in the specified subscription as paginated response with {@link PagedIterable}.
*/
@ServiceMethod(returns = ReturnType.COLLECTION)
PagedIterable list(Context context);
/**
* Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> listKeysWithResponseAsync(String resourceGroupName, String name);
/**
* Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono listKeysAsync(String resourceGroupName, String name);
/**
* Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response listKeysWithResponse(String resourceGroupName, String name, Context context);
/**
* Retrieve a Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisAccessKeysInner listKeys(String resourceGroupName, String name);
/**
* Regenerate Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which key to regenerate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys along with {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> regenerateKeyWithResponseAsync(String resourceGroupName, String name,
RedisRegenerateKeyParameters parameters);
/**
* Regenerate Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which key to regenerate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono regenerateKeyAsync(String resourceGroupName, String name,
RedisRegenerateKeyParameters parameters);
/**
* Regenerate Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which key to regenerate.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response regenerateKeyWithResponse(String resourceGroupName, String name,
RedisRegenerateKeyParameters parameters, Context context);
/**
* Regenerate Redis cache's access keys. This operation requires write permission to the cache resource.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which key to regenerate.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return redis cache access keys.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisAccessKeysInner regenerateKey(String resourceGroupName, String name, RedisRegenerateKeyParameters parameters);
/**
* Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be
* potential data loss.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which Redis node(s) to reboot.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 to force reboot for Redis cache along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono> forceRebootWithResponseAsync(String resourceGroupName, String name,
RedisRebootParameters parameters);
/**
* Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be
* potential data loss.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which Redis node(s) to reboot.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 to force reboot for Redis cache on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono forceRebootAsync(String resourceGroupName, String name,
RedisRebootParameters parameters);
/**
* Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be
* potential data loss.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which Redis node(s) to reboot.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 to force reboot for Redis cache along with {@link Response}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Response forceRebootWithResponse(String resourceGroupName, String name,
RedisRebootParameters parameters, Context context);
/**
* Reboot specified Redis node(s). This operation requires write permission to the cache resource. There can be
* potential data loss.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Specifies which Redis node(s) to reboot.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 to force reboot for Redis cache.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
RedisForceRebootResponseInner forceReboot(String resourceGroupName, String name, RedisRebootParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> importDataWithResponseAsync(String resourceGroupName, String name,
ImportRdbParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, Void> beginImportDataAsync(String resourceGroupName, String name,
ImportRdbParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginImportData(String resourceGroupName, String name,
ImportRdbParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginImportData(String resourceGroupName, String name,
ImportRdbParameters parameters, Context context);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono importDataAsync(String resourceGroupName, String name, ImportRdbParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void importData(String resourceGroupName, String name, ImportRdbParameters parameters);
/**
* Import data into Redis cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis import operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void importData(String resourceGroupName, String name, ImportRdbParameters parameters, Context context);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link Response} on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> exportDataWithResponseAsync(String resourceGroupName, String name,
ExportRdbParameters parameters);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, Void> beginExportDataAsync(String resourceGroupName, String name,
ExportRdbParameters parameters);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginExportData(String resourceGroupName, String name,
ExportRdbParameters parameters);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of long-running operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, Void> beginExportData(String resourceGroupName, String name,
ExportRdbParameters parameters, Context context);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return A {@link Mono} that completes when a successful response is received.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono exportDataAsync(String resourceGroupName, String name, ExportRdbParameters parameters);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void exportData(String resourceGroupName, String name, ExportRdbParameters parameters);
/**
* Export data from the redis cache to blobs in a container.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param name The name of the Redis cache.
* @param parameters Parameters for Redis export operation.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
void exportData(String resourceGroupName, String name, ExportRdbParameters parameters, Context context);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 current status of an async operation along with {@link Response} on successful completion of
* {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono>> flushCacheWithResponseAsync(String resourceGroupName, String cacheName);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link PollerFlux} for polling of the current status of an async operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
PollerFlux, OperationStatusResult> beginFlushCacheAsync(String resourceGroupName,
String cacheName);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of the current status of an async operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, OperationStatusResult> beginFlushCache(String resourceGroupName,
String cacheName);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 {@link SyncPoller} for polling of the current status of an async operation.
*/
@ServiceMethod(returns = ReturnType.LONG_RUNNING_OPERATION)
SyncPoller, OperationStatusResult> beginFlushCache(String resourceGroupName,
String cacheName, Context context);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 current status of an async operation on successful completion of {@link Mono}.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
Mono flushCacheAsync(String resourceGroupName, String cacheName);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 current status of an async operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
OperationStatusResult flushCache(String resourceGroupName, String cacheName);
/**
* Deletes all of the keys in a cache.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param cacheName The name of the Redis cache.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.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 current status of an async operation.
*/
@ServiceMethod(returns = ReturnType.SINGLE)
OperationStatusResult flushCache(String resourceGroupName, String cacheName, Context context);
}