1. Packages
  2. Packages
  3. Rootly
  4. API Docs
  5. EdgeConnectorAction
Viewing docs for Rootly v3.3.0
published on Thursday, May 7, 2026 by rootlyhq
rootly logo
Viewing docs for Rootly v3.3.0
published on Thursday, May 7, 2026 by rootlyhq

    Import

    rootly.EdgeConnectorAction can be imported using the import command.

    $ pulumi import rootly:index/edgeConnectorAction:EdgeConnectorAction primary a816421c-6ceb-481a-87c4-585e47451f24
    

    Or using an import block.

    Locate the resource id in the web app, or retrieve it by listing resources through the API if it’s not visible in the web app.

    HCL can be generated from the import block using the -generate-config-out flag.

    pulumi preview -generate-config-out=generated.tf
    

    Create EdgeConnectorAction Resource

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

    Constructor syntax

    new EdgeConnectorAction(name: string, args: EdgeConnectorActionArgs, opts?: CustomResourceOptions);
    @overload
    def EdgeConnectorAction(resource_name: str,
                            args: EdgeConnectorActionArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def EdgeConnectorAction(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            edge_connector_id: Optional[str] = None,
                            action_type: Optional[str] = None,
                            description: Optional[str] = None,
                            icon: Optional[str] = None,
                            name: Optional[str] = None,
                            parameters: Optional[Sequence[EdgeConnectorActionParameterArgs]] = None,
                            timeout: Optional[int] = None)
    func NewEdgeConnectorAction(ctx *Context, name string, args EdgeConnectorActionArgs, opts ...ResourceOption) (*EdgeConnectorAction, error)
    public EdgeConnectorAction(string name, EdgeConnectorActionArgs args, CustomResourceOptions? opts = null)
    public EdgeConnectorAction(String name, EdgeConnectorActionArgs args)
    public EdgeConnectorAction(String name, EdgeConnectorActionArgs args, CustomResourceOptions options)
    
    type: rootly:EdgeConnectorAction
    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 EdgeConnectorActionArgs
    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 EdgeConnectorActionArgs
    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 EdgeConnectorActionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args EdgeConnectorActionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args EdgeConnectorActionArgs
    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 edgeConnectorActionResource = new Rootly.EdgeConnectorAction("edgeConnectorActionResource", new()
    {
        EdgeConnectorId = "string",
        ActionType = "string",
        Description = "string",
        Icon = "string",
        Name = "string",
        Parameters = new[]
        {
            new Rootly.Inputs.EdgeConnectorActionParameterArgs
            {
                Default = "string",
                Description = "string",
                Name = "string",
                Options = new[]
                {
                    "string",
                },
                Required = false,
                Type = "string",
            },
        },
        Timeout = 0,
    });
    
    example, err := rootly.NewEdgeConnectorAction(ctx, "edgeConnectorActionResource", &rootly.EdgeConnectorActionArgs{
    	EdgeConnectorId: pulumi.String("string"),
    	ActionType:      pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	Icon:            pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	Parameters: rootly.EdgeConnectorActionParameterArray{
    		&rootly.EdgeConnectorActionParameterArgs{
    			Default:     pulumi.String("string"),
    			Description: pulumi.String("string"),
    			Name:        pulumi.String("string"),
    			Options: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Required: pulumi.Bool(false),
    			Type:     pulumi.String("string"),
    		},
    	},
    	Timeout: pulumi.Int(0),
    })
    
    var edgeConnectorActionResource = new EdgeConnectorAction("edgeConnectorActionResource", EdgeConnectorActionArgs.builder()
        .edgeConnectorId("string")
        .actionType("string")
        .description("string")
        .icon("string")
        .name("string")
        .parameters(EdgeConnectorActionParameterArgs.builder()
            .default_("string")
            .description("string")
            .name("string")
            .options("string")
            .required(false)
            .type("string")
            .build())
        .timeout(0)
        .build());
    
    edge_connector_action_resource = rootly.EdgeConnectorAction("edgeConnectorActionResource",
        edge_connector_id="string",
        action_type="string",
        description="string",
        icon="string",
        name="string",
        parameters=[{
            "default": "string",
            "description": "string",
            "name": "string",
            "options": ["string"],
            "required": False,
            "type": "string",
        }],
        timeout=0)
    
    const edgeConnectorActionResource = new rootly.EdgeConnectorAction("edgeConnectorActionResource", {
        edgeConnectorId: "string",
        actionType: "string",
        description: "string",
        icon: "string",
        name: "string",
        parameters: [{
            "default": "string",
            description: "string",
            name: "string",
            options: ["string"],
            required: false,
            type: "string",
        }],
        timeout: 0,
    });
    
    type: rootly:EdgeConnectorAction
    properties:
        actionType: string
        description: string
        edgeConnectorId: string
        icon: string
        name: string
        parameters:
            - default: string
              description: string
              name: string
              options:
                - string
              required: false
              type: string
        timeout: 0
    

    EdgeConnectorAction 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 EdgeConnectorAction resource accepts the following input properties:

    EdgeConnectorId string
    The ID of the edge connector
    ActionType string
    Action type. Value must be one of script, http.
    Description string
    Action description
    Icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    Name string
    Action name
    Parameters List<EdgeConnectorActionParameter>
    Parameter definitions
    Timeout int
    Timeout in seconds
    EdgeConnectorId string
    The ID of the edge connector
    ActionType string
    Action type. Value must be one of script, http.
    Description string
    Action description
    Icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    Name string
    Action name
    Parameters []EdgeConnectorActionParameterArgs
    Parameter definitions
    Timeout int
    Timeout in seconds
    edgeConnectorId String
    The ID of the edge connector
    actionType String
    Action type. Value must be one of script, http.
    description String
    Action description
    icon String
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    name String
    Action name
    parameters List<EdgeConnectorActionParameter>
    Parameter definitions
    timeout Integer
    Timeout in seconds
    edgeConnectorId string
    The ID of the edge connector
    actionType string
    Action type. Value must be one of script, http.
    description string
    Action description
    icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    name string
    Action name
    parameters EdgeConnectorActionParameter[]
    Parameter definitions
    timeout number
    Timeout in seconds
    edge_connector_id str
    The ID of the edge connector
    action_type str
    Action type. Value must be one of script, http.
    description str
    Action description
    icon str
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    name str
    Action name
    parameters Sequence[EdgeConnectorActionParameterArgs]
    Parameter definitions
    timeout int
    Timeout in seconds
    edgeConnectorId String
    The ID of the edge connector
    actionType String
    Action type. Value must be one of script, http.
    description String
    Action description
    icon String
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    name String
    Action name
    parameters List<Property Map>
    Parameter definitions
    timeout Number
    Timeout in seconds

    Outputs

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

    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    LastExecutedAt string
    Slug string
    Action slug
    UpdatedAt string
    CreatedAt string
    Id string
    The provider-assigned unique ID for this managed resource.
    LastExecutedAt string
    Slug string
    Action slug
    UpdatedAt string
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    lastExecutedAt String
    slug String
    Action slug
    updatedAt String
    createdAt string
    id string
    The provider-assigned unique ID for this managed resource.
    lastExecutedAt string
    slug string
    Action slug
    updatedAt string
    created_at str
    id str
    The provider-assigned unique ID for this managed resource.
    last_executed_at str
    slug str
    Action slug
    updated_at str
    createdAt String
    id String
    The provider-assigned unique ID for this managed resource.
    lastExecutedAt String
    slug String
    Action slug
    updatedAt String

    Look up Existing EdgeConnectorAction Resource

    Get an existing EdgeConnectorAction 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?: EdgeConnectorActionState, opts?: CustomResourceOptions): EdgeConnectorAction
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            action_type: Optional[str] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            edge_connector_id: Optional[str] = None,
            icon: Optional[str] = None,
            last_executed_at: Optional[str] = None,
            name: Optional[str] = None,
            parameters: Optional[Sequence[EdgeConnectorActionParameterArgs]] = None,
            slug: Optional[str] = None,
            timeout: Optional[int] = None,
            updated_at: Optional[str] = None) -> EdgeConnectorAction
    func GetEdgeConnectorAction(ctx *Context, name string, id IDInput, state *EdgeConnectorActionState, opts ...ResourceOption) (*EdgeConnectorAction, error)
    public static EdgeConnectorAction Get(string name, Input<string> id, EdgeConnectorActionState? state, CustomResourceOptions? opts = null)
    public static EdgeConnectorAction get(String name, Output<String> id, EdgeConnectorActionState state, CustomResourceOptions options)
    resources:  _:    type: rootly:EdgeConnectorAction    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:
    ActionType string
    Action type. Value must be one of script, http.
    CreatedAt string
    Description string
    Action description
    EdgeConnectorId string
    The ID of the edge connector
    Icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    LastExecutedAt string
    Name string
    Action name
    Parameters List<EdgeConnectorActionParameter>
    Parameter definitions
    Slug string
    Action slug
    Timeout int
    Timeout in seconds
    UpdatedAt string
    ActionType string
    Action type. Value must be one of script, http.
    CreatedAt string
    Description string
    Action description
    EdgeConnectorId string
    The ID of the edge connector
    Icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    LastExecutedAt string
    Name string
    Action name
    Parameters []EdgeConnectorActionParameterArgs
    Parameter definitions
    Slug string
    Action slug
    Timeout int
    Timeout in seconds
    UpdatedAt string
    actionType String
    Action type. Value must be one of script, http.
    createdAt String
    description String
    Action description
    edgeConnectorId String
    The ID of the edge connector
    icon String
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    lastExecutedAt String
    name String
    Action name
    parameters List<EdgeConnectorActionParameter>
    Parameter definitions
    slug String
    Action slug
    timeout Integer
    Timeout in seconds
    updatedAt String
    actionType string
    Action type. Value must be one of script, http.
    createdAt string
    description string
    Action description
    edgeConnectorId string
    The ID of the edge connector
    icon string
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    lastExecutedAt string
    name string
    Action name
    parameters EdgeConnectorActionParameter[]
    Parameter definitions
    slug string
    Action slug
    timeout number
    Timeout in seconds
    updatedAt string
    action_type str
    Action type. Value must be one of script, http.
    created_at str
    description str
    Action description
    edge_connector_id str
    The ID of the edge connector
    icon str
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    last_executed_at str
    name str
    Action name
    parameters Sequence[EdgeConnectorActionParameterArgs]
    Parameter definitions
    slug str
    Action slug
    timeout int
    Timeout in seconds
    updated_at str
    actionType String
    Action type. Value must be one of script, http.
    createdAt String
    description String
    Action description
    edgeConnectorId String
    The ID of the edge connector
    icon String
    Action icon. Value must be one of bolt, bolt-slash, cog, command-line, code-bracket, server, server-stack, play, arrow-path, wrench-screwdriver, cube, rocket-launch.
    lastExecutedAt String
    name String
    Action name
    parameters List<Property Map>
    Parameter definitions
    slug String
    Action slug
    timeout Number
    Timeout in seconds
    updatedAt String

    Supporting Types

    EdgeConnectorActionParameter, EdgeConnectorActionParameterArgs

    Default string
    Description string
    Name string
    Options List<string>
    Required bool
    Type string
    Default string
    Description string
    Name string
    Options []string
    Required bool
    Type string
    default_ String
    description String
    name String
    options List<String>
    required Boolean
    type String
    default string
    description string
    name string
    options string[]
    required boolean
    type string
    default str
    description str
    name str
    options Sequence[str]
    required bool
    type str
    default String
    description String
    name String
    options List<String>
    required Boolean
    type String

    Package Details

    Repository
    rootly rootlyhq/pulumi-rootly
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the rootly Terraform Provider.
    rootly logo
    Viewing docs for Rootly v3.3.0
    published on Thursday, May 7, 2026 by rootlyhq
      Try Pulumi Cloud free. Your team will thank you.