UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

44 lines (43 loc) 1.85 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists the available SKUs for scaling the Redis Enterprise cluster. * * Uses Azure REST API version 2025-05-01-preview. */ export declare function listRedisEnterpriseSkusForScaling(args: ListRedisEnterpriseSkusForScalingArgs, opts?: pulumi.InvokeOptions): Promise<ListRedisEnterpriseSkusForScalingResult>; export interface ListRedisEnterpriseSkusForScalingArgs { /** * The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens */ clusterName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * The response of a listSkusForScaling operation. */ export interface ListRedisEnterpriseSkusForScalingResult { /** * List of SKUS available to scale up or scale down. */ readonly skus?: outputs.redisenterprise.SkuDetailsResponse[]; } /** * Lists the available SKUs for scaling the Redis Enterprise cluster. * * Uses Azure REST API version 2025-05-01-preview. */ export declare function listRedisEnterpriseSkusForScalingOutput(args: ListRedisEnterpriseSkusForScalingOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListRedisEnterpriseSkusForScalingResult>; export interface ListRedisEnterpriseSkusForScalingOutputArgs { /** * The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens */ clusterName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }