1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getEmrServiceNodeInfos
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.getEmrServiceNodeInfos

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Use this data source to query detailed information of emr emr_service_node_infos

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const emrServiceNodeInfos = tencentcloud.getEmrServiceNodeInfos({
        confStatus: 2,
        dataNodeMaintenanceId: 0,
        healthStateId: "2",
        instanceId: "emr-rzrochgp",
        limit: 10,
        maintainStateId: 2,
        nodeTypeName: "master",
        offset: 1,
        operatorStateId: 1,
        searchText: "",
        serviceName: "YARN",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    emr_service_node_infos = tencentcloud.get_emr_service_node_infos(conf_status=2,
        data_node_maintenance_id=0,
        health_state_id="2",
        instance_id="emr-rzrochgp",
        limit=10,
        maintain_state_id=2,
        node_type_name="master",
        offset=1,
        operator_state_id=1,
        search_text="",
        service_name="YARN")
    
    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.GetEmrServiceNodeInfos(ctx, &tencentcloud.GetEmrServiceNodeInfosArgs{
    			ConfStatus:            pulumi.Float64Ref(2),
    			DataNodeMaintenanceId: pulumi.Float64Ref(0),
    			HealthStateId:         pulumi.StringRef("2"),
    			InstanceId:            "emr-rzrochgp",
    			Limit:                 pulumi.Float64Ref(10),
    			MaintainStateId:       pulumi.Float64Ref(2),
    			NodeTypeName:          pulumi.StringRef("master"),
    			Offset:                pulumi.Float64Ref(1),
    			OperatorStateId:       pulumi.Float64Ref(1),
    			SearchText:            pulumi.StringRef(""),
    			ServiceName:           pulumi.StringRef("YARN"),
    		}, 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 emrServiceNodeInfos = Tencentcloud.GetEmrServiceNodeInfos.Invoke(new()
        {
            ConfStatus = 2,
            DataNodeMaintenanceId = 0,
            HealthStateId = "2",
            InstanceId = "emr-rzrochgp",
            Limit = 10,
            MaintainStateId = 2,
            NodeTypeName = "master",
            Offset = 1,
            OperatorStateId = 1,
            SearchText = "",
            ServiceName = "YARN",
        });
    
    });
    
    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.GetEmrServiceNodeInfosArgs;
    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 emrServiceNodeInfos = TencentcloudFunctions.getEmrServiceNodeInfos(GetEmrServiceNodeInfosArgs.builder()
                .confStatus(2)
                .dataNodeMaintenanceId(0)
                .healthStateId("2")
                .instanceId("emr-rzrochgp")
                .limit(10)
                .maintainStateId(2)
                .nodeTypeName("master")
                .offset(1)
                .operatorStateId(1)
                .searchText("")
                .serviceName("YARN")
                .build());
    
        }
    }
    
    variables:
      emrServiceNodeInfos:
        fn::invoke:
          function: tencentcloud:getEmrServiceNodeInfos
          arguments:
            confStatus: 2
            dataNodeMaintenanceId: 0
            healthStateId: '2'
            instanceId: emr-rzrochgp
            limit: 10
            maintainStateId: 2
            nodeTypeName: master
            offset: 1
            operatorStateId: 1
            searchText: ""
            serviceName: YARN
    

    Using getEmrServiceNodeInfos

    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 getEmrServiceNodeInfos(args: GetEmrServiceNodeInfosArgs, opts?: InvokeOptions): Promise<GetEmrServiceNodeInfosResult>
    function getEmrServiceNodeInfosOutput(args: GetEmrServiceNodeInfosOutputArgs, opts?: InvokeOptions): Output<GetEmrServiceNodeInfosResult>
    def get_emr_service_node_infos(conf_status: Optional[float] = None,
                                   data_node_maintenance_id: Optional[float] = None,
                                   health_state_id: Optional[str] = None,
                                   id: Optional[str] = None,
                                   instance_id: Optional[str] = None,
                                   limit: Optional[float] = None,
                                   maintain_state_id: Optional[float] = None,
                                   node_type_name: Optional[str] = None,
                                   offset: Optional[float] = None,
                                   operator_state_id: Optional[float] = None,
                                   result_output_file: Optional[str] = None,
                                   search_fields: Optional[Sequence[GetEmrServiceNodeInfosSearchField]] = None,
                                   search_text: Optional[str] = None,
                                   service_name: Optional[str] = None,
                                   opts: Optional[InvokeOptions] = None) -> GetEmrServiceNodeInfosResult
    def get_emr_service_node_infos_output(conf_status: Optional[pulumi.Input[float]] = None,
                                   data_node_maintenance_id: Optional[pulumi.Input[float]] = None,
                                   health_state_id: Optional[pulumi.Input[str]] = None,
                                   id: Optional[pulumi.Input[str]] = None,
                                   instance_id: Optional[pulumi.Input[str]] = None,
                                   limit: Optional[pulumi.Input[float]] = None,
                                   maintain_state_id: Optional[pulumi.Input[float]] = None,
                                   node_type_name: Optional[pulumi.Input[str]] = None,
                                   offset: Optional[pulumi.Input[float]] = None,
                                   operator_state_id: Optional[pulumi.Input[float]] = None,
                                   result_output_file: Optional[pulumi.Input[str]] = None,
                                   search_fields: Optional[pulumi.Input[Sequence[pulumi.Input[GetEmrServiceNodeInfosSearchFieldArgs]]]] = None,
                                   search_text: Optional[pulumi.Input[str]] = None,
                                   service_name: Optional[pulumi.Input[str]] = None,
                                   opts: Optional[InvokeOptions] = None) -> Output[GetEmrServiceNodeInfosResult]
    func GetEmrServiceNodeInfos(ctx *Context, args *GetEmrServiceNodeInfosArgs, opts ...InvokeOption) (*GetEmrServiceNodeInfosResult, error)
    func GetEmrServiceNodeInfosOutput(ctx *Context, args *GetEmrServiceNodeInfosOutputArgs, opts ...InvokeOption) GetEmrServiceNodeInfosResultOutput

    > Note: This function is named GetEmrServiceNodeInfos in the Go SDK.

    public static class GetEmrServiceNodeInfos 
    {
        public static Task<GetEmrServiceNodeInfosResult> InvokeAsync(GetEmrServiceNodeInfosArgs args, InvokeOptions? opts = null)
        public static Output<GetEmrServiceNodeInfosResult> Invoke(GetEmrServiceNodeInfosInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetEmrServiceNodeInfosResult> getEmrServiceNodeInfos(GetEmrServiceNodeInfosArgs args, InvokeOptions options)
    public static Output<GetEmrServiceNodeInfosResult> getEmrServiceNodeInfos(GetEmrServiceNodeInfosArgs args, InvokeOptions options)
    
    fn::invoke:
      function: tencentcloud:index/getEmrServiceNodeInfos:getEmrServiceNodeInfos
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    EMR Instance ID.
    ConfStatus double
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    DataNodeMaintenanceId double
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    HealthStateId string
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    Id string
    Limit double
    Number of Items per Page.
    MaintainStateId double
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    NodeTypeName string
    Node Names: master, core, task, common, router, all.
    Offset double
    Page Number.
    OperatorStateId double
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    ResultOutputFile string
    Used to save results.
    SearchFields List<GetEmrServiceNodeInfosSearchField>
    Search Fields.
    SearchText string
    Search Field.
    ServiceName string
    Service Component Name, all in uppercase, e.g., YARN.
    InstanceId string
    EMR Instance ID.
    ConfStatus float64
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    DataNodeMaintenanceId float64
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    HealthStateId string
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    Id string
    Limit float64
    Number of Items per Page.
    MaintainStateId float64
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    NodeTypeName string
    Node Names: master, core, task, common, router, all.
    Offset float64
    Page Number.
    OperatorStateId float64
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    ResultOutputFile string
    Used to save results.
    SearchFields []GetEmrServiceNodeInfosSearchField
    Search Fields.
    SearchText string
    Search Field.
    ServiceName string
    Service Component Name, all in uppercase, e.g., YARN.
    instanceId String
    EMR Instance ID.
    confStatus Double
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceId Double
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    healthStateId String
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    id String
    limit Double
    Number of Items per Page.
    maintainStateId Double
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    nodeTypeName String
    Node Names: master, core, task, common, router, all.
    offset Double
    Page Number.
    operatorStateId Double
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    resultOutputFile String
    Used to save results.
    searchFields List<GetEmrServiceNodeInfosSearchField>
    Search Fields.
    searchText String
    Search Field.
    serviceName String
    Service Component Name, all in uppercase, e.g., YARN.
    instanceId string
    EMR Instance ID.
    confStatus number
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceId number
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    healthStateId string
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    id string
    limit number
    Number of Items per Page.
    maintainStateId number
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    nodeTypeName string
    Node Names: master, core, task, common, router, all.
    offset number
    Page Number.
    operatorStateId number
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    resultOutputFile string
    Used to save results.
    searchFields GetEmrServiceNodeInfosSearchField[]
    Search Fields.
    searchText string
    Search Field.
    serviceName string
    Service Component Name, all in uppercase, e.g., YARN.
    instance_id str
    EMR Instance ID.
    conf_status float
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    data_node_maintenance_id float
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    health_state_id str
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    id str
    limit float
    Number of Items per Page.
    maintain_state_id float
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    node_type_name str
    Node Names: master, core, task, common, router, all.
    offset float
    Page Number.
    operator_state_id float
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    result_output_file str
    Used to save results.
    search_fields Sequence[GetEmrServiceNodeInfosSearchField]
    Search Fields.
    search_text str
    Search Field.
    service_name str
    Service Component Name, all in uppercase, e.g., YARN.
    instanceId String
    EMR Instance ID.
    confStatus Number
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceId Number
    Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
    healthStateId String
    Filter Conditions: Health Status, 0 represents unavailable, 1 represents good, -2 represents unknown, -99 represents all, -3 represents potential risks, -4 represents not detected.
    id String
    limit Number
    Number of Items per Page.
    maintainStateId Number
    Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
    nodeTypeName String
    Node Names: master, core, task, common, router, all.
    offset Number
    Page Number.
    operatorStateId Number
    Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
    resultOutputFile String
    Used to save results.
    searchFields List<Property Map>
    Search Fields.
    searchText String
    Search Field.
    serviceName String
    Service Component Name, all in uppercase, e.g., YARN.

    getEmrServiceNodeInfos Result

    The following output properties are available:

    AliasInfo string
    Serialization of Aliases for All Nodes in the Cluster.
    Id string
    InstanceId string
    ServiceNodeLists List<GetEmrServiceNodeInfosServiceNodeList>
    Service Node Detail Information.
    SupportNodeFlagFilterLists List<string>
    Supported FlagNode List.
    TotalCnt double
    Total Count.
    ConfStatus double
    Configuration Status.
    DataNodeMaintenanceId double
    HealthStateId string
    Limit double
    MaintainStateId double
    NodeTypeName string
    Offset double
    OperatorStateId double
    ResultOutputFile string
    SearchFields List<GetEmrServiceNodeInfosSearchField>
    SearchText string
    ServiceName string
    AliasInfo string
    Serialization of Aliases for All Nodes in the Cluster.
    Id string
    InstanceId string
    ServiceNodeLists []GetEmrServiceNodeInfosServiceNodeList
    Service Node Detail Information.
    SupportNodeFlagFilterLists []string
    Supported FlagNode List.
    TotalCnt float64
    Total Count.
    ConfStatus float64
    Configuration Status.
    DataNodeMaintenanceId float64
    HealthStateId string
    Limit float64
    MaintainStateId float64
    NodeTypeName string
    Offset float64
    OperatorStateId float64
    ResultOutputFile string
    SearchFields []GetEmrServiceNodeInfosSearchField
    SearchText string
    ServiceName string
    aliasInfo String
    Serialization of Aliases for All Nodes in the Cluster.
    id String
    instanceId String
    serviceNodeLists List<GetEmrServiceNodeInfosServiceNodeList>
    Service Node Detail Information.
    supportNodeFlagFilterLists List<String>
    Supported FlagNode List.
    totalCnt Double
    Total Count.
    confStatus Double
    Configuration Status.
    dataNodeMaintenanceId Double
    healthStateId String
    limit Double
    maintainStateId Double
    nodeTypeName String
    offset Double
    operatorStateId Double
    resultOutputFile String
    searchFields List<GetEmrServiceNodeInfosSearchField>
    searchText String
    serviceName String
    aliasInfo string
    Serialization of Aliases for All Nodes in the Cluster.
    id string
    instanceId string
    serviceNodeLists GetEmrServiceNodeInfosServiceNodeList[]
    Service Node Detail Information.
    supportNodeFlagFilterLists string[]
    Supported FlagNode List.
    totalCnt number
    Total Count.
    confStatus number
    Configuration Status.
    dataNodeMaintenanceId number
    healthStateId string
    limit number
    maintainStateId number
    nodeTypeName string
    offset number
    operatorStateId number
    resultOutputFile string
    searchFields GetEmrServiceNodeInfosSearchField[]
    searchText string
    serviceName string
    alias_info str
    Serialization of Aliases for All Nodes in the Cluster.
    id str
    instance_id str
    service_node_lists Sequence[GetEmrServiceNodeInfosServiceNodeList]
    Service Node Detail Information.
    support_node_flag_filter_lists Sequence[str]
    Supported FlagNode List.
    total_cnt float
    Total Count.
    conf_status float
    Configuration Status.
    data_node_maintenance_id float
    health_state_id str
    limit float
    maintain_state_id float
    node_type_name str
    offset float
    operator_state_id float
    result_output_file str
    search_fields Sequence[GetEmrServiceNodeInfosSearchField]
    search_text str
    service_name str
    aliasInfo String
    Serialization of Aliases for All Nodes in the Cluster.
    id String
    instanceId String
    serviceNodeLists List<Property Map>
    Service Node Detail Information.
    supportNodeFlagFilterLists List<String>
    Supported FlagNode List.
    totalCnt Number
    Total Count.
    confStatus Number
    Configuration Status.
    dataNodeMaintenanceId Number
    healthStateId String
    limit Number
    maintainStateId Number
    nodeTypeName String
    offset Number
    operatorStateId Number
    resultOutputFile String
    searchFields List<Property Map>
    searchText String
    serviceName String

    Supporting Types

    GetEmrServiceNodeInfosSearchField

    SearchType string
    Types Supported for Search.
    SearchValue string
    Values Supported for Search.
    SearchType string
    Types Supported for Search.
    SearchValue string
    Values Supported for Search.
    searchType String
    Types Supported for Search.
    searchValue String
    Values Supported for Search.
    searchType string
    Types Supported for Search.
    searchValue string
    Values Supported for Search.
    search_type str
    Types Supported for Search.
    search_value str
    Values Supported for Search.
    searchType String
    Types Supported for Search.
    searchValue String
    Values Supported for Search.

    GetEmrServiceNodeInfosServiceNodeList

    ConfGroupId double
    Configuration Group ID.
    ConfGroupName string
    Configuration Group Name.
    ConfStatus double
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    DataNodeMaintenanceState double
    Data Node Maintenance State.
    Flag double
    Flag.
    HaState string
    HA State.
    HealthStatuses List<GetEmrServiceNodeInfosServiceNodeListHealthStatus>
    Process Health Status.
    Ip string
    The IP address of the node where the process resides.
    IsFederation bool
    Whether Federation is Supported.
    IsSupportRoleMonitor bool
    Whether Monitoring is Supported.
    LastRestartTime string
    Most Recent Restart Time.
    MonitorStatus double
    Monitor Status.
    NameService string
    Name Service.
    NodeFlagFilter string
    Node Flag Filter.
    NodeName string
    Node Name.
    NodeType double
    Node Type.
    PortsInfo string
    Process Port Information.
    ServiceDetectionInfos List<GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo>
    Process Detection Information.
    ServiceStatus double
    Service Status.
    Status double
    Status.
    StopPolicies List<GetEmrServiceNodeInfosServiceNodeListStopPolicy>
    Stop Policy.
    ConfGroupId float64
    Configuration Group ID.
    ConfGroupName string
    Configuration Group Name.
    ConfStatus float64
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    DataNodeMaintenanceState float64
    Data Node Maintenance State.
    Flag float64
    Flag.
    HaState string
    HA State.
    HealthStatuses []GetEmrServiceNodeInfosServiceNodeListHealthStatus
    Process Health Status.
    Ip string
    The IP address of the node where the process resides.
    IsFederation bool
    Whether Federation is Supported.
    IsSupportRoleMonitor bool
    Whether Monitoring is Supported.
    LastRestartTime string
    Most Recent Restart Time.
    MonitorStatus float64
    Monitor Status.
    NameService string
    Name Service.
    NodeFlagFilter string
    Node Flag Filter.
    NodeName string
    Node Name.
    NodeType float64
    Node Type.
    PortsInfo string
    Process Port Information.
    ServiceDetectionInfos []GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo
    Process Detection Information.
    ServiceStatus float64
    Service Status.
    Status float64
    Status.
    StopPolicies []GetEmrServiceNodeInfosServiceNodeListStopPolicy
    Stop Policy.
    confGroupId Double
    Configuration Group ID.
    confGroupName String
    Configuration Group Name.
    confStatus Double
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceState Double
    Data Node Maintenance State.
    flag Double
    Flag.
    haState String
    HA State.
    healthStatuses List<GetEmrServiceNodeInfosServiceNodeListHealthStatus>
    Process Health Status.
    ip String
    The IP address of the node where the process resides.
    isFederation Boolean
    Whether Federation is Supported.
    isSupportRoleMonitor Boolean
    Whether Monitoring is Supported.
    lastRestartTime String
    Most Recent Restart Time.
    monitorStatus Double
    Monitor Status.
    nameService String
    Name Service.
    nodeFlagFilter String
    Node Flag Filter.
    nodeName String
    Node Name.
    nodeType Double
    Node Type.
    portsInfo String
    Process Port Information.
    serviceDetectionInfos List<GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo>
    Process Detection Information.
    serviceStatus Double
    Service Status.
    status Double
    Status.
    stopPolicies List<GetEmrServiceNodeInfosServiceNodeListStopPolicy>
    Stop Policy.
    confGroupId number
    Configuration Group ID.
    confGroupName string
    Configuration Group Name.
    confStatus number
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceState number
    Data Node Maintenance State.
    flag number
    Flag.
    haState string
    HA State.
    healthStatuses GetEmrServiceNodeInfosServiceNodeListHealthStatus[]
    Process Health Status.
    ip string
    The IP address of the node where the process resides.
    isFederation boolean
    Whether Federation is Supported.
    isSupportRoleMonitor boolean
    Whether Monitoring is Supported.
    lastRestartTime string
    Most Recent Restart Time.
    monitorStatus number
    Monitor Status.
    nameService string
    Name Service.
    nodeFlagFilter string
    Node Flag Filter.
    nodeName string
    Node Name.
    nodeType number
    Node Type.
    portsInfo string
    Process Port Information.
    serviceDetectionInfos GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo[]
    Process Detection Information.
    serviceStatus number
    Service Status.
    status number
    Status.
    stopPolicies GetEmrServiceNodeInfosServiceNodeListStopPolicy[]
    Stop Policy.
    conf_group_id float
    Configuration Group ID.
    conf_group_name str
    Configuration Group Name.
    conf_status float
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    data_node_maintenance_state float
    Data Node Maintenance State.
    flag float
    Flag.
    ha_state str
    HA State.
    health_statuses Sequence[GetEmrServiceNodeInfosServiceNodeListHealthStatus]
    Process Health Status.
    ip str
    The IP address of the node where the process resides.
    is_federation bool
    Whether Federation is Supported.
    is_support_role_monitor bool
    Whether Monitoring is Supported.
    last_restart_time str
    Most Recent Restart Time.
    monitor_status float
    Monitor Status.
    name_service str
    Name Service.
    node_flag_filter str
    Node Flag Filter.
    node_name str
    Node Name.
    node_type float
    Node Type.
    ports_info str
    Process Port Information.
    service_detection_infos Sequence[GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo]
    Process Detection Information.
    service_status float
    Service Status.
    status float
    Status.
    stop_policies Sequence[GetEmrServiceNodeInfosServiceNodeListStopPolicy]
    Stop Policy.
    confGroupId Number
    Configuration Group ID.
    confGroupName String
    Configuration Group Name.
    confStatus Number
    Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
    dataNodeMaintenanceState Number
    Data Node Maintenance State.
    flag Number
    Flag.
    haState String
    HA State.
    healthStatuses List<Property Map>
    Process Health Status.
    ip String
    The IP address of the node where the process resides.
    isFederation Boolean
    Whether Federation is Supported.
    isSupportRoleMonitor Boolean
    Whether Monitoring is Supported.
    lastRestartTime String
    Most Recent Restart Time.
    monitorStatus Number
    Monitor Status.
    nameService String
    Name Service.
    nodeFlagFilter String
    Node Flag Filter.
    nodeName String
    Node Name.
    nodeType Number
    Node Type.
    portsInfo String
    Process Port Information.
    serviceDetectionInfos List<Property Map>
    Process Detection Information.
    serviceStatus Number
    Service Status.
    status Number
    Status.
    stopPolicies List<Property Map>
    Stop Policy.

    GetEmrServiceNodeInfosServiceNodeListHealthStatus

    Code double
    Health Status Code.
    Desc string
    Health Status Description.
    Text string
    Health Status Description.
    Code float64
    Health Status Code.
    Desc string
    Health Status Description.
    Text string
    Health Status Description.
    code Double
    Health Status Code.
    desc String
    Health Status Description.
    text String
    Health Status Description.
    code number
    Health Status Code.
    desc string
    Health Status Description.
    text string
    Health Status Description.
    code float
    Health Status Code.
    desc str
    Health Status Description.
    text str
    Health Status Description.
    code Number
    Health Status Code.
    desc String
    Health Status Description.
    text String
    Health Status Description.

    GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo

    DetectAlert string
    Detection Alert Level.
    DetectFunctionKey string
    Detection Function Description.
    DetectFunctionValue string
    Detection Function Result.
    DetectTime string
    Detection Time.
    DetectAlert string
    Detection Alert Level.
    DetectFunctionKey string
    Detection Function Description.
    DetectFunctionValue string
    Detection Function Result.
    DetectTime string
    Detection Time.
    detectAlert String
    Detection Alert Level.
    detectFunctionKey String
    Detection Function Description.
    detectFunctionValue String
    Detection Function Result.
    detectTime String
    Detection Time.
    detectAlert string
    Detection Alert Level.
    detectFunctionKey string
    Detection Function Description.
    detectFunctionValue string
    Detection Function Result.
    detectTime string
    Detection Time.
    detect_alert str
    Detection Alert Level.
    detect_function_key str
    Detection Function Description.
    detect_function_value str
    Detection Function Result.
    detect_time str
    Detection Time.
    detectAlert String
    Detection Alert Level.
    detectFunctionKey String
    Detection Function Description.
    detectFunctionValue String
    Detection Function Result.
    detectTime String
    Detection Time.

    GetEmrServiceNodeInfosServiceNodeListStopPolicy

    BatchSizeRanges List<double>
    Batch Node Count Optional Range.
    Describe string
    Policy Description.
    DisplayName string
    Policy Display Name.
    IsDefault string
    Whether it is the Default Policy.
    Name string
    Policy Name.
    BatchSizeRanges []float64
    Batch Node Count Optional Range.
    Describe string
    Policy Description.
    DisplayName string
    Policy Display Name.
    IsDefault string
    Whether it is the Default Policy.
    Name string
    Policy Name.
    batchSizeRanges List<Double>
    Batch Node Count Optional Range.
    describe String
    Policy Description.
    displayName String
    Policy Display Name.
    isDefault String
    Whether it is the Default Policy.
    name String
    Policy Name.
    batchSizeRanges number[]
    Batch Node Count Optional Range.
    describe string
    Policy Description.
    displayName string
    Policy Display Name.
    isDefault string
    Whether it is the Default Policy.
    name string
    Policy Name.
    batch_size_ranges Sequence[float]
    Batch Node Count Optional Range.
    describe str
    Policy Description.
    display_name str
    Policy Display Name.
    is_default str
    Whether it is the Default Policy.
    name str
    Policy Name.
    batchSizeRanges List<Number>
    Batch Node Count Optional Range.
    describe String
    Policy Description.
    displayName String
    Policy Display Name.
    isDefault String
    Whether it is the Default Policy.
    name String
    Policy Name.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack