Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.redis; import com.microsoft.azure.management.apigeneration.Fluent;
The RedisCache.keys() action result.
/** * The <code>RedisCache.keys()</code> action result. */
@Fluent public interface RedisAccessKeys {
Returns:a primary key value.
/** * @return a primary key value. */
String primaryKey();
Returns:a secondary key value.
/** * @return a secondary key value. */
String secondaryKey(); }