tencentcloud 1.82.17 published on Thursday, Aug 14, 2025 by tencentcloudstack
tencentcloud.getDlcEngineNodeSpecifications
Explore with Pulumi AI
tencentcloud 1.82.17 published on Thursday, Aug 14, 2025 by tencentcloudstack
Use this data source to query detailed information of DLC engine node specifications
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = tencentcloud.getDlcEngineNodeSpecifications({
dataEngineName: "tf-example",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.get_dlc_engine_node_specifications(data_engine_name="tf-example")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetDlcEngineNodeSpecifications(ctx, &tencentcloud.GetDlcEngineNodeSpecificationsArgs{
DataEngineName: pulumi.StringRef("tf-example"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = Tencentcloud.GetDlcEngineNodeSpecifications.Invoke(new()
{
DataEngineName = "tf-example",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetDlcEngineNodeSpecificationsArgs;
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 example = TencentcloudFunctions.getDlcEngineNodeSpecifications(GetDlcEngineNodeSpecificationsArgs.builder()
.dataEngineName("tf-example")
.build());
}
}
variables:
example:
fn::invoke:
function: tencentcloud:getDlcEngineNodeSpecifications
arguments:
dataEngineName: tf-example
Using getDlcEngineNodeSpecifications
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 getDlcEngineNodeSpecifications(args: GetDlcEngineNodeSpecificationsArgs, opts?: InvokeOptions): Promise<GetDlcEngineNodeSpecificationsResult>
function getDlcEngineNodeSpecificationsOutput(args: GetDlcEngineNodeSpecificationsOutputArgs, opts?: InvokeOptions): Output<GetDlcEngineNodeSpecificationsResult>
def get_dlc_engine_node_specifications(data_engine_name: Optional[str] = None,
id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDlcEngineNodeSpecificationsResult
def get_dlc_engine_node_specifications_output(data_engine_name: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDlcEngineNodeSpecificationsResult]
func GetDlcEngineNodeSpecifications(ctx *Context, args *GetDlcEngineNodeSpecificationsArgs, opts ...InvokeOption) (*GetDlcEngineNodeSpecificationsResult, error)
func GetDlcEngineNodeSpecificationsOutput(ctx *Context, args *GetDlcEngineNodeSpecificationsOutputArgs, opts ...InvokeOption) GetDlcEngineNodeSpecificationsResultOutput
> Note: This function is named GetDlcEngineNodeSpecifications
in the Go SDK.
public static class GetDlcEngineNodeSpecifications
{
public static Task<GetDlcEngineNodeSpecificationsResult> InvokeAsync(GetDlcEngineNodeSpecificationsArgs args, InvokeOptions? opts = null)
public static Output<GetDlcEngineNodeSpecificationsResult> Invoke(GetDlcEngineNodeSpecificationsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDlcEngineNodeSpecificationsResult> getDlcEngineNodeSpecifications(GetDlcEngineNodeSpecificationsArgs args, InvokeOptions options)
public static Output<GetDlcEngineNodeSpecificationsResult> getDlcEngineNodeSpecifications(GetDlcEngineNodeSpecificationsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getDlcEngineNodeSpecifications:getDlcEngineNodeSpecifications
arguments:
# arguments dictionary
The following arguments are supported:
- Data
Engine stringName - Engine Name.
- Id string
- Result
Output stringFile - Used to save results.
- Data
Engine stringName - Engine Name.
- Id string
- Result
Output stringFile - Used to save results.
- data
Engine StringName - Engine Name.
- id String
- result
Output StringFile - Used to save results.
- data
Engine stringName - Engine Name.
- id string
- result
Output stringFile - Used to save results.
- data_
engine_ strname - Engine Name.
- id str
- result_
output_ strfile - Used to save results.
- data
Engine StringName - Engine Name.
- id String
- result
Output StringFile - Used to save results.
getDlcEngineNodeSpecifications Result
The following output properties are available:
- Driver
Specs List<GetDlc Engine Node Specifications Driver Spec> - Driver available specifications.
- Executor
Specs List<GetDlc Engine Node Specifications Executor Spec> - Available executor specifications.
- Id string
- Data
Engine stringName - Result
Output stringFile
- Driver
Specs []GetDlc Engine Node Specifications Driver Spec - Driver available specifications.
- Executor
Specs []GetDlc Engine Node Specifications Executor Spec - Available executor specifications.
- Id string
- Data
Engine stringName - Result
Output stringFile
- driver
Specs List<GetDlc Engine Node Specifications Driver Spec> - Driver available specifications.
- executor
Specs List<GetDlc Engine Node Specifications Executor Spec> - Available executor specifications.
- id String
- data
Engine StringName - result
Output StringFile
- driver
Specs GetDlc Engine Node Specifications Driver Spec[] - Driver available specifications.
- executor
Specs GetDlc Engine Node Specifications Executor Spec[] - Available executor specifications.
- id string
- data
Engine stringName - result
Output stringFile
- driver_
specs Sequence[GetDlc Engine Node Specifications Driver Spec] - Driver available specifications.
- executor_
specs Sequence[GetDlc Engine Node Specifications Executor Spec] - Available executor specifications.
- id str
- data_
engine_ strname - result_
output_ strfile
- driver
Specs List<Property Map> - Driver available specifications.
- executor
Specs List<Property Map> - Available executor specifications.
- id String
- data
Engine StringName - result
Output StringFile
Supporting Types
GetDlcEngineNodeSpecificationsDriverSpec
GetDlcEngineNodeSpecificationsExecutorSpec
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.82.17 published on Thursday, Aug 14, 2025 by tencentcloudstack