flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
flexibleengine.getDmsKafkaInstances
Explore with Pulumi AI
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud
Use this data source to query the available instances within FlexibleEngine DMS service.
Example Usage
Query all instances with the keyword in the name
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const config = new pulumi.Config();
const keyword = config.requireObject("keyword");
const test = flexibleengine.getDmsKafkaInstances({
name: keyword,
fuzzyMatch: true,
});
import pulumi
import pulumi_flexibleengine as flexibleengine
config = pulumi.Config()
keyword = config.require_object("keyword")
test = flexibleengine.get_dms_kafka_instances(name=keyword,
fuzzy_match=True)
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, "")
keyword := cfg.RequireObject("keyword")
_, err := flexibleengine.GetDmsKafkaInstances(ctx, &flexibleengine.GetDmsKafkaInstancesArgs{
Name: pulumi.StringRef(keyword),
FuzzyMatch: pulumi.BoolRef(true),
}, 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 keyword = config.RequireObject<dynamic>("keyword");
var test = Flexibleengine.GetDmsKafkaInstances.Invoke(new()
{
Name = keyword,
FuzzyMatch = true,
});
});
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.GetDmsKafkaInstancesArgs;
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 keyword = config.get("keyword");
final var test = FlexibleengineFunctions.getDmsKafkaInstances(GetDmsKafkaInstancesArgs.builder()
.name(keyword)
.fuzzyMatch(true)
.build());
}
}
configuration:
keyword:
type: dynamic
variables:
test:
fn::invoke:
function: flexibleengine:getDmsKafkaInstances
arguments:
name: ${keyword}
fuzzyMatch: true
Query the instance with the specified name
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const config = new pulumi.Config();
const instanceName = config.requireObject("instanceName");
const test = flexibleengine.getDmsKafkaInstances({
name: instanceName,
});
import pulumi
import pulumi_flexibleengine as flexibleengine
config = pulumi.Config()
instance_name = config.require_object("instanceName")
test = flexibleengine.get_dms_kafka_instances(name=instance_name)
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, "")
instanceName := cfg.RequireObject("instanceName")
_, err := flexibleengine.GetDmsKafkaInstances(ctx, &flexibleengine.GetDmsKafkaInstancesArgs{
Name: pulumi.StringRef(instanceName),
}, 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 instanceName = config.RequireObject<dynamic>("instanceName");
var test = Flexibleengine.GetDmsKafkaInstances.Invoke(new()
{
Name = instanceName,
});
});
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.GetDmsKafkaInstancesArgs;
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 instanceName = config.get("instanceName");
final var test = FlexibleengineFunctions.getDmsKafkaInstances(GetDmsKafkaInstancesArgs.builder()
.name(instanceName)
.build());
}
}
configuration:
instanceName:
type: dynamic
variables:
test:
fn::invoke:
function: flexibleengine:getDmsKafkaInstances
arguments:
name: ${instanceName}
Using getDmsKafkaInstances
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 getDmsKafkaInstances(args: GetDmsKafkaInstancesArgs, opts?: InvokeOptions): Promise<GetDmsKafkaInstancesResult>
function getDmsKafkaInstancesOutput(args: GetDmsKafkaInstancesOutputArgs, opts?: InvokeOptions): Output<GetDmsKafkaInstancesResult>
def get_dms_kafka_instances(enterprise_project_id: Optional[str] = None,
fuzzy_match: Optional[bool] = None,
id: Optional[str] = None,
include_failure: Optional[bool] = None,
instance_id: Optional[str] = None,
name: Optional[str] = None,
region: Optional[str] = None,
status: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDmsKafkaInstancesResult
def get_dms_kafka_instances_output(enterprise_project_id: Optional[pulumi.Input[str]] = None,
fuzzy_match: Optional[pulumi.Input[bool]] = None,
id: Optional[pulumi.Input[str]] = None,
include_failure: Optional[pulumi.Input[bool]] = None,
instance_id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
region: Optional[pulumi.Input[str]] = None,
status: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDmsKafkaInstancesResult]
func GetDmsKafkaInstances(ctx *Context, args *GetDmsKafkaInstancesArgs, opts ...InvokeOption) (*GetDmsKafkaInstancesResult, error)
func GetDmsKafkaInstancesOutput(ctx *Context, args *GetDmsKafkaInstancesOutputArgs, opts ...InvokeOption) GetDmsKafkaInstancesResultOutput
> Note: This function is named GetDmsKafkaInstances
in the Go SDK.
public static class GetDmsKafkaInstances
{
public static Task<GetDmsKafkaInstancesResult> InvokeAsync(GetDmsKafkaInstancesArgs args, InvokeOptions? opts = null)
public static Output<GetDmsKafkaInstancesResult> Invoke(GetDmsKafkaInstancesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDmsKafkaInstancesResult> getDmsKafkaInstances(GetDmsKafkaInstancesArgs args, InvokeOptions options)
public static Output<GetDmsKafkaInstancesResult> getDmsKafkaInstances(GetDmsKafkaInstancesArgs args, InvokeOptions options)
fn::invoke:
function: flexibleengine:index/getDmsKafkaInstances:getDmsKafkaInstances
arguments:
# arguments dictionary
The following arguments are supported:
- Enterprise
Project stringId - Fuzzy
Match bool - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - Id string
- The instance ID.
- Include
Failure bool - Specifies whether the query results contain instances that failed to create.
- Instance
Id string - Specifies the kafka instance ID to match exactly.
- Name string
- Specifies the kafka instance name for data-source queries.
- Region string
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- Status string
- Specifies the kafka instance status for data-source queries.
- Enterprise
Project stringId - Fuzzy
Match bool - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - Id string
- The instance ID.
- Include
Failure bool - Specifies whether the query results contain instances that failed to create.
- Instance
Id string - Specifies the kafka instance ID to match exactly.
- Name string
- Specifies the kafka instance name for data-source queries.
- Region string
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- Status string
- Specifies the kafka instance status for data-source queries.
- enterprise
Project StringId - fuzzy
Match Boolean - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - id String
- The instance ID.
- include
Failure Boolean - Specifies whether the query results contain instances that failed to create.
- instance
Id String - Specifies the kafka instance ID to match exactly.
- name String
- Specifies the kafka instance name for data-source queries.
- region String
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- status String
- Specifies the kafka instance status for data-source queries.
- enterprise
Project stringId - fuzzy
Match boolean - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - id string
- The instance ID.
- include
Failure boolean - Specifies whether the query results contain instances that failed to create.
- instance
Id string - Specifies the kafka instance ID to match exactly.
- name string
- Specifies the kafka instance name for data-source queries.
- region string
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- status string
- Specifies the kafka instance status for data-source queries.
- enterprise_
project_ strid - fuzzy_
match bool - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - id str
- The instance ID.
- include_
failure bool - Specifies whether the query results contain instances that failed to create.
- instance_
id str - Specifies the kafka instance ID to match exactly.
- name str
- Specifies the kafka instance name for data-source queries.
- region str
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- status str
- Specifies the kafka instance status for data-source queries.
- enterprise
Project StringId - fuzzy
Match Boolean - Specifies whether to match the instance name fuzzily, the default is a exact
match (
flase
). - id String
- The instance ID.
- include
Failure Boolean - Specifies whether the query results contain instances that failed to create.
- instance
Id String - Specifies the kafka instance ID to match exactly.
- name String
- Specifies the kafka instance name for data-source queries.
- region String
- The region in which to query the kafka instance list. If omitted, the provider-level region will be used.
- status String
- Specifies the kafka instance status for data-source queries.
getDmsKafkaInstances Result
The following output properties are available:
- Id string
- The instance ID.
- Instances
List<Get
Dms Kafka Instances Instance> - The result of the query's list of kafka instances. The instances object structure is documented below.
- Enterprise
Project stringId - Fuzzy
Match bool - Include
Failure bool - Instance
Id string - Name string
- The instance name.
- Region string
- Status string
- The instance status.
- Id string
- The instance ID.
- Instances
[]Get
Dms Kafka Instances Instance - The result of the query's list of kafka instances. The instances object structure is documented below.
- Enterprise
Project stringId - Fuzzy
Match bool - Include
Failure bool - Instance
Id string - Name string
- The instance name.
- Region string
- Status string
- The instance status.
- id String
- The instance ID.
- instances
List<Get
Dms Kafka Instances Instance> - The result of the query's list of kafka instances. The instances object structure is documented below.
- enterprise
Project StringId - fuzzy
Match Boolean - include
Failure Boolean - instance
Id String - name String
- The instance name.
- region String
- status String
- The instance status.
- id string
- The instance ID.
- instances
Get
Dms Kafka Instances Instance[] - The result of the query's list of kafka instances. The instances object structure is documented below.
- enterprise
Project stringId - fuzzy
Match boolean - include
Failure boolean - instance
Id string - name string
- The instance name.
- region string
- status string
- The instance status.
- id str
- The instance ID.
- instances
Sequence[Get
Dms Kafka Instances Instance] - The result of the query's list of kafka instances. The instances object structure is documented below.
- enterprise_
project_ strid - fuzzy_
match bool - include_
failure bool - instance_
id str - name str
- The instance name.
- region str
- status str
- The instance status.
- id String
- The instance ID.
- instances List<Property Map>
- The result of the query's list of kafka instances. The instances object structure is documented below.
- enterprise
Project StringId - fuzzy
Match Boolean - include
Failure Boolean - instance
Id String - name String
- The instance name.
- region String
- status String
- The instance status.
Supporting Types
GetDmsKafkaInstancesInstance
- Access
User string - The access username.
- Availability
Zones List<string> - The list of AZ names.
- Connect
Address string - The IP address for instance connection.
- Cross
Vpc List<GetAccesses Dms Kafka Instances Instance Cross Vpc Access> - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- Description string
- The instance description.
- Dumping bool
- Whether to dumping is enabled.
- Enable
Auto boolTopic - Whether to enable automatic topic creation.
- Enable
Public boolIp - Whether public access to the instance is enabled.
- Enabled
Mechanisms List<string> - Engine
Version string - The kafka engine version.
- Enterprise
Project stringId - Id string
- The instance ID.
- Maintain
Begin string - The time at which a maintenance time window starts, the format is
HH:mm
. - Maintain
End string - The time at which a maintenance time window ends, the format is
HH:mm
. - Management
Connect stringAddress - The connection address of the Kafka manager of an instance.
- Manager
User string - The username for logging in to the Kafka Manager.
- Manegement
Connect stringAddress - Name string
- Specifies the kafka instance name for data-source queries.
- Network
Id string - The subnet ID to which the instance belongs.
- Partition
Num double - The maximum number of topics in the DMS kafka instance.
- Port double
- The port number.
- Product
Id string - The product ID used by the instance.
- Public
Conn stringAddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - Public
Ip List<string>Ids - The IDs of the elastic IP address (EIP).
- Resource
Spec stringCode - The resource specifications identifier.
- Retention
Policy string - The action to be taken when the memory usage reaches the disk capacity threshold.
- Security
Group stringId - The security group ID associated with the instance.
- Security
Protocol string - Ssl
Enable bool - Whether the Kafka SASL_SSL is enabled.
- Status string
- Specifies the kafka instance status for data-source queries.
- Storage
Space double - The message storage capacity, in GB unit.
- Storage
Spec stringCode - The storage I/O specification.
- Dictionary<string, string>
- The key/value pairs to associate with the instance.
- Type string
- The instance type.
- Used
Storage doubleSpace - The used message storage space, in GB unit.
- User
Id string - The user ID who created the instance.
- User
Name string - The username who created the instance.
- Vpc
Id string - The VPC ID to which the instance belongs.
- Access
User string - The access username.
- Availability
Zones []string - The list of AZ names.
- Connect
Address string - The IP address for instance connection.
- Cross
Vpc []GetAccesses Dms Kafka Instances Instance Cross Vpc Access - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- Description string
- The instance description.
- Dumping bool
- Whether to dumping is enabled.
- Enable
Auto boolTopic - Whether to enable automatic topic creation.
- Enable
Public boolIp - Whether public access to the instance is enabled.
- Enabled
Mechanisms []string - Engine
Version string - The kafka engine version.
- Enterprise
Project stringId - Id string
- The instance ID.
- Maintain
Begin string - The time at which a maintenance time window starts, the format is
HH:mm
. - Maintain
End string - The time at which a maintenance time window ends, the format is
HH:mm
. - Management
Connect stringAddress - The connection address of the Kafka manager of an instance.
- Manager
User string - The username for logging in to the Kafka Manager.
- Manegement
Connect stringAddress - Name string
- Specifies the kafka instance name for data-source queries.
- Network
Id string - The subnet ID to which the instance belongs.
- Partition
Num float64 - The maximum number of topics in the DMS kafka instance.
- Port float64
- The port number.
- Product
Id string - The product ID used by the instance.
- Public
Conn stringAddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - Public
Ip []stringIds - The IDs of the elastic IP address (EIP).
- Resource
Spec stringCode - The resource specifications identifier.
- Retention
Policy string - The action to be taken when the memory usage reaches the disk capacity threshold.
- Security
Group stringId - The security group ID associated with the instance.
- Security
Protocol string - Ssl
Enable bool - Whether the Kafka SASL_SSL is enabled.
- Status string
- Specifies the kafka instance status for data-source queries.
- Storage
Space float64 - The message storage capacity, in GB unit.
- Storage
Spec stringCode - The storage I/O specification.
- map[string]string
- The key/value pairs to associate with the instance.
- Type string
- The instance type.
- Used
Storage float64Space - The used message storage space, in GB unit.
- User
Id string - The user ID who created the instance.
- User
Name string - The username who created the instance.
- Vpc
Id string - The VPC ID to which the instance belongs.
- access
User String - The access username.
- availability
Zones List<String> - The list of AZ names.
- connect
Address String - The IP address for instance connection.
- cross
Vpc List<GetAccesses Dms Kafka Instances Instance Cross Vpc Access> - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- description String
- The instance description.
- dumping Boolean
- Whether to dumping is enabled.
- enable
Auto BooleanTopic - Whether to enable automatic topic creation.
- enable
Public BooleanIp - Whether public access to the instance is enabled.
- enabled
Mechanisms List<String> - engine
Version String - The kafka engine version.
- enterprise
Project StringId - id String
- The instance ID.
- maintain
Begin String - The time at which a maintenance time window starts, the format is
HH:mm
. - maintain
End String - The time at which a maintenance time window ends, the format is
HH:mm
. - management
Connect StringAddress - The connection address of the Kafka manager of an instance.
- manager
User String - The username for logging in to the Kafka Manager.
- manegement
Connect StringAddress - name String
- Specifies the kafka instance name for data-source queries.
- network
Id String - The subnet ID to which the instance belongs.
- partition
Num Double - The maximum number of topics in the DMS kafka instance.
- port Double
- The port number.
- product
Id String - The product ID used by the instance.
- public
Conn StringAddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - public
Ip List<String>Ids - The IDs of the elastic IP address (EIP).
- resource
Spec StringCode - The resource specifications identifier.
- retention
Policy String - The action to be taken when the memory usage reaches the disk capacity threshold.
- security
Group StringId - The security group ID associated with the instance.
- security
Protocol String - ssl
Enable Boolean - Whether the Kafka SASL_SSL is enabled.
- status String
- Specifies the kafka instance status for data-source queries.
- storage
Space Double - The message storage capacity, in GB unit.
- storage
Spec StringCode - The storage I/O specification.
- Map<String,String>
- The key/value pairs to associate with the instance.
- type String
- The instance type.
- used
Storage DoubleSpace - The used message storage space, in GB unit.
- user
Id String - The user ID who created the instance.
- user
Name String - The username who created the instance.
- vpc
Id String - The VPC ID to which the instance belongs.
- access
User string - The access username.
- availability
Zones string[] - The list of AZ names.
- connect
Address string - The IP address for instance connection.
- cross
Vpc GetAccesses Dms Kafka Instances Instance Cross Vpc Access[] - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- description string
- The instance description.
- dumping boolean
- Whether to dumping is enabled.
- enable
Auto booleanTopic - Whether to enable automatic topic creation.
- enable
Public booleanIp - Whether public access to the instance is enabled.
- enabled
Mechanisms string[] - engine
Version string - The kafka engine version.
- enterprise
Project stringId - id string
- The instance ID.
- maintain
Begin string - The time at which a maintenance time window starts, the format is
HH:mm
. - maintain
End string - The time at which a maintenance time window ends, the format is
HH:mm
. - management
Connect stringAddress - The connection address of the Kafka manager of an instance.
- manager
User string - The username for logging in to the Kafka Manager.
- manegement
Connect stringAddress - name string
- Specifies the kafka instance name for data-source queries.
- network
Id string - The subnet ID to which the instance belongs.
- partition
Num number - The maximum number of topics in the DMS kafka instance.
- port number
- The port number.
- product
Id string - The product ID used by the instance.
- public
Conn stringAddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - public
Ip string[]Ids - The IDs of the elastic IP address (EIP).
- resource
Spec stringCode - The resource specifications identifier.
- retention
Policy string - The action to be taken when the memory usage reaches the disk capacity threshold.
- security
Group stringId - The security group ID associated with the instance.
- security
Protocol string - ssl
Enable boolean - Whether the Kafka SASL_SSL is enabled.
- status string
- Specifies the kafka instance status for data-source queries.
- storage
Space number - The message storage capacity, in GB unit.
- storage
Spec stringCode - The storage I/O specification.
- {[key: string]: string}
- The key/value pairs to associate with the instance.
- type string
- The instance type.
- used
Storage numberSpace - The used message storage space, in GB unit.
- user
Id string - The user ID who created the instance.
- user
Name string - The username who created the instance.
- vpc
Id string - The VPC ID to which the instance belongs.
- access_
user str - The access username.
- availability_
zones Sequence[str] - The list of AZ names.
- connect_
address str - The IP address for instance connection.
- cross_
vpc_ Sequence[Getaccesses Dms Kafka Instances Instance Cross Vpc Access] - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- description str
- The instance description.
- dumping bool
- Whether to dumping is enabled.
- enable_
auto_ booltopic - Whether to enable automatic topic creation.
- enable_
public_ boolip - Whether public access to the instance is enabled.
- enabled_
mechanisms Sequence[str] - engine_
version str - The kafka engine version.
- enterprise_
project_ strid - id str
- The instance ID.
- maintain_
begin str - The time at which a maintenance time window starts, the format is
HH:mm
. - maintain_
end str - The time at which a maintenance time window ends, the format is
HH:mm
. - management_
connect_ straddress - The connection address of the Kafka manager of an instance.
- manager_
user str - The username for logging in to the Kafka Manager.
- manegement_
connect_ straddress - name str
- Specifies the kafka instance name for data-source queries.
- network_
id str - The subnet ID to which the instance belongs.
- partition_
num float - The maximum number of topics in the DMS kafka instance.
- port float
- The port number.
- product_
id str - The product ID used by the instance.
- public_
conn_ straddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - public_
ip_ Sequence[str]ids - The IDs of the elastic IP address (EIP).
- resource_
spec_ strcode - The resource specifications identifier.
- retention_
policy str - The action to be taken when the memory usage reaches the disk capacity threshold.
- security_
group_ strid - The security group ID associated with the instance.
- security_
protocol str - ssl_
enable bool - Whether the Kafka SASL_SSL is enabled.
- status str
- Specifies the kafka instance status for data-source queries.
- storage_
space float - The message storage capacity, in GB unit.
- storage_
spec_ strcode - The storage I/O specification.
- Mapping[str, str]
- The key/value pairs to associate with the instance.
- type str
- The instance type.
- used_
storage_ floatspace - The used message storage space, in GB unit.
- user_
id str - The user ID who created the instance.
- user_
name str - The username who created the instance.
- vpc_
id str - The VPC ID to which the instance belongs.
- access
User String - The access username.
- availability
Zones List<String> - The list of AZ names.
- connect
Address String - The IP address for instance connection.
- cross
Vpc List<Property Map>Accesses - Indicates the Access information of cross-VPC. The cross_vpc_accesses object structure is documented below.
- description String
- The instance description.
- dumping Boolean
- Whether to dumping is enabled.
- enable
Auto BooleanTopic - Whether to enable automatic topic creation.
- enable
Public BooleanIp - Whether public access to the instance is enabled.
- enabled
Mechanisms List<String> - engine
Version String - The kafka engine version.
- enterprise
Project StringId - id String
- The instance ID.
- maintain
Begin String - The time at which a maintenance time window starts, the format is
HH:mm
. - maintain
End String - The time at which a maintenance time window ends, the format is
HH:mm
. - management
Connect StringAddress - The connection address of the Kafka manager of an instance.
- manager
User String - The username for logging in to the Kafka Manager.
- manegement
Connect StringAddress - name String
- Specifies the kafka instance name for data-source queries.
- network
Id String - The subnet ID to which the instance belongs.
- partition
Num Number - The maximum number of topics in the DMS kafka instance.
- port Number
- The port number.
- product
Id String - The product ID used by the instance.
- public
Conn StringAddresses - The instance public access address.
The format of each connection address is
{IP address}:{port}
. - public
Ip List<String>Ids - The IDs of the elastic IP address (EIP).
- resource
Spec StringCode - The resource specifications identifier.
- retention
Policy String - The action to be taken when the memory usage reaches the disk capacity threshold.
- security
Group StringId - The security group ID associated with the instance.
- security
Protocol String - ssl
Enable Boolean - Whether the Kafka SASL_SSL is enabled.
- status String
- Specifies the kafka instance status for data-source queries.
- storage
Space Number - The message storage capacity, in GB unit.
- storage
Spec StringCode - The storage I/O specification.
- Map<String>
- The key/value pairs to associate with the instance.
- type String
- The instance type.
- used
Storage NumberSpace - The used message storage space, in GB unit.
- user
Id String - The user ID who created the instance.
- user
Name String - The username who created the instance.
- vpc
Id String - The VPC ID to which the instance belongs.
GetDmsKafkaInstancesInstanceCrossVpcAccess
- Advertised
Ip string - The advertised IP Address.
- Lisenter
Ip string - Listener
Ip string - The listener IP address.
- Port double
- The port number.
- Port
Id string - The port ID associated with the address.
- Advertised
Ip string - The advertised IP Address.
- Lisenter
Ip string - Listener
Ip string - The listener IP address.
- Port float64
- The port number.
- Port
Id string - The port ID associated with the address.
- advertised
Ip String - The advertised IP Address.
- lisenter
Ip String - listener
Ip String - The listener IP address.
- port Double
- The port number.
- port
Id String - The port ID associated with the address.
- advertised
Ip string - The advertised IP Address.
- lisenter
Ip string - listener
Ip string - The listener IP address.
- port number
- The port number.
- port
Id string - The port ID associated with the address.
- advertised_
ip str - The advertised IP Address.
- lisenter_
ip str - listener_
ip str - The listener IP address.
- port float
- The port number.
- port_
id str - The port ID associated with the address.
- advertised
Ip String - The advertised IP Address.
- lisenter
Ip String - listener
Ip String - The listener IP address.
- port Number
- The port number.
- port
Id String - The port ID associated with the address.
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