1. Packages
  2. Edgecenter Provider
  3. API Docs
  4. RmonCheckTcp
Viewing docs for edgecenter 0.11.5
published on Tuesday, Mar 10, 2026 by edge-center
edgecenter logo
Viewing docs for edgecenter 0.11.5
published on Tuesday, Mar 10, 2026 by edge-center

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as edgecenter from "@pulumi/edgecenter";
    
    const example = new edgecenter.RmonCheckTcp("example", {
        name: "tcp-example",
        enabled: true,
        place: "region",
        priority: "warning",
        entities: [10],
        ip: "example.com",
        port: 443,
    });
    
    import pulumi
    import pulumi_edgecenter as edgecenter
    
    example = edgecenter.RmonCheckTcp("example",
        name="tcp-example",
        enabled=True,
        place="region",
        priority="warning",
        entities=[10],
        ip="example.com",
        port=443)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/edgecenter/edgecenter"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := edgecenter.NewRmonCheckTcp(ctx, "example", &edgecenter.RmonCheckTcpArgs{
    			Name:     pulumi.String("tcp-example"),
    			Enabled:  pulumi.Bool(true),
    			Place:    pulumi.String("region"),
    			Priority: pulumi.String("warning"),
    			Entities: pulumi.Float64Array{
    				pulumi.Float64(10),
    			},
    			Ip:   pulumi.String("example.com"),
    			Port: pulumi.Float64(443),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Edgecenter = Pulumi.Edgecenter;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Edgecenter.RmonCheckTcp("example", new()
        {
            Name = "tcp-example",
            Enabled = true,
            Place = "region",
            Priority = "warning",
            Entities = new[]
            {
                10,
            },
            Ip = "example.com",
            Port = 443,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.edgecenter.RmonCheckTcp;
    import com.pulumi.edgecenter.RmonCheckTcpArgs;
    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) {
            var example = new RmonCheckTcp("example", RmonCheckTcpArgs.builder()
                .name("tcp-example")
                .enabled(true)
                .place("region")
                .priority("warning")
                .entities(10.0)
                .ip("example.com")
                .port(443.0)
                .build());
    
        }
    }
    
    resources:
      example:
        type: edgecenter:RmonCheckTcp
        properties:
          name: tcp-example
          enabled: true
          place: region
          priority: warning
          entities:
            - 10
          ip: example.com
          port: 443
    

    Create RmonCheckTcp Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RmonCheckTcp(name: string, args: RmonCheckTcpArgs, opts?: CustomResourceOptions);
    @overload
    def RmonCheckTcp(resource_name: str,
                     args: RmonCheckTcpArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def RmonCheckTcp(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     port: Optional[float] = None,
                     priority: Optional[str] = None,
                     place: Optional[str] = None,
                     ip: Optional[str] = None,
                     enabled: Optional[bool] = None,
                     entities: Optional[Sequence[float]] = None,
                     slack_channel_id: Optional[float] = None,
                     name: Optional[str] = None,
                     check_timeout: Optional[float] = None,
                     pd_channel_id: Optional[float] = None,
                     email_channel_id: Optional[float] = None,
                     mm_channel_id: Optional[float] = None,
                     description: Optional[str] = None,
                     interval: Optional[float] = None,
                     retries: Optional[float] = None,
                     rmon_check_tcp_id: Optional[str] = None,
                     runbook: Optional[str] = None,
                     check_group: Optional[str] = None,
                     telegram_channel_id: Optional[float] = None)
    func NewRmonCheckTcp(ctx *Context, name string, args RmonCheckTcpArgs, opts ...ResourceOption) (*RmonCheckTcp, error)
    public RmonCheckTcp(string name, RmonCheckTcpArgs args, CustomResourceOptions? opts = null)
    public RmonCheckTcp(String name, RmonCheckTcpArgs args)
    public RmonCheckTcp(String name, RmonCheckTcpArgs args, CustomResourceOptions options)
    
    type: edgecenter:RmonCheckTcp
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RmonCheckTcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RmonCheckTcpArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RmonCheckTcpArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RmonCheckTcpArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RmonCheckTcpArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var rmonCheckTcpResource = new Edgecenter.RmonCheckTcp("rmonCheckTcpResource", new()
    {
        Port = 0,
        Priority = "string",
        Place = "string",
        Ip = "string",
        Enabled = false,
        Entities = new[]
        {
            0,
        },
        SlackChannelId = 0,
        Name = "string",
        CheckTimeout = 0,
        PdChannelId = 0,
        EmailChannelId = 0,
        MmChannelId = 0,
        Description = "string",
        Interval = 0,
        Retries = 0,
        RmonCheckTcpId = "string",
        Runbook = "string",
        CheckGroup = "string",
        TelegramChannelId = 0,
    });
    
    example, err := edgecenter.NewRmonCheckTcp(ctx, "rmonCheckTcpResource", &edgecenter.RmonCheckTcpArgs{
    	Port:     pulumi.Float64(0),
    	Priority: pulumi.String("string"),
    	Place:    pulumi.String("string"),
    	Ip:       pulumi.String("string"),
    	Enabled:  pulumi.Bool(false),
    	Entities: pulumi.Float64Array{
    		pulumi.Float64(0),
    	},
    	SlackChannelId:    pulumi.Float64(0),
    	Name:              pulumi.String("string"),
    	CheckTimeout:      pulumi.Float64(0),
    	PdChannelId:       pulumi.Float64(0),
    	EmailChannelId:    pulumi.Float64(0),
    	MmChannelId:       pulumi.Float64(0),
    	Description:       pulumi.String("string"),
    	Interval:          pulumi.Float64(0),
    	Retries:           pulumi.Float64(0),
    	RmonCheckTcpId:    pulumi.String("string"),
    	Runbook:           pulumi.String("string"),
    	CheckGroup:        pulumi.String("string"),
    	TelegramChannelId: pulumi.Float64(0),
    })
    
    var rmonCheckTcpResource = new RmonCheckTcp("rmonCheckTcpResource", RmonCheckTcpArgs.builder()
        .port(0.0)
        .priority("string")
        .place("string")
        .ip("string")
        .enabled(false)
        .entities(0.0)
        .slackChannelId(0.0)
        .name("string")
        .checkTimeout(0.0)
        .pdChannelId(0.0)
        .emailChannelId(0.0)
        .mmChannelId(0.0)
        .description("string")
        .interval(0.0)
        .retries(0.0)
        .rmonCheckTcpId("string")
        .runbook("string")
        .checkGroup("string")
        .telegramChannelId(0.0)
        .build());
    
    rmon_check_tcp_resource = edgecenter.RmonCheckTcp("rmonCheckTcpResource",
        port=0,
        priority="string",
        place="string",
        ip="string",
        enabled=False,
        entities=[0],
        slack_channel_id=0,
        name="string",
        check_timeout=0,
        pd_channel_id=0,
        email_channel_id=0,
        mm_channel_id=0,
        description="string",
        interval=0,
        retries=0,
        rmon_check_tcp_id="string",
        runbook="string",
        check_group="string",
        telegram_channel_id=0)
    
    const rmonCheckTcpResource = new edgecenter.RmonCheckTcp("rmonCheckTcpResource", {
        port: 0,
        priority: "string",
        place: "string",
        ip: "string",
        enabled: false,
        entities: [0],
        slackChannelId: 0,
        name: "string",
        checkTimeout: 0,
        pdChannelId: 0,
        emailChannelId: 0,
        mmChannelId: 0,
        description: "string",
        interval: 0,
        retries: 0,
        rmonCheckTcpId: "string",
        runbook: "string",
        checkGroup: "string",
        telegramChannelId: 0,
    });
    
    type: edgecenter:RmonCheckTcp
    properties:
        checkGroup: string
        checkTimeout: 0
        description: string
        emailChannelId: 0
        enabled: false
        entities:
            - 0
        interval: 0
        ip: string
        mmChannelId: 0
        name: string
        pdChannelId: 0
        place: string
        port: 0
        priority: string
        retries: 0
        rmonCheckTcpId: string
        runbook: string
        slackChannelId: 0
        telegramChannelId: 0
    

    RmonCheckTcp Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RmonCheckTcp resource accepts the following input properties:

    Enabled bool
    Enabled state of the Check TCP.
    Entities List<double>
    List of entities where check must be created.
    Ip string
    IP address or domain name for TCP check.
    Place string
    Place scope for Check TCP.
    Port double
    Port for TCP check.
    Priority string
    Where checks must be deployed.
    CheckGroup string
    Name of the check group for group TCP checks.
    CheckTimeout double
    Answer timeout in seconds.
    Description string
    Description of the Check TCP.
    EmailChannelId double
    Email channel ID (optional)
    Interval double
    Interval in seconds between checks.
    MmChannelId double
    Mattermost channel ID for alerts.
    Name string
    Name of the Check TCP.
    PdChannelId double
    PagerDuty channel ID for alerts.
    Retries double
    Number of retries before check is marked down.
    RmonCheckTcpId string
    The ID of this resource.
    Runbook string
    Runbook URL for alerts.
    SlackChannelId double
    Slack channel ID for alerts.
    TelegramChannelId double
    Telegram channel ID for alerts.
    Enabled bool
    Enabled state of the Check TCP.
    Entities []float64
    List of entities where check must be created.
    Ip string
    IP address or domain name for TCP check.
    Place string
    Place scope for Check TCP.
    Port float64
    Port for TCP check.
    Priority string
    Where checks must be deployed.
    CheckGroup string
    Name of the check group for group TCP checks.
    CheckTimeout float64
    Answer timeout in seconds.
    Description string
    Description of the Check TCP.
    EmailChannelId float64
    Email channel ID (optional)
    Interval float64
    Interval in seconds between checks.
    MmChannelId float64
    Mattermost channel ID for alerts.
    Name string
    Name of the Check TCP.
    PdChannelId float64
    PagerDuty channel ID for alerts.
    Retries float64
    Number of retries before check is marked down.
    RmonCheckTcpId string
    The ID of this resource.
    Runbook string
    Runbook URL for alerts.
    SlackChannelId float64
    Slack channel ID for alerts.
    TelegramChannelId float64
    Telegram channel ID for alerts.
    enabled Boolean
    Enabled state of the Check TCP.
    entities List<Double>
    List of entities where check must be created.
    ip String
    IP address or domain name for TCP check.
    place String
    Place scope for Check TCP.
    port Double
    Port for TCP check.
    priority String
    Where checks must be deployed.
    checkGroup String
    Name of the check group for group TCP checks.
    checkTimeout Double
    Answer timeout in seconds.
    description String
    Description of the Check TCP.
    emailChannelId Double
    Email channel ID (optional)
    interval Double
    Interval in seconds between checks.
    mmChannelId Double
    Mattermost channel ID for alerts.
    name String
    Name of the Check TCP.
    pdChannelId Double
    PagerDuty channel ID for alerts.
    retries Double
    Number of retries before check is marked down.
    rmonCheckTcpId String
    The ID of this resource.
    runbook String
    Runbook URL for alerts.
    slackChannelId Double
    Slack channel ID for alerts.
    telegramChannelId Double
    Telegram channel ID for alerts.
    enabled boolean
    Enabled state of the Check TCP.
    entities number[]
    List of entities where check must be created.
    ip string
    IP address or domain name for TCP check.
    place string
    Place scope for Check TCP.
    port number
    Port for TCP check.
    priority string
    Where checks must be deployed.
    checkGroup string
    Name of the check group for group TCP checks.
    checkTimeout number
    Answer timeout in seconds.
    description string
    Description of the Check TCP.
    emailChannelId number
    Email channel ID (optional)
    interval number
    Interval in seconds between checks.
    mmChannelId number
    Mattermost channel ID for alerts.
    name string
    Name of the Check TCP.
    pdChannelId number
    PagerDuty channel ID for alerts.
    retries number
    Number of retries before check is marked down.
    rmonCheckTcpId string
    The ID of this resource.
    runbook string
    Runbook URL for alerts.
    slackChannelId number
    Slack channel ID for alerts.
    telegramChannelId number
    Telegram channel ID for alerts.
    enabled bool
    Enabled state of the Check TCP.
    entities Sequence[float]
    List of entities where check must be created.
    ip str
    IP address or domain name for TCP check.
    place str
    Place scope for Check TCP.
    port float
    Port for TCP check.
    priority str
    Where checks must be deployed.
    check_group str
    Name of the check group for group TCP checks.
    check_timeout float
    Answer timeout in seconds.
    description str
    Description of the Check TCP.
    email_channel_id float
    Email channel ID (optional)
    interval float
    Interval in seconds between checks.
    mm_channel_id float
    Mattermost channel ID for alerts.
    name str
    Name of the Check TCP.
    pd_channel_id float
    PagerDuty channel ID for alerts.
    retries float
    Number of retries before check is marked down.
    rmon_check_tcp_id str
    The ID of this resource.
    runbook str
    Runbook URL for alerts.
    slack_channel_id float
    Slack channel ID for alerts.
    telegram_channel_id float
    Telegram channel ID for alerts.
    enabled Boolean
    Enabled state of the Check TCP.
    entities List<Number>
    List of entities where check must be created.
    ip String
    IP address or domain name for TCP check.
    place String
    Place scope for Check TCP.
    port Number
    Port for TCP check.
    priority String
    Where checks must be deployed.
    checkGroup String
    Name of the check group for group TCP checks.
    checkTimeout Number
    Answer timeout in seconds.
    description String
    Description of the Check TCP.
    emailChannelId Number
    Email channel ID (optional)
    interval Number
    Interval in seconds between checks.
    mmChannelId Number
    Mattermost channel ID for alerts.
    name String
    Name of the Check TCP.
    pdChannelId Number
    PagerDuty channel ID for alerts.
    retries Number
    Number of retries before check is marked down.
    rmonCheckTcpId String
    The ID of this resource.
    runbook String
    Runbook URL for alerts.
    slackChannelId Number
    Slack channel ID for alerts.
    telegramChannelId Number
    Telegram channel ID for alerts.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RmonCheckTcp resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing RmonCheckTcp Resource

    Get an existing RmonCheckTcp resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RmonCheckTcpState, opts?: CustomResourceOptions): RmonCheckTcp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            check_group: Optional[str] = None,
            check_timeout: Optional[float] = None,
            description: Optional[str] = None,
            email_channel_id: Optional[float] = None,
            enabled: Optional[bool] = None,
            entities: Optional[Sequence[float]] = None,
            interval: Optional[float] = None,
            ip: Optional[str] = None,
            mm_channel_id: Optional[float] = None,
            name: Optional[str] = None,
            pd_channel_id: Optional[float] = None,
            place: Optional[str] = None,
            port: Optional[float] = None,
            priority: Optional[str] = None,
            retries: Optional[float] = None,
            rmon_check_tcp_id: Optional[str] = None,
            runbook: Optional[str] = None,
            slack_channel_id: Optional[float] = None,
            telegram_channel_id: Optional[float] = None) -> RmonCheckTcp
    func GetRmonCheckTcp(ctx *Context, name string, id IDInput, state *RmonCheckTcpState, opts ...ResourceOption) (*RmonCheckTcp, error)
    public static RmonCheckTcp Get(string name, Input<string> id, RmonCheckTcpState? state, CustomResourceOptions? opts = null)
    public static RmonCheckTcp get(String name, Output<String> id, RmonCheckTcpState state, CustomResourceOptions options)
    resources:  _:    type: edgecenter:RmonCheckTcp    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CheckGroup string
    Name of the check group for group TCP checks.
    CheckTimeout double
    Answer timeout in seconds.
    Description string
    Description of the Check TCP.
    EmailChannelId double
    Email channel ID (optional)
    Enabled bool
    Enabled state of the Check TCP.
    Entities List<double>
    List of entities where check must be created.
    Interval double
    Interval in seconds between checks.
    Ip string
    IP address or domain name for TCP check.
    MmChannelId double
    Mattermost channel ID for alerts.
    Name string
    Name of the Check TCP.
    PdChannelId double
    PagerDuty channel ID for alerts.
    Place string
    Place scope for Check TCP.
    Port double
    Port for TCP check.
    Priority string
    Where checks must be deployed.
    Retries double
    Number of retries before check is marked down.
    RmonCheckTcpId string
    The ID of this resource.
    Runbook string
    Runbook URL for alerts.
    SlackChannelId double
    Slack channel ID for alerts.
    TelegramChannelId double
    Telegram channel ID for alerts.
    CheckGroup string
    Name of the check group for group TCP checks.
    CheckTimeout float64
    Answer timeout in seconds.
    Description string
    Description of the Check TCP.
    EmailChannelId float64
    Email channel ID (optional)
    Enabled bool
    Enabled state of the Check TCP.
    Entities []float64
    List of entities where check must be created.
    Interval float64
    Interval in seconds between checks.
    Ip string
    IP address or domain name for TCP check.
    MmChannelId float64
    Mattermost channel ID for alerts.
    Name string
    Name of the Check TCP.
    PdChannelId float64
    PagerDuty channel ID for alerts.
    Place string
    Place scope for Check TCP.
    Port float64
    Port for TCP check.
    Priority string
    Where checks must be deployed.
    Retries float64
    Number of retries before check is marked down.
    RmonCheckTcpId string
    The ID of this resource.
    Runbook string
    Runbook URL for alerts.
    SlackChannelId float64
    Slack channel ID for alerts.
    TelegramChannelId float64
    Telegram channel ID for alerts.
    checkGroup String
    Name of the check group for group TCP checks.
    checkTimeout Double
    Answer timeout in seconds.
    description String
    Description of the Check TCP.
    emailChannelId Double
    Email channel ID (optional)
    enabled Boolean
    Enabled state of the Check TCP.
    entities List<Double>
    List of entities where check must be created.
    interval Double
    Interval in seconds between checks.
    ip String
    IP address or domain name for TCP check.
    mmChannelId Double
    Mattermost channel ID for alerts.
    name String
    Name of the Check TCP.
    pdChannelId Double
    PagerDuty channel ID for alerts.
    place String
    Place scope for Check TCP.
    port Double
    Port for TCP check.
    priority String
    Where checks must be deployed.
    retries Double
    Number of retries before check is marked down.
    rmonCheckTcpId String
    The ID of this resource.
    runbook String
    Runbook URL for alerts.
    slackChannelId Double
    Slack channel ID for alerts.
    telegramChannelId Double
    Telegram channel ID for alerts.
    checkGroup string
    Name of the check group for group TCP checks.
    checkTimeout number
    Answer timeout in seconds.
    description string
    Description of the Check TCP.
    emailChannelId number
    Email channel ID (optional)
    enabled boolean
    Enabled state of the Check TCP.
    entities number[]
    List of entities where check must be created.
    interval number
    Interval in seconds between checks.
    ip string
    IP address or domain name for TCP check.
    mmChannelId number
    Mattermost channel ID for alerts.
    name string
    Name of the Check TCP.
    pdChannelId number
    PagerDuty channel ID for alerts.
    place string
    Place scope for Check TCP.
    port number
    Port for TCP check.
    priority string
    Where checks must be deployed.
    retries number
    Number of retries before check is marked down.
    rmonCheckTcpId string
    The ID of this resource.
    runbook string
    Runbook URL for alerts.
    slackChannelId number
    Slack channel ID for alerts.
    telegramChannelId number
    Telegram channel ID for alerts.
    check_group str
    Name of the check group for group TCP checks.
    check_timeout float
    Answer timeout in seconds.
    description str
    Description of the Check TCP.
    email_channel_id float
    Email channel ID (optional)
    enabled bool
    Enabled state of the Check TCP.
    entities Sequence[float]
    List of entities where check must be created.
    interval float
    Interval in seconds between checks.
    ip str
    IP address or domain name for TCP check.
    mm_channel_id float
    Mattermost channel ID for alerts.
    name str
    Name of the Check TCP.
    pd_channel_id float
    PagerDuty channel ID for alerts.
    place str
    Place scope for Check TCP.
    port float
    Port for TCP check.
    priority str
    Where checks must be deployed.
    retries float
    Number of retries before check is marked down.
    rmon_check_tcp_id str
    The ID of this resource.
    runbook str
    Runbook URL for alerts.
    slack_channel_id float
    Slack channel ID for alerts.
    telegram_channel_id float
    Telegram channel ID for alerts.
    checkGroup String
    Name of the check group for group TCP checks.
    checkTimeout Number
    Answer timeout in seconds.
    description String
    Description of the Check TCP.
    emailChannelId Number
    Email channel ID (optional)
    enabled Boolean
    Enabled state of the Check TCP.
    entities List<Number>
    List of entities where check must be created.
    interval Number
    Interval in seconds between checks.
    ip String
    IP address or domain name for TCP check.
    mmChannelId Number
    Mattermost channel ID for alerts.
    name String
    Name of the Check TCP.
    pdChannelId Number
    PagerDuty channel ID for alerts.
    place String
    Place scope for Check TCP.
    port Number
    Port for TCP check.
    priority String
    Where checks must be deployed.
    retries Number
    Number of retries before check is marked down.
    rmonCheckTcpId String
    The ID of this resource.
    runbook String
    Runbook URL for alerts.
    slackChannelId Number
    Slack channel ID for alerts.
    telegramChannelId Number
    Telegram channel ID for alerts.

    Package Details

    Repository
    edgecenter edge-center/terraform-provider-edgecenter
    License
    Notes
    This Pulumi package is based on the edgecenter Terraform Provider.
    edgecenter logo
    Viewing docs for edgecenter 0.11.5
    published on Tuesday, Mar 10, 2026 by edge-center
      Try Pulumi Cloud free. Your team will thank you.