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

48 lines (47 loc) 2.45 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. * * Other available API versions: 2025-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ 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. * * Other available API versions: 2025-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ 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>; }