Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi
alicloud.kvstore.getInstanceClasses
Explore with Pulumi AI
This data source provides the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance classes resource available info of Alibaba Cloud.
NOTE: Available since v1.49.0.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const resources = alicloud.getZones({
availableResourceCreation: "KVStore",
});
const resourcesGetInstanceClasses = resources.then(resources => alicloud.kvstore.getInstanceClasses({
zoneId: resources.zones?.[0]?.id,
instanceChargeType: "PrePaid",
engine: "Redis",
engineVersion: "5.0",
outputFile: "./classes.txt",
}));
export const firstKvstoreInstanceClass = resourcesGetInstanceClasses.then(resourcesGetInstanceClasses => resourcesGetInstanceClasses.instanceClasses);
import pulumi
import pulumi_alicloud as alicloud
resources = alicloud.get_zones(available_resource_creation="KVStore")
resources_get_instance_classes = alicloud.kvstore.get_instance_classes(zone_id=resources.zones[0].id,
instance_charge_type="PrePaid",
engine="Redis",
engine_version="5.0",
output_file="./classes.txt")
pulumi.export("firstKvstoreInstanceClass", resources_get_instance_classes.instance_classes)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/kvstore"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
resources, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableResourceCreation: pulumi.StringRef("KVStore"),
}, nil)
if err != nil {
return err
}
resourcesGetInstanceClasses, err := kvstore.GetInstanceClasses(ctx, &kvstore.GetInstanceClassesArgs{
ZoneId: resources.Zones[0].Id,
InstanceChargeType: pulumi.StringRef("PrePaid"),
Engine: pulumi.StringRef("Redis"),
EngineVersion: pulumi.StringRef("5.0"),
OutputFile: pulumi.StringRef("./classes.txt"),
}, nil)
if err != nil {
return err
}
ctx.Export("firstKvstoreInstanceClass", resourcesGetInstanceClasses.InstanceClasses)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var resources = AliCloud.GetZones.Invoke(new()
{
AvailableResourceCreation = "KVStore",
});
var resourcesGetInstanceClasses = AliCloud.KVStore.GetInstanceClasses.Invoke(new()
{
ZoneId = resources.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
InstanceChargeType = "PrePaid",
Engine = "Redis",
EngineVersion = "5.0",
OutputFile = "./classes.txt",
});
return new Dictionary<string, object?>
{
["firstKvstoreInstanceClass"] = resourcesGetInstanceClasses.Apply(getInstanceClassesResult => getInstanceClassesResult.InstanceClasses),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.kvstore.KvstoreFunctions;
import com.pulumi.alicloud.kvstore.inputs.GetInstanceClassesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var resources = AlicloudFunctions.getZones(GetZonesArgs.builder()
.availableResourceCreation("KVStore")
.build());
final var resourcesGetInstanceClasses = KvstoreFunctions.getInstanceClasses(GetInstanceClassesArgs.builder()
.zoneId(resources.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
.instanceChargeType("PrePaid")
.engine("Redis")
.engineVersion("5.0")
.outputFile("./classes.txt")
.build());
ctx.export("firstKvstoreInstanceClass", resourcesGetInstanceClasses.applyValue(getInstanceClassesResult -> getInstanceClassesResult.instanceClasses()));
}
}
variables:
resources:
fn::invoke:
function: alicloud:getZones
arguments:
availableResourceCreation: KVStore
resourcesGetInstanceClasses:
fn::invoke:
function: alicloud:kvstore:getInstanceClasses
arguments:
zoneId: ${resources.zones[0].id}
instanceChargeType: PrePaid
engine: Redis
engineVersion: '5.0'
outputFile: ./classes.txt
outputs:
firstKvstoreInstanceClass: ${resourcesGetInstanceClasses.instanceClasses}
Using getInstanceClasses
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getInstanceClasses(args: GetInstanceClassesArgs, opts?: InvokeOptions): Promise<GetInstanceClassesResult>
function getInstanceClassesOutput(args: GetInstanceClassesOutputArgs, opts?: InvokeOptions): Output<GetInstanceClassesResult>
def get_instance_classes(architecture: Optional[str] = None,
edition_type: Optional[str] = None,
engine: Optional[str] = None,
engine_version: Optional[str] = None,
instance_charge_type: Optional[str] = None,
node_type: Optional[str] = None,
output_file: Optional[str] = None,
package_type: Optional[str] = None,
performance_type: Optional[str] = None,
product_type: Optional[str] = None,
series_type: Optional[str] = None,
shard_number: Optional[int] = None,
sorted_by: Optional[str] = None,
storage_type: Optional[str] = None,
zone_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetInstanceClassesResult
def get_instance_classes_output(architecture: Optional[pulumi.Input[str]] = None,
edition_type: Optional[pulumi.Input[str]] = None,
engine: Optional[pulumi.Input[str]] = None,
engine_version: Optional[pulumi.Input[str]] = None,
instance_charge_type: Optional[pulumi.Input[str]] = None,
node_type: Optional[pulumi.Input[str]] = None,
output_file: Optional[pulumi.Input[str]] = None,
package_type: Optional[pulumi.Input[str]] = None,
performance_type: Optional[pulumi.Input[str]] = None,
product_type: Optional[pulumi.Input[str]] = None,
series_type: Optional[pulumi.Input[str]] = None,
shard_number: Optional[pulumi.Input[int]] = None,
sorted_by: Optional[pulumi.Input[str]] = None,
storage_type: Optional[pulumi.Input[str]] = None,
zone_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetInstanceClassesResult]
func GetInstanceClasses(ctx *Context, args *GetInstanceClassesArgs, opts ...InvokeOption) (*GetInstanceClassesResult, error)
func GetInstanceClassesOutput(ctx *Context, args *GetInstanceClassesOutputArgs, opts ...InvokeOption) GetInstanceClassesResultOutput
> Note: This function is named GetInstanceClasses
in the Go SDK.
public static class GetInstanceClasses
{
public static Task<GetInstanceClassesResult> InvokeAsync(GetInstanceClassesArgs args, InvokeOptions? opts = null)
public static Output<GetInstanceClassesResult> Invoke(GetInstanceClassesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetInstanceClassesResult> getInstanceClasses(GetInstanceClassesArgs args, InvokeOptions options)
public static Output<GetInstanceClassesResult> getInstanceClasses(GetInstanceClassesArgs args, InvokeOptions options)
fn::invoke:
function: alicloud:kvstore/getInstanceClasses:getInstanceClasses
arguments:
# arguments dictionary
The following arguments are supported:
- Zone
Id string - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- Architecture string
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - Edition
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - Engine string
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - Engine
Version string - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - Instance
Charge stringType - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - Node
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - Output
File string - File name where to save data source results (after running
pulumi up
). - Package
Type string - It has been deprecated from 1.68.0.
- Performance
Type string - It has been deprecated from 1.68.0.
- Product
Type string - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- Series
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - int
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - Sorted
By string - Storage
Type string - It has been deprecated from 1.68.0.
- Zone
Id string - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- Architecture string
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - Edition
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - Engine string
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - Engine
Version string - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - Instance
Charge stringType - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - Node
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - Output
File string - File name where to save data source results (after running
pulumi up
). - Package
Type string - It has been deprecated from 1.68.0.
- Performance
Type string - It has been deprecated from 1.68.0.
- Product
Type string - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- Series
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - int
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - Sorted
By string - Storage
Type string - It has been deprecated from 1.68.0.
- zone
Id String - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- architecture String
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - edition
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - engine String
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - engine
Version String - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - instance
Charge StringType - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - node
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - output
File String - File name where to save data source results (after running
pulumi up
). - package
Type String - It has been deprecated from 1.68.0.
- performance
Type String - It has been deprecated from 1.68.0.
- product
Type String - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- series
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - Integer
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - sorted
By String - storage
Type String - It has been deprecated from 1.68.0.
- zone
Id string - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- architecture string
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - edition
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - engine string
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - engine
Version string - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - instance
Charge stringType - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - node
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - output
File string - File name where to save data source results (after running
pulumi up
). - package
Type string - It has been deprecated from 1.68.0.
- performance
Type string - It has been deprecated from 1.68.0.
- product
Type string - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- series
Type string - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - number
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - sorted
By string - storage
Type string - It has been deprecated from 1.68.0.
- zone_
id str - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- architecture str
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - edition_
type str - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - engine str
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - engine_
version str - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - instance_
charge_ strtype - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - node_
type str - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - output_
file str - File name where to save data source results (after running
pulumi up
). - package_
type str - It has been deprecated from 1.68.0.
- performance_
type str - It has been deprecated from 1.68.0.
- product_
type str - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- series_
type str - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - int
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - sorted_
by str - storage_
type str - It has been deprecated from 1.68.0.
- zone
Id String - The Zone to launch the Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance.
- architecture String
- The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance system architecture required by the user. Valid values:
standard
,cluster
andrwsplit
. - edition
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance edition type required by the user. Valid values:
Community
andEnterprise
. - engine String
- Database type. Options are
Redis
,Memcache
. Default toRedis
. - engine
Version String - Database version required by the user. Value options of Redis can refer to the latest docs detail info
EngineVersion
. Value of Memcache should be empty. - instance
Charge StringType - Filter the results by charge type. Valid values:
PrePaid
andPostPaid
. Default toPrePaid
. - node
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance node type required by the user. Valid values:
double
,single
,readone
,readthree
andreadfive
. - output
File String - File name where to save data source results (after running
pulumi up
). - package
Type String - It has been deprecated from 1.68.0.
- performance
Type String - It has been deprecated from 1.68.0.
- product
Type String - The type of the service. Valid values:
- Local: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a local disk.
- OnECS: a Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance with a standard disk. This type is available only on the Alibaba Cloud China site.
- series
Type String - The Tair (Redis OSS-Compatible) And Memcache (KVStore) Instance series type required by the user. Valid values:
enhanced_performance_type
andhybrid_storage
. - Number
- The number of shard.Valid values:
1
,2
,4
,8
,16
,32
,64
,128
,256
. - sorted
By String - storage
Type String - It has been deprecated from 1.68.0.
getInstanceClasses Result
The following output properties are available:
- Classes
List<Pulumi.
Ali Cloud. KVStore. Outputs. Get Instance Classes Class> - A list of KVStore available instance classes when the
sorted_by
is "Price". include: - Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Classes List<string> - A list of KVStore available instance classes.
- Zone
Id string - Architecture string
- Edition
Type string - Engine string
- Engine
Version string - Instance
Charge stringType - Node
Type string - Output
File string - Package
Type string - Performance
Type string - Product
Type string - Series
Type string - int
- Sorted
By string - Storage
Type string
- Classes
[]Get
Instance Classes Class - A list of KVStore available instance classes when the
sorted_by
is "Price". include: - Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Classes []string - A list of KVStore available instance classes.
- Zone
Id string - Architecture string
- Edition
Type string - Engine string
- Engine
Version string - Instance
Charge stringType - Node
Type string - Output
File string - Package
Type string - Performance
Type string - Product
Type string - Series
Type string - int
- Sorted
By string - Storage
Type string
- classes
List<Get
Instance Classes Class> - A list of KVStore available instance classes when the
sorted_by
is "Price". include: - id String
- The provider-assigned unique ID for this managed resource.
- instance
Classes List<String> - A list of KVStore available instance classes.
- zone
Id String - architecture String
- edition
Type String - engine String
- engine
Version String - instance
Charge StringType - node
Type String - output
File String - package
Type String - performance
Type String - product
Type String - series
Type String - Integer
- sorted
By String - storage
Type String
- classes
Get
Instance Classes Class[] - A list of KVStore available instance classes when the
sorted_by
is "Price". include: - id string
- The provider-assigned unique ID for this managed resource.
- instance
Classes string[] - A list of KVStore available instance classes.
- zone
Id string - architecture string
- edition
Type string - engine string
- engine
Version string - instance
Charge stringType - node
Type string - output
File string - package
Type string - performance
Type string - product
Type string - series
Type string - number
- sorted
By string - storage
Type string
- classes
Sequence[Get
Instance Classes Class] - A list of KVStore available instance classes when the
sorted_by
is "Price". include: - id str
- The provider-assigned unique ID for this managed resource.
- instance_
classes Sequence[str] - A list of KVStore available instance classes.
- zone_
id str - architecture str
- edition_
type str - engine str
- engine_
version str - instance_
charge_ strtype - node_
type str - output_
file str - package_
type str - performance_
type str - product_
type str - series_
type str - int
- sorted_
by str - storage_
type str
- classes List<Property Map>
- A list of KVStore available instance classes when the
sorted_by
is "Price". include: - id String
- The provider-assigned unique ID for this managed resource.
- instance
Classes List<String> - A list of KVStore available instance classes.
- zone
Id String - architecture String
- edition
Type String - engine String
- engine
Version String - instance
Charge StringType - node
Type String - output
File String - package
Type String - performance
Type String - product
Type String - series
Type String - Number
- sorted
By String - storage
Type String
Supporting Types
GetInstanceClassesClass
- Instance
Class string - KVStore available instance class.
- Price string
- Instance
Class string - KVStore available instance class.
- Price string
- instance
Class String - KVStore available instance class.
- price String
- instance
Class string - KVStore available instance class.
- price string
- instance_
class str - KVStore available instance class.
- price str
- instance
Class String - KVStore available instance class.
- price String
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.