tencentcloud 1.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
tencentcloud.getEmrServiceNodeInfos
Start a Neo task
Explain and create a tencentcloud.getEmrServiceNodeInfos resource
tencentcloud 1.82.34 published on Wednesday, Nov 5, 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({
instanceId: "emr-rzrochgp",
offset: 1,
limit: 10,
searchText: "",
confStatus: 2,
maintainStateId: 2,
operatorStateId: 1,
healthStateId: "2",
serviceName: "YARN",
nodeTypeName: "master",
dataNodeMaintenanceId: 0,
});
import pulumi
import pulumi_tencentcloud as tencentcloud
emr_service_node_infos = tencentcloud.get_emr_service_node_infos(instance_id="emr-rzrochgp",
offset=1,
limit=10,
search_text="",
conf_status=2,
maintain_state_id=2,
operator_state_id=1,
health_state_id="2",
service_name="YARN",
node_type_name="master",
data_node_maintenance_id=0)
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{
InstanceId: "emr-rzrochgp",
Offset: pulumi.Float64Ref(1),
Limit: pulumi.Float64Ref(10),
SearchText: pulumi.StringRef(""),
ConfStatus: pulumi.Float64Ref(2),
MaintainStateId: pulumi.Float64Ref(2),
OperatorStateId: pulumi.Float64Ref(1),
HealthStateId: pulumi.StringRef("2"),
ServiceName: pulumi.StringRef("YARN"),
NodeTypeName: pulumi.StringRef("master"),
DataNodeMaintenanceId: pulumi.Float64Ref(0),
}, 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()
{
InstanceId = "emr-rzrochgp",
Offset = 1,
Limit = 10,
SearchText = "",
ConfStatus = 2,
MaintainStateId = 2,
OperatorStateId = 1,
HealthStateId = "2",
ServiceName = "YARN",
NodeTypeName = "master",
DataNodeMaintenanceId = 0,
});
});
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()
.instanceId("emr-rzrochgp")
.offset(1)
.limit(10)
.searchText("")
.confStatus(2)
.maintainStateId(2)
.operatorStateId(1)
.healthStateId("2")
.serviceName("YARN")
.nodeTypeName("master")
.dataNodeMaintenanceId(0)
.build());
}
}
variables:
emrServiceNodeInfos:
fn::invoke:
function: tencentcloud:getEmrServiceNodeInfos
arguments:
instanceId: emr-rzrochgp
offset: 1
limit: 10
searchText: ""
confStatus: 2
maintainStateId: 2
operatorStateId: 1
healthStateId: '2'
serviceName: YARN
nodeTypeName: master
dataNodeMaintenanceId: 0
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:
- Instance
Id string - EMR Instance ID.
- Conf
Status double - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- Data
Node doubleMaintenance Id - Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- Health
State 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.
- Maintain
State doubleId - Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- Node
Type stringName - Node Names: master, core, task, common, router, all.
- Offset double
- Page Number.
- Operator
State doubleId - Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- Result
Output stringFile - Used to save results.
- Search
Fields List<GetEmr Service Node Infos Search Field> - Search Fields.
- Search
Text string - Search Field.
- Service
Name string - Service Component Name, all in uppercase, e.g., YARN.
- Instance
Id string - EMR Instance ID.
- Conf
Status float64 - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- Data
Node float64Maintenance Id - Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- Health
State 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.
- Maintain
State float64Id - Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- Node
Type stringName - Node Names: master, core, task, common, router, all.
- Offset float64
- Page Number.
- Operator
State float64Id - Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- Result
Output stringFile - Used to save results.
- Search
Fields []GetEmr Service Node Infos Search Field - Search Fields.
- Search
Text string - Search Field.
- Service
Name string - Service Component Name, all in uppercase, e.g., YARN.
- instance
Id String - EMR Instance ID.
- conf
Status Double - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node DoubleMaintenance Id - Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- health
State 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.
- maintain
State DoubleId - Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- node
Type StringName - Node Names: master, core, task, common, router, all.
- offset Double
- Page Number.
- operator
State DoubleId - Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- result
Output StringFile - Used to save results.
- search
Fields List<GetEmr Service Node Infos Search Field> - Search Fields.
- search
Text String - Search Field.
- service
Name String - Service Component Name, all in uppercase, e.g., YARN.
- instance
Id string - EMR Instance ID.
- conf
Status number - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node numberMaintenance Id - Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- health
State 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.
- maintain
State numberId - Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- node
Type stringName - Node Names: master, core, task, common, router, all.
- offset number
- Page Number.
- operator
State numberId - Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- result
Output stringFile - Used to save results.
- search
Fields GetEmr Service Node Infos Search Field[] - Search Fields.
- search
Text string - Search Field.
- service
Name 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.
- instance
Id String - EMR Instance ID.
- conf
Status Number - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node NumberMaintenance Id - Filter Condition: Whether DN is in Maintenance Mode - 0 represents all statuses, 1 represents in maintenance mode.
- health
State 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.
- maintain
State NumberId - Filter Condition: Maintenance Status - 0 represents all statuses, 1 represents normal mode, 2 represents maintenance mode.
- node
Type StringName - Node Names: master, core, task, common, router, all.
- offset Number
- Page Number.
- operator
State NumberId - Filter Condition: Operation Status - 0 represents all statuses, 1 represents started, 2 represents stopped.
- result
Output StringFile - Used to save results.
- search
Fields List<Property Map> - Search Fields.
- search
Text String - Search Field.
- service
Name String - Service Component Name, all in uppercase, e.g., YARN.
getEmrServiceNodeInfos Result
The following output properties are available:
- Alias
Info string - Serialization of Aliases for All Nodes in the Cluster.
- Id string
- Instance
Id string - Service
Node List<GetLists Emr Service Node Infos Service Node List> - Service Node Detail Information.
- Support
Node List<string>Flag Filter Lists - Supported FlagNode List.
- Total
Cnt double - Total Count.
- Conf
Status double - Configuration Status.
- Data
Node doubleMaintenance Id - Health
State stringId - Limit double
- Maintain
State doubleId - Node
Type stringName - Offset double
- Operator
State doubleId - Result
Output stringFile - Search
Fields List<GetEmr Service Node Infos Search Field> - Search
Text string - Service
Name string
- Alias
Info string - Serialization of Aliases for All Nodes in the Cluster.
- Id string
- Instance
Id string - Service
Node []GetLists Emr Service Node Infos Service Node List - Service Node Detail Information.
- Support
Node []stringFlag Filter Lists - Supported FlagNode List.
- Total
Cnt float64 - Total Count.
- Conf
Status float64 - Configuration Status.
- Data
Node float64Maintenance Id - Health
State stringId - Limit float64
- Maintain
State float64Id - Node
Type stringName - Offset float64
- Operator
State float64Id - Result
Output stringFile - Search
Fields []GetEmr Service Node Infos Search Field - Search
Text string - Service
Name string
- alias
Info String - Serialization of Aliases for All Nodes in the Cluster.
- id String
- instance
Id String - service
Node List<GetLists Emr Service Node Infos Service Node List> - Service Node Detail Information.
- support
Node List<String>Flag Filter Lists - Supported FlagNode List.
- total
Cnt Double - Total Count.
- conf
Status Double - Configuration Status.
- data
Node DoubleMaintenance Id - health
State StringId - limit Double
- maintain
State DoubleId - node
Type StringName - offset Double
- operator
State DoubleId - result
Output StringFile - search
Fields List<GetEmr Service Node Infos Search Field> - search
Text String - service
Name String
- alias
Info string - Serialization of Aliases for All Nodes in the Cluster.
- id string
- instance
Id string - service
Node GetLists Emr Service Node Infos Service Node List[] - Service Node Detail Information.
- support
Node string[]Flag Filter Lists - Supported FlagNode List.
- total
Cnt number - Total Count.
- conf
Status number - Configuration Status.
- data
Node numberMaintenance Id - health
State stringId - limit number
- maintain
State numberId - node
Type stringName - offset number
- operator
State numberId - result
Output stringFile - search
Fields GetEmr Service Node Infos Search Field[] - search
Text string - service
Name 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
- alias
Info String - Serialization of Aliases for All Nodes in the Cluster.
- id String
- instance
Id String - service
Node List<Property Map>Lists - Service Node Detail Information.
- support
Node List<String>Flag Filter Lists - Supported FlagNode List.
- total
Cnt Number - Total Count.
- conf
Status Number - Configuration Status.
- data
Node NumberMaintenance Id - health
State StringId - limit Number
- maintain
State NumberId - node
Type StringName - offset Number
- operator
State NumberId - result
Output StringFile - search
Fields List<Property Map> - search
Text String - service
Name String
Supporting Types
GetEmrServiceNodeInfosSearchField
- Search
Type string - Types Supported for Search.
- Search
Value string - Values Supported for Search.
- Search
Type string - Types Supported for Search.
- Search
Value string - Values Supported for Search.
- search
Type String - Types Supported for Search.
- search
Value String - Values Supported for Search.
- search
Type string - Types Supported for Search.
- search
Value string - Values Supported for Search.
- search_
type str - Types Supported for Search.
- search_
value str - Values Supported for Search.
- search
Type String - Types Supported for Search.
- search
Value String - Values Supported for Search.
GetEmrServiceNodeInfosServiceNodeList
- Conf
Group doubleId - Configuration Group ID.
- Conf
Group stringName - Configuration Group Name.
- Conf
Status double - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- Data
Node doubleMaintenance State - Data Node Maintenance State.
- Flag double
- Flag.
- Ha
State string - HA State.
- Health
Statuses 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.
- Is
Federation bool - Whether Federation is Supported.
- Is
Support boolRole Monitor - Whether Monitoring is Supported.
- Last
Restart stringTime - Most Recent Restart Time.
- Monitor
Status double - Monitor Status.
- Name
Service string - Name Service.
- Node
Flag stringFilter - Node Flag Filter.
- Node
Name string - Node Name.
- Node
Type double - Node Type.
- Ports
Info string - Process Port Information.
- Service
Detection List<GetInfos Emr Service Node Infos Service Node List Service Detection Info> - Process Detection Information.
- Service
Status double - Service Status.
- Status double
- Status.
- Stop
Policies List<GetEmr Service Node Infos Service Node List Stop Policy> - Stop Policy.
- Conf
Group float64Id - Configuration Group ID.
- Conf
Group stringName - Configuration Group Name.
- Conf
Status float64 - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- Data
Node float64Maintenance State - Data Node Maintenance State.
- Flag float64
- Flag.
- Ha
State string - HA State.
- Health
Statuses []GetEmr Service Node Infos Service Node List Health Status - Process Health Status.
- Ip string
- 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 stringTime - Most Recent Restart Time.
- Monitor
Status float64 - Monitor Status.
- Name
Service string - Name Service.
- Node
Flag stringFilter - Node Flag Filter.
- Node
Name string - Node Name.
- Node
Type float64 - Node Type.
- Ports
Info string - Process Port Information.
- Service
Detection []GetInfos Emr Service Node Infos Service Node List Service Detection Info - Process Detection Information.
- Service
Status float64 - Service Status.
- Status float64
- Status.
- Stop
Policies []GetEmr Service Node Infos Service Node List Stop Policy - Stop Policy.
- conf
Group DoubleId - Configuration Group ID.
- conf
Group StringName - Configuration Group Name.
- conf
Status Double - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node DoubleMaintenance State - Data Node Maintenance State.
- flag Double
- Flag.
- ha
State String - HA State.
- health
Statuses 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.
- is
Federation Boolean - Whether Federation is Supported.
- is
Support BooleanRole Monitor - Whether Monitoring is Supported.
- last
Restart StringTime - Most Recent Restart Time.
- monitor
Status Double - Monitor Status.
- name
Service String - Name Service.
- node
Flag StringFilter - Node Flag Filter.
- node
Name String - Node Name.
- node
Type Double - Node Type.
- ports
Info String - Process Port Information.
- service
Detection List<GetInfos Emr Service Node Infos Service Node List Service Detection Info> - Process Detection Information.
- service
Status Double - Service Status.
- status Double
- Status.
- stop
Policies List<GetEmr Service Node Infos Service Node List Stop Policy> - Stop Policy.
- conf
Group numberId - Configuration Group ID.
- conf
Group stringName - Configuration Group Name.
- conf
Status number - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node numberMaintenance State - Data Node Maintenance State.
- flag number
- Flag.
- ha
State string - HA State.
- health
Statuses GetEmr Service Node Infos Service Node List Health Status[] - Process Health Status.
- ip string
- The IP address of the node where the process resides.
- is
Federation boolean - Whether Federation is Supported.
- is
Support booleanRole Monitor - Whether Monitoring is Supported.
- last
Restart stringTime - Most Recent Restart Time.
- monitor
Status number - Monitor Status.
- name
Service string - Name Service.
- node
Flag stringFilter - Node Flag Filter.
- node
Name string - Node Name.
- node
Type number - Node Type.
- ports
Info string - Process Port Information.
- service
Detection GetInfos Emr Service Node Infos Service Node List Service Detection Info[] - Process Detection Information.
- service
Status number - Service Status.
- status number
- Status.
- stop
Policies 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.
- conf
Group NumberId - Configuration Group ID.
- conf
Group StringName - Configuration Group Name.
- conf
Status Number - Configuration Status, -2: Configuration Failed, -1: Configuration Expired, 1: Synchronized, -99 All.
- data
Node NumberMaintenance State - Data Node Maintenance State.
- flag Number
- Flag.
- ha
State String - HA State.
- health
Statuses List<Property Map> - Process Health Status.
- ip String
- The IP address of the node where the process resides.
- is
Federation Boolean - Whether Federation is Supported.
- is
Support BooleanRole Monitor - Whether Monitoring is Supported.
- last
Restart StringTime - Most Recent Restart Time.
- monitor
Status Number - Monitor Status.
- name
Service String - Name Service.
- node
Flag StringFilter - Node Flag Filter.
- node
Name String - Node Name.
- node
Type Number - Node Type.
- ports
Info String - Process Port Information.
- service
Detection List<Property Map>Infos - Process Detection Information.
- service
Status Number - Service Status.
- status Number
- Status.
- stop
Policies List<Property Map> - Stop Policy.
GetEmrServiceNodeInfosServiceNodeListHealthStatus
GetEmrServiceNodeInfosServiceNodeListServiceDetectionInfo
- Detect
Alert string - Detection Alert Level.
- Detect
Function stringKey - Detection Function Description.
- Detect
Function stringValue - Detection Function Result.
- Detect
Time string - Detection Time.
- Detect
Alert string - Detection Alert Level.
- Detect
Function stringKey - Detection Function Description.
- Detect
Function stringValue - Detection Function Result.
- Detect
Time string - Detection Time.
- detect
Alert String - Detection Alert Level.
- detect
Function StringKey - Detection Function Description.
- detect
Function StringValue - Detection Function Result.
- detect
Time String - Detection Time.
- detect
Alert string - Detection Alert Level.
- detect
Function stringKey - Detection Function Description.
- detect
Function stringValue - Detection Function Result.
- detect
Time 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.
- detect
Alert String - Detection Alert Level.
- detect
Function StringKey - Detection Function Description.
- detect
Function StringValue - Detection Function Result.
- detect
Time String - Detection Time.
GetEmrServiceNodeInfosServiceNodeListStopPolicy
- Batch
Size List<double>Ranges - Batch Node Count Optional Range.
- Describe string
- Policy Description.
- Display
Name string - Policy Display Name.
- Is
Default string - Whether it is the Default Policy.
- Name string
- Policy Name.
- Batch
Size []float64Ranges - Batch Node Count Optional Range.
- Describe string
- Policy Description.
- Display
Name string - Policy Display Name.
- Is
Default string - Whether it is the Default Policy.
- Name string
- Policy Name.
- batch
Size List<Double>Ranges - Batch Node Count Optional Range.
- describe String
- Policy Description.
- display
Name String - Policy Display Name.
- is
Default String - Whether it is the Default Policy.
- name String
- Policy Name.
- batch
Size number[]Ranges - Batch Node Count Optional Range.
- describe string
- Policy Description.
- display
Name string - Policy Display Name.
- is
Default 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.
- batch
Size List<Number>Ranges - Batch Node Count Optional Range.
- describe String
- Policy Description.
- display
Name String - Policy Display Name.
- is
Default 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.82.34 published on Wednesday, Nov 5, 2025 by tencentcloudstack
