flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
flexibleengine.getDmsKafkaFlavors
Explore with Pulumi AI
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
Use this data source to get the list of available flavor details within FlexibleEngine.
Example Usage
Query the list of kafka flavors for cluster type
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const test = flexibleengine.getDmsKafkaFlavors({
type: "cluster",
});
import pulumi
import pulumi_flexibleengine as flexibleengine
test = flexibleengine.get_dms_kafka_flavors(type="cluster")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := flexibleengine.GetDmsKafkaFlavors(ctx, &flexibleengine.GetDmsKafkaFlavorsArgs{
Type: pulumi.StringRef("cluster"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var test = Flexibleengine.GetDmsKafkaFlavors.Invoke(new()
{
Type = "cluster",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetDmsKafkaFlavorsArgs;
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 test = FlexibleengineFunctions.getDmsKafkaFlavors(GetDmsKafkaFlavorsArgs.builder()
.type("cluster")
.build());
}
}
variables:
test:
fn::invoke:
function: flexibleengine:getDmsKafkaFlavors
arguments:
type: cluster
Query the kafka flavor details of the specified ID
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const test = flexibleengine.getDmsKafkaFlavors({
flavorId: "c6.2u4g.cluster",
});
import pulumi
import pulumi_flexibleengine as flexibleengine
test = flexibleengine.get_dms_kafka_flavors(flavor_id="c6.2u4g.cluster")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := flexibleengine.GetDmsKafkaFlavors(ctx, &flexibleengine.GetDmsKafkaFlavorsArgs{
FlavorId: pulumi.StringRef("c6.2u4g.cluster"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var test = Flexibleengine.GetDmsKafkaFlavors.Invoke(new()
{
FlavorId = "c6.2u4g.cluster",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetDmsKafkaFlavorsArgs;
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 test = FlexibleengineFunctions.getDmsKafkaFlavors(GetDmsKafkaFlavorsArgs.builder()
.flavorId("c6.2u4g.cluster")
.build());
}
}
variables:
test:
fn::invoke:
function: flexibleengine:getDmsKafkaFlavors
arguments:
flavorId: c6.2u4g.cluster
Query list of kafka flavors that available in the availability zone list
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const config = new pulumi.Config();
const az1 = config.requireObject("az1");
const az2 = config.requireObject("az2");
const test = flexibleengine.getDmsKafkaFlavors({
availabilityZones: [
az1,
az2,
],
});
import pulumi
import pulumi_flexibleengine as flexibleengine
config = pulumi.Config()
az1 = config.require_object("az1")
az2 = config.require_object("az2")
test = flexibleengine.get_dms_kafka_flavors(availability_zones=[
az1,
az2,
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
az1 := cfg.RequireObject("az1")
az2 := cfg.RequireObject("az2")
_, err := flexibleengine.GetDmsKafkaFlavors(ctx, &flexibleengine.GetDmsKafkaFlavorsArgs{
AvailabilityZones: interface{}{
az1,
az2,
},
}, nil);
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Flexibleengine = Pulumi.Flexibleengine;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var az1 = config.RequireObject<dynamic>("az1");
var az2 = config.RequireObject<dynamic>("az2");
var test = Flexibleengine.GetDmsKafkaFlavors.Invoke(new()
{
AvailabilityZones = new[]
{
az1,
az2,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.flexibleengine.FlexibleengineFunctions;
import com.pulumi.flexibleengine.inputs.GetDmsKafkaFlavorsArgs;
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 config = ctx.config();
final var az1 = config.get("az1");
final var az2 = config.get("az2");
final var test = FlexibleengineFunctions.getDmsKafkaFlavors(GetDmsKafkaFlavorsArgs.builder()
.availabilityZones(
az1,
az2)
.build());
}
}
configuration:
az1:
type: dynamic
az2:
type: dynamic
variables:
test:
fn::invoke:
function: flexibleengine:getDmsKafkaFlavors
arguments:
availabilityZones:
- ${az1}
- ${az2}
Using getDmsKafkaFlavors
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 getDmsKafkaFlavors(args: GetDmsKafkaFlavorsArgs, opts?: InvokeOptions): Promise<GetDmsKafkaFlavorsResult>
function getDmsKafkaFlavorsOutput(args: GetDmsKafkaFlavorsOutputArgs, opts?: InvokeOptions): Output<GetDmsKafkaFlavorsResult>
def get_dms_kafka_flavors(arch_type: Optional[str] = None,
availability_zones: Optional[Sequence[str]] = None,
charging_mode: Optional[str] = None,
flavor_id: Optional[str] = None,
id: Optional[str] = None,
region: Optional[str] = None,
storage_spec_code: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDmsKafkaFlavorsResult
def get_dms_kafka_flavors_output(arch_type: Optional[pulumi.Input[str]] = None,
availability_zones: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
charging_mode: Optional[pulumi.Input[str]] = None,
flavor_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
storage_spec_code: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDmsKafkaFlavorsResult]
func GetDmsKafkaFlavors(ctx *Context, args *GetDmsKafkaFlavorsArgs, opts ...InvokeOption) (*GetDmsKafkaFlavorsResult, error)
func GetDmsKafkaFlavorsOutput(ctx *Context, args *GetDmsKafkaFlavorsOutputArgs, opts ...InvokeOption) GetDmsKafkaFlavorsResultOutput
> Note: This function is named GetDmsKafkaFlavors
in the Go SDK.
public static class GetDmsKafkaFlavors
{
public static Task<GetDmsKafkaFlavorsResult> InvokeAsync(GetDmsKafkaFlavorsArgs args, InvokeOptions? opts = null)
public static Output<GetDmsKafkaFlavorsResult> Invoke(GetDmsKafkaFlavorsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDmsKafkaFlavorsResult> getDmsKafkaFlavors(GetDmsKafkaFlavorsArgs args, InvokeOptions options)
public static Output<GetDmsKafkaFlavorsResult> getDmsKafkaFlavors(GetDmsKafkaFlavorsArgs args, InvokeOptions options)
fn::invoke:
function: flexibleengine:index/getDmsKafkaFlavors:getDmsKafkaFlavors
arguments:
# arguments dictionary
The following arguments are supported:
- Arch
Type string - Specifies the type of CPU architecture, e.g. X86.
- Availability
Zones List<string> - Specifies the list of availability zones with available resources.
- Charging
Mode string - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- Flavor
Id string - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- Id string
- The flavor ID.
- Region string
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- Storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- Arch
Type string - Specifies the type of CPU architecture, e.g. X86.
- Availability
Zones []string - Specifies the list of availability zones with available resources.
- Charging
Mode string - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- Flavor
Id string - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- Id string
- The flavor ID.
- Region string
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- Storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- arch
Type String - Specifies the type of CPU architecture, e.g. X86.
- availability
Zones List<String> - Specifies the list of availability zones with available resources.
- charging
Mode String - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- flavor
Id String - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- id String
- The flavor ID.
- region String
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- storage
Spec StringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type String
- Specifies flavor type. The valid values are single and cluster.
- arch
Type string - Specifies the type of CPU architecture, e.g. X86.
- availability
Zones string[] - Specifies the list of availability zones with available resources.
- charging
Mode string - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- flavor
Id string - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- id string
- The flavor ID.
- region string
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type string
- Specifies flavor type. The valid values are single and cluster.
- arch_
type str - Specifies the type of CPU architecture, e.g. X86.
- availability_
zones Sequence[str] - Specifies the list of availability zones with available resources.
- charging_
mode str - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- flavor_
id str - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- id str
- The flavor ID.
- region str
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- storage_
spec_ strcode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type str
- Specifies flavor type. The valid values are single and cluster.
- arch
Type String - Specifies the type of CPU architecture, e.g. X86.
- availability
Zones List<String> - Specifies the list of availability zones with available resources.
- charging
Mode String - Specifies the flavor billing mode. The valid valus are prePaid and postPaid.
- flavor
Id String - Specifies the DMS flvaor ID, e.g. c6.2u4g.cluster.
- id String
- The flavor ID.
- region String
- Specifies the region in which to obtain the dms kafka flavors. If omitted, the provider-level region will be used.
- storage
Spec StringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type String
- Specifies flavor type. The valid values are single and cluster.
getDmsKafkaFlavors Result
The following output properties are available:
- Flavors
List<Get
Dms Kafka Flavors Flavor> - The list of flavor details. The flavors structure is documented below.
- Id string
- The flavor ID.
- Versions List<string>
- The supported flavor versions.
- Arch
Type string - Availability
Zones List<string> - The list of availability zones with available resources.
- Charging
Mode string - Flavor
Id string - Region string
- Storage
Spec stringCode - The disk IO encoding.
- Type string
- The disk type.
- Flavors
[]Get
Dms Kafka Flavors Flavor - The list of flavor details. The flavors structure is documented below.
- Id string
- The flavor ID.
- Versions []string
- The supported flavor versions.
- Arch
Type string - Availability
Zones []string - The list of availability zones with available resources.
- Charging
Mode string - Flavor
Id string - Region string
- Storage
Spec stringCode - The disk IO encoding.
- Type string
- The disk type.
- flavors
List<Get
Dms Kafka Flavors Flavor> - The list of flavor details. The flavors structure is documented below.
- id String
- The flavor ID.
- versions List<String>
- The supported flavor versions.
- arch
Type String - availability
Zones List<String> - The list of availability zones with available resources.
- charging
Mode String - flavor
Id String - region String
- storage
Spec StringCode - The disk IO encoding.
- type String
- The disk type.
- flavors
Get
Dms Kafka Flavors Flavor[] - The list of flavor details. The flavors structure is documented below.
- id string
- The flavor ID.
- versions string[]
- The supported flavor versions.
- arch
Type string - availability
Zones string[] - The list of availability zones with available resources.
- charging
Mode string - flavor
Id string - region string
- storage
Spec stringCode - The disk IO encoding.
- type string
- The disk type.
- flavors
Sequence[Get
Dms Kafka Flavors Flavor] - The list of flavor details. The flavors structure is documented below.
- id str
- The flavor ID.
- versions Sequence[str]
- The supported flavor versions.
- arch_
type str - availability_
zones Sequence[str] - The list of availability zones with available resources.
- charging_
mode str - flavor_
id str - region str
- storage_
spec_ strcode - The disk IO encoding.
- type str
- The disk type.
- flavors List<Property Map>
- The list of flavor details. The flavors structure is documented below.
- id String
- The flavor ID.
- versions List<String>
- The supported flavor versions.
- arch
Type String - availability
Zones List<String> - The list of availability zones with available resources.
- charging
Mode String - flavor
Id String - region String
- storage
Spec StringCode - The disk IO encoding.
- type String
- The disk type.
Supporting Types
GetDmsKafkaFlavorsFlavor
- Arch
Types List<string> - The list of supported CPU architectures.
- Charging
Modes List<string> - The list of supported billing modes.
- Id string
- The flavor ID.
- Ios
List<Get
Dms Kafka Flavors Flavor Io> - The list of supported disk IO types. The object structure is documented below.
- Properties
List<Get
Dms Kafka Flavors Flavor Property> - The function property details. The object structure is documented below.
- Support
Features List<GetDms Kafka Flavors Flavor Support Feature> - The list of features supported by the current specification. The object structure is documented below.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- Vm
Specification string - The underlying VM specification.
- Arch
Types []string - The list of supported CPU architectures.
- Charging
Modes []string - The list of supported billing modes.
- Id string
- The flavor ID.
- Ios
[]Get
Dms Kafka Flavors Flavor Io - The list of supported disk IO types. The object structure is documented below.
- Properties
[]Get
Dms Kafka Flavors Flavor Property - The function property details. The object structure is documented below.
- Support
Features []GetDms Kafka Flavors Flavor Support Feature - The list of features supported by the current specification. The object structure is documented below.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- Vm
Specification string - The underlying VM specification.
- arch
Types List<String> - The list of supported CPU architectures.
- charging
Modes List<String> - The list of supported billing modes.
- id String
- The flavor ID.
- ios
List<Get
Dms Kafka Flavors Flavor Io> - The list of supported disk IO types. The object structure is documented below.
- properties
List<Get
Dms Kafka Flavors Flavor Property> - The function property details. The object structure is documented below.
- support
Features List<GetDms Kafka Flavors Flavor Support Feature> - The list of features supported by the current specification. The object structure is documented below.
- type String
- Specifies flavor type. The valid values are single and cluster.
- vm
Specification String - The underlying VM specification.
- arch
Types string[] - The list of supported CPU architectures.
- charging
Modes string[] - The list of supported billing modes.
- id string
- The flavor ID.
- ios
Get
Dms Kafka Flavors Flavor Io[] - The list of supported disk IO types. The object structure is documented below.
- properties
Get
Dms Kafka Flavors Flavor Property[] - The function property details. The object structure is documented below.
- support
Features GetDms Kafka Flavors Flavor Support Feature[] - The list of features supported by the current specification. The object structure is documented below.
- type string
- Specifies flavor type. The valid values are single and cluster.
- vm
Specification string - The underlying VM specification.
- arch_
types Sequence[str] - The list of supported CPU architectures.
- charging_
modes Sequence[str] - The list of supported billing modes.
- id str
- The flavor ID.
- ios
Sequence[Get
Dms Kafka Flavors Flavor Io] - The list of supported disk IO types. The object structure is documented below.
- properties
Sequence[Get
Dms Kafka Flavors Flavor Property] - The function property details. The object structure is documented below.
- support_
features Sequence[GetDms Kafka Flavors Flavor Support Feature] - The list of features supported by the current specification. The object structure is documented below.
- type str
- Specifies flavor type. The valid values are single and cluster.
- vm_
specification str - The underlying VM specification.
- arch
Types List<String> - The list of supported CPU architectures.
- charging
Modes List<String> - The list of supported billing modes.
- id String
- The flavor ID.
- ios List<Property Map>
- The list of supported disk IO types. The object structure is documented below.
- properties List<Property Map>
- The function property details. The object structure is documented below.
- support
Features List<Property Map> - The list of features supported by the current specification. The object structure is documented below.
- type String
- Specifies flavor type. The valid values are single and cluster.
- vm
Specification String - The underlying VM specification.
GetDmsKafkaFlavorsFlavorIo
- Availability
Zones List<string> - Specifies the list of availability zones with available resources.
- Storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- List<string>
- The list of unavailability zones with available resources.
- Availability
Zones []string - Specifies the list of availability zones with available resources.
- Storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- Type string
- Specifies flavor type. The valid values are single and cluster.
- []string
- The list of unavailability zones with available resources.
- availability
Zones List<String> - Specifies the list of availability zones with available resources.
- storage
Spec StringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type String
- Specifies flavor type. The valid values are single and cluster.
- List<String>
- The list of unavailability zones with available resources.
- availability
Zones string[] - Specifies the list of availability zones with available resources.
- storage
Spec stringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type string
- Specifies flavor type. The valid values are single and cluster.
- string[]
- The list of unavailability zones with available resources.
- availability_
zones Sequence[str] - Specifies the list of availability zones with available resources.
- storage_
spec_ strcode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type str
- Specifies flavor type. The valid values are single and cluster.
- Sequence[str]
- The list of unavailability zones with available resources.
- availability
Zones List<String> - Specifies the list of availability zones with available resources.
- storage
Spec StringCode - Specifies the disk IO encoding.
- dms.physical.storage.high.v2: Type of the disk that uses high I/O.
- dms.physical.storage.ultra.v2: Type of the disk that uses ultra-high I/O.
- type String
- Specifies flavor type. The valid values are single and cluster.
- List<String>
- The list of unavailability zones with available resources.
GetDmsKafkaFlavorsFlavorProperty
- Flavor
Alias string - The flavor ID alias.
- Max
Bandwidth doublePer Broker - The maximum bandwidth per broker.
- Max
Broker double - The maximum number of brokers.
- Max
Consumer doublePer Broker - The maximum number of consumers per broker.
- Max
Partition doublePer Broker - The maximum number of partitions per broker.
- Max
Storage doublePer Node - The maximum storage per node. The unit is GB.
- Max
Tps doublePer Broker - The maximum TPS per broker.
- Min
Broker double - The minimum number of brokers.
- Min
Storage doublePer Node - The minimum storage per node. The unit is GB.
- Flavor
Alias string - The flavor ID alias.
- Max
Bandwidth float64Per Broker - The maximum bandwidth per broker.
- Max
Broker float64 - The maximum number of brokers.
- Max
Consumer float64Per Broker - The maximum number of consumers per broker.
- Max
Partition float64Per Broker - The maximum number of partitions per broker.
- Max
Storage float64Per Node - The maximum storage per node. The unit is GB.
- Max
Tps float64Per Broker - The maximum TPS per broker.
- Min
Broker float64 - The minimum number of brokers.
- Min
Storage float64Per Node - The minimum storage per node. The unit is GB.
- flavor
Alias String - The flavor ID alias.
- max
Bandwidth DoublePer Broker - The maximum bandwidth per broker.
- max
Broker Double - The maximum number of brokers.
- max
Consumer DoublePer Broker - The maximum number of consumers per broker.
- max
Partition DoublePer Broker - The maximum number of partitions per broker.
- max
Storage DoublePer Node - The maximum storage per node. The unit is GB.
- max
Tps DoublePer Broker - The maximum TPS per broker.
- min
Broker Double - The minimum number of brokers.
- min
Storage DoublePer Node - The minimum storage per node. The unit is GB.
- flavor
Alias string - The flavor ID alias.
- max
Bandwidth numberPer Broker - The maximum bandwidth per broker.
- max
Broker number - The maximum number of brokers.
- max
Consumer numberPer Broker - The maximum number of consumers per broker.
- max
Partition numberPer Broker - The maximum number of partitions per broker.
- max
Storage numberPer Node - The maximum storage per node. The unit is GB.
- max
Tps numberPer Broker - The maximum TPS per broker.
- min
Broker number - The minimum number of brokers.
- min
Storage numberPer Node - The minimum storage per node. The unit is GB.
- flavor_
alias str - The flavor ID alias.
- max_
bandwidth_ floatper_ broker - The maximum bandwidth per broker.
- max_
broker float - The maximum number of brokers.
- max_
consumer_ floatper_ broker - The maximum number of consumers per broker.
- max_
partition_ floatper_ broker - The maximum number of partitions per broker.
- max_
storage_ floatper_ node - The maximum storage per node. The unit is GB.
- max_
tps_ floatper_ broker - The maximum TPS per broker.
- min_
broker float - The minimum number of brokers.
- min_
storage_ floatper_ node - The minimum storage per node. The unit is GB.
- flavor
Alias String - The flavor ID alias.
- max
Bandwidth NumberPer Broker - The maximum bandwidth per broker.
- max
Broker Number - The maximum number of brokers.
- max
Consumer NumberPer Broker - The maximum number of consumers per broker.
- max
Partition NumberPer Broker - The maximum number of partitions per broker.
- max
Storage NumberPer Node - The maximum storage per node. The unit is GB.
- max
Tps NumberPer Broker - The maximum TPS per broker.
- min
Broker Number - The minimum number of brokers.
- min
Storage NumberPer Node - The minimum storage per node. The unit is GB.
GetDmsKafkaFlavorsFlavorSupportFeature
- Name string
- The function name, e.g. connector_obs.
- Properties
List<Get
Dms Kafka Flavors Flavor Support Feature Property> - The function property details. The object structure is documented below.
- Name string
- The function name, e.g. connector_obs.
- Properties
[]Get
Dms Kafka Flavors Flavor Support Feature Property - The function property details. The object structure is documented below.
- name String
- The function name, e.g. connector_obs.
- properties
List<Get
Dms Kafka Flavors Flavor Support Feature Property> - The function property details. The object structure is documented below.
- name string
- The function name, e.g. connector_obs.
- properties
Get
Dms Kafka Flavors Flavor Support Feature Property[] - The function property details. The object structure is documented below.
- name str
- The function name, e.g. connector_obs.
- properties
Sequence[Get
Dms Kafka Flavors Flavor Support Feature Property] - The function property details. The object structure is documented below.
- name String
- The function name, e.g. connector_obs.
- properties List<Property Map>
- The function property details. The object structure is documented below.
GetDmsKafkaFlavorsFlavorSupportFeatureProperty
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the
flexibleengine
Terraform Provider.
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud