tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack
tencentcloud.getEmrServiceNodeInfos
Explore with Pulumi AI
tencentcloud 1.81.183 published on Wednesday, Apr 16, 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 dictionaryThe following arguments are supported:
- InstanceId string
- EMR Instance ID.
- ConfStatus double
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- DataNode doubleMaintenance Id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- HealthState stringId 
- 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.
- MaintainState doubleId 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- NodeType stringName 
- Node Names: master, core, task, common, router, all.
- Offset double
- Page Number.
- OperatorState doubleId 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- ResultOutput stringFile 
- Used to save results.
- SearchFields List<GetEmr Service Node Infos Search Field> 
- 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.
- DataNode float64Maintenance Id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- HealthState stringId 
- 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.
- MaintainState float64Id 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- NodeType stringName 
- Node Names: master, core, task, common, router, all.
- Offset float64
- Page Number.
- OperatorState float64Id 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- ResultOutput stringFile 
- Used to save results.
- SearchFields []GetEmr Service Node Infos Search Field 
- 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.
- dataNode DoubleMaintenance Id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- healthState StringId 
- 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.
- maintainState DoubleId 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- nodeType StringName 
- Node Names: master, core, task, common, router, all.
- offset Double
- Page Number.
- operatorState DoubleId 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- resultOutput StringFile 
- Used to save results.
- searchFields List<GetEmr Service Node Infos Search Field> 
- 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.
- dataNode numberMaintenance Id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- healthState stringId 
- 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.
- maintainState numberId 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- nodeType stringName 
- Node Names: master, core, task, common, router, all.
- offset number
- Page Number.
- operatorState numberId 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- resultOutput stringFile 
- Used to save results.
- searchFields GetEmr Service Node Infos Search Field[] 
- 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_ floatmaintenance_ id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- health_state_ strid 
- 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_ floatid 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- node_type_ strname 
- Node Names: master, core, task, common, router, all.
- offset float
- Page Number.
- operator_state_ floatid 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- result_output_ strfile 
- Used to save results.
- search_fields Sequence[GetEmr Service Node Infos Search Field] 
- 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.
- dataNode NumberMaintenance Id 
- Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- healthState StringId 
- 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.
- maintainState NumberId 
- Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- nodeType StringName 
- Node Names: master, core, task, common, router, all.
- offset Number
- Page Number.
- operatorState NumberId 
- Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- resultOutput StringFile 
- 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
- ServiceNode List<GetLists Emr Service Node Infos Service Node List> 
- Service Node Detail Information.
- SupportNode List<string>Flag Filter Lists 
- Supported FlagNode List.
- TotalCnt double
- Total Count.
- ConfStatus double
- Configuration Status.
- DataNode doubleMaintenance Id 
- HealthState stringId 
- Limit double
- MaintainState doubleId 
- NodeType stringName 
- Offset double
- OperatorState doubleId 
- ResultOutput stringFile 
- SearchFields List<GetEmr Service Node Infos Search Field> 
- SearchText string
- ServiceName string
- AliasInfo string
- Serialization of Aliases for All Nodes in the Cluster.
- Id string
- InstanceId string
- ServiceNode []GetLists Emr Service Node Infos Service Node List 
- Service Node Detail Information.
- SupportNode []stringFlag Filter Lists 
- Supported FlagNode List.
- TotalCnt float64
- Total Count.
- ConfStatus float64
- Configuration Status.
- DataNode float64Maintenance Id 
- HealthState stringId 
- Limit float64
- MaintainState float64Id 
- NodeType stringName 
- Offset float64
- OperatorState float64Id 
- ResultOutput stringFile 
- SearchFields []GetEmr Service Node Infos Search Field 
- SearchText string
- ServiceName string
- aliasInfo String
- Serialization of Aliases for All Nodes in the Cluster.
- id String
- instanceId String
- serviceNode List<GetLists Emr Service Node Infos Service Node List> 
- Service Node Detail Information.
- supportNode List<String>Flag Filter Lists 
- Supported FlagNode List.
- totalCnt Double
- Total Count.
- confStatus Double
- Configuration Status.
- dataNode DoubleMaintenance Id 
- healthState StringId 
- limit Double
- maintainState DoubleId 
- nodeType StringName 
- offset Double
- operatorState DoubleId 
- resultOutput StringFile 
- searchFields List<GetEmr Service Node Infos Search Field> 
- searchText String
- serviceName String
- aliasInfo string
- Serialization of Aliases for All Nodes in the Cluster.
- id string
- instanceId string
- serviceNode GetLists Emr Service Node Infos Service Node List[] 
- Service Node Detail Information.
- supportNode string[]Flag Filter Lists 
- Supported FlagNode List.
- totalCnt number
- Total Count.
- confStatus number
- Configuration Status.
- dataNode numberMaintenance Id 
- healthState stringId 
- limit number
- maintainState numberId 
- nodeType stringName 
- offset number
- operatorState numberId 
- resultOutput stringFile 
- searchFields GetEmr Service Node Infos Search Field[] 
- searchText string
- serviceName string
- alias_info str
- Serialization of Aliases for All Nodes in the Cluster.
- id str
- instance_id str
- service_node_ Sequence[Getlists Emr Service Node Infos Service Node List] 
- Service Node Detail Information.
- support_node_ Sequence[str]flag_ filter_ lists 
- Supported FlagNode List.
- total_cnt float
- Total Count.
- conf_status float
- Configuration Status.
- data_node_ floatmaintenance_ id 
- health_state_ strid 
- limit float
- maintain_state_ floatid 
- node_type_ strname 
- offset float
- operator_state_ floatid 
- result_output_ strfile 
- search_fields Sequence[GetEmr Service Node Infos Search Field] 
- search_text str
- service_name str
- aliasInfo String
- Serialization of Aliases for All Nodes in the Cluster.
- id String
- instanceId String
- serviceNode List<Property Map>Lists 
- Service Node Detail Information.
- supportNode List<String>Flag Filter Lists 
- Supported FlagNode List.
- totalCnt Number
- Total Count.
- confStatus Number
- Configuration Status.
- dataNode NumberMaintenance Id 
- healthState StringId 
- limit Number
- maintainState NumberId 
- nodeType StringName 
- offset Number
- operatorState NumberId 
- resultOutput StringFile 
- 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       
- ConfGroup doubleId 
- Configuration Group ID.
- ConfGroup stringName 
- Configuration Group Name.
- ConfStatus double
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- DataNode doubleMaintenance State 
- Data Node Maintenance State.
- Flag double
- Flag.
- HaState string
- HA State.
- HealthStatuses List<GetEmr Service Node Infos Service Node List Health Status> 
- Process Health Status.
- Ip string
- The IP address of the node where the process resides.
- IsFederation bool
- Whether Federation is Supported.
- IsSupport boolRole Monitor 
- Whether Monitoring is Supported.
- LastRestart stringTime 
- Most Recent Restart Time.
- MonitorStatus double
- Monitor Status.
- NameService string
- Name Service.
- NodeFlag stringFilter 
- Node Flag Filter.
- NodeName string
- Node Name.
- NodeType double
- Node Type.
- PortsInfo string
- Process Port Information.
- ServiceDetection List<GetInfos Emr Service Node Infos Service Node List Service Detection Info> 
- Process Detection Information.
- ServiceStatus double
- Service Status.
- Status double
- Status.
- StopPolicies List<GetEmr Service Node Infos Service Node List Stop Policy> 
- Stop Policy.
- ConfGroup float64Id 
- Configuration Group ID.
- ConfGroup stringName 
- Configuration Group Name.
- ConfStatus float64
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- DataNode float64Maintenance State 
- Data Node Maintenance State.
- Flag float64
- Flag.
- HaState string
- HA State.
- HealthStatuses []GetEmr Service Node Infos Service Node List Health Status 
- Process Health Status.
- Ip string
- The IP address of the node where the process resides.
- IsFederation bool
- Whether Federation is Supported.
- IsSupport boolRole Monitor 
- Whether Monitoring is Supported.
- LastRestart stringTime 
- Most Recent Restart Time.
- MonitorStatus float64
- Monitor Status.
- NameService string
- Name Service.
- NodeFlag stringFilter 
- Node Flag Filter.
- NodeName string
- Node Name.
- NodeType float64
- Node Type.
- PortsInfo string
- Process Port Information.
- ServiceDetection []GetInfos Emr Service Node Infos Service Node List Service Detection Info 
- Process Detection Information.
- ServiceStatus float64
- Service Status.
- Status float64
- Status.
- StopPolicies []GetEmr Service Node Infos Service Node List Stop Policy 
- Stop Policy.
- confGroup DoubleId 
- Configuration Group ID.
- confGroup StringName 
- Configuration Group Name.
- confStatus Double
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- dataNode DoubleMaintenance State 
- Data Node Maintenance State.
- flag Double
- Flag.
- haState String
- HA State.
- healthStatuses List<GetEmr Service Node Infos Service Node List Health Status> 
- Process Health Status.
- ip String
- The IP address of the node where the process resides.
- isFederation Boolean
- Whether Federation is Supported.
- isSupport BooleanRole Monitor 
- Whether Monitoring is Supported.
- lastRestart StringTime 
- Most Recent Restart Time.
- monitorStatus Double
- Monitor Status.
- nameService String
- Name Service.
- nodeFlag StringFilter 
- Node Flag Filter.
- nodeName String
- Node Name.
- nodeType Double
- Node Type.
- portsInfo String
- Process Port Information.
- serviceDetection List<GetInfos Emr Service Node Infos Service Node List Service Detection Info> 
- Process Detection Information.
- serviceStatus Double
- Service Status.
- status Double
- Status.
- stopPolicies List<GetEmr Service Node Infos Service Node List Stop Policy> 
- Stop Policy.
- confGroup numberId 
- Configuration Group ID.
- confGroup stringName 
- Configuration Group Name.
- confStatus number
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- dataNode numberMaintenance State 
- Data Node Maintenance State.
- flag number
- Flag.
- haState string
- HA State.
- healthStatuses GetEmr Service Node Infos Service Node List Health Status[] 
- Process Health Status.
- ip string
- The IP address of the node where the process resides.
- isFederation boolean
- Whether Federation is Supported.
- isSupport booleanRole Monitor 
- Whether Monitoring is Supported.
- lastRestart stringTime 
- Most Recent Restart Time.
- monitorStatus number
- Monitor Status.
- nameService string
- Name Service.
- nodeFlag stringFilter 
- Node Flag Filter.
- nodeName string
- Node Name.
- nodeType number
- Node Type.
- portsInfo string
- Process Port Information.
- serviceDetection GetInfos Emr Service Node Infos Service Node List Service Detection Info[] 
- Process Detection Information.
- serviceStatus number
- Service Status.
- status number
- Status.
- stopPolicies GetEmr Service Node Infos Service Node List Stop Policy[] 
- Stop Policy.
- conf_group_ floatid 
- Configuration Group ID.
- conf_group_ strname 
- Configuration Group Name.
- conf_status float
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data_node_ floatmaintenance_ state 
- Data Node Maintenance State.
- flag float
- Flag.
- ha_state str
- HA State.
- health_statuses Sequence[GetEmr Service Node Infos Service Node List Health Status] 
- Process Health Status.
- ip str
- The IP address of the node where the process resides.
- is_federation bool
- Whether Federation is Supported.
- is_support_ boolrole_ monitor 
- Whether Monitoring is Supported.
- last_restart_ strtime 
- Most Recent Restart Time.
- monitor_status float
- Monitor Status.
- name_service str
- Name Service.
- node_flag_ strfilter 
- Node Flag Filter.
- node_name str
- Node Name.
- node_type float
- Node Type.
- ports_info str
- Process Port Information.
- service_detection_ Sequence[Getinfos Emr Service Node Infos Service Node List Service Detection Info] 
- Process Detection Information.
- service_status float
- Service Status.
- status float
- Status.
- stop_policies Sequence[GetEmr Service Node Infos Service Node List Stop Policy] 
- Stop Policy.
- confGroup NumberId 
- Configuration Group ID.
- confGroup StringName 
- Configuration Group Name.
- confStatus Number
- Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- dataNode NumberMaintenance State 
- 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.
- isSupport BooleanRole Monitor 
- Whether Monitoring is Supported.
- lastRestart StringTime 
- Most Recent Restart Time.
- monitorStatus Number
- Monitor Status.
- nameService String
- Name Service.
- nodeFlag StringFilter 
- Node Flag Filter.
- nodeName String
- Node Name.
- nodeType Number
- Node Type.
- portsInfo String
- Process Port Information.
- serviceDetection List<Property Map>Infos 
- Process Detection Information.
- serviceStatus Number
- Service Status.
- status Number
- Status.
- stopPolicies List<Property Map>
- Stop Policy.
GetEmrServiceNodeInfosServiceNodeListHealthStatus         
GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo          
- DetectAlert string
- Detection Alert Level.
- DetectFunction stringKey 
- Detection Function Description.
- DetectFunction stringValue 
- Detection Function Result.
- DetectTime string
- Detection Time.
- DetectAlert string
- Detection Alert Level.
- DetectFunction stringKey 
- Detection Function Description.
- DetectFunction stringValue 
- Detection Function Result.
- DetectTime string
- Detection Time.
- detectAlert String
- Detection Alert Level.
- detectFunction StringKey 
- Detection Function Description.
- detectFunction StringValue 
- Detection Function Result.
- detectTime String
- Detection Time.
- detectAlert string
- Detection Alert Level.
- detectFunction stringKey 
- Detection Function Description.
- detectFunction stringValue 
- Detection Function Result.
- detectTime string
- Detection Time.
- detect_alert str
- Detection Alert Level.
- detect_function_ strkey 
- Detection Function Description.
- detect_function_ strvalue 
- Detection Function Result.
- detect_time str
- Detection Time.
- detectAlert String
- Detection Alert Level.
- detectFunction StringKey 
- Detection Function Description.
- detectFunction StringValue 
- Detection Function Result.
- detectTime String
- Detection Time.
GetEmrServiceNodeInfosServiceNodeListStopPolicy         
- BatchSize List<double>Ranges 
- 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.
- BatchSize []float64Ranges 
- 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.
- batchSize List<Double>Ranges 
- 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.
- batchSize number[]Ranges 
- 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_ Sequence[float]ranges 
- 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.
- batchSize List<Number>Ranges 
- 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 tencentcloudTerraform Provider.
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack