published on Thursday, May 7, 2026 by rootlyhq
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:
- Edge
Connector stringId - The ID of the edge connector
- Action
Type 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<Edge
Connector Action Parameter> - Parameter definitions
- Timeout int
- Timeout in seconds
- Edge
Connector stringId - The ID of the edge connector
- Action
Type 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
[]Edge
Connector Action Parameter Args - Parameter definitions
- Timeout int
- Timeout in seconds
- edge
Connector StringId - The ID of the edge connector
- action
Type 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<Edge
Connector Action Parameter> - Parameter definitions
- timeout Integer
- Timeout in seconds
- edge
Connector stringId - The ID of the edge connector
- action
Type 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
Edge
Connector Action Parameter[] - Parameter definitions
- timeout number
- Timeout in seconds
- edge_
connector_ strid - 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[Edge
Connector Action Parameter Args] - Parameter definitions
- timeout int
- Timeout in seconds
- edge
Connector StringId - The ID of the edge connector
- action
Type 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:
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Executed stringAt - Slug string
- Action slug
- Updated
At string
- Created
At string - Id string
- The provider-assigned unique ID for this managed resource.
- Last
Executed stringAt - Slug string
- Action slug
- Updated
At string
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- last
Executed StringAt - slug String
- Action slug
- updated
At String
- created
At string - id string
- The provider-assigned unique ID for this managed resource.
- last
Executed stringAt - slug string
- Action slug
- updated
At string
- created_
at str - id str
- The provider-assigned unique ID for this managed resource.
- last_
executed_ strat - slug str
- Action slug
- updated_
at str
- created
At String - id String
- The provider-assigned unique ID for this managed resource.
- last
Executed StringAt - slug String
- Action slug
- updated
At 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) -> EdgeConnectorActionfunc 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.
- Action
Type string - Action type. Value must be one of
script,http. - Created
At string - Description string
- Action description
- Edge
Connector stringId - 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. - Last
Executed stringAt - Name string
- Action name
- Parameters
List<Edge
Connector Action Parameter> - Parameter definitions
- Slug string
- Action slug
- Timeout int
- Timeout in seconds
- Updated
At string
- Action
Type string - Action type. Value must be one of
script,http. - Created
At string - Description string
- Action description
- Edge
Connector stringId - 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. - Last
Executed stringAt - Name string
- Action name
- Parameters
[]Edge
Connector Action Parameter Args - Parameter definitions
- Slug string
- Action slug
- Timeout int
- Timeout in seconds
- Updated
At string
- action
Type String - Action type. Value must be one of
script,http. - created
At String - description String
- Action description
- edge
Connector StringId - 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. - last
Executed StringAt - name String
- Action name
- parameters
List<Edge
Connector Action Parameter> - Parameter definitions
- slug String
- Action slug
- timeout Integer
- Timeout in seconds
- updated
At String
- action
Type string - Action type. Value must be one of
script,http. - created
At string - description string
- Action description
- edge
Connector stringId - 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. - last
Executed stringAt - name string
- Action name
- parameters
Edge
Connector Action Parameter[] - Parameter definitions
- slug string
- Action slug
- timeout number
- Timeout in seconds
- updated
At string
- action_
type str - Action type. Value must be one of
script,http. - created_
at str - description str
- Action description
- edge_
connector_ strid - 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_ strat - name str
- Action name
- parameters
Sequence[Edge
Connector Action Parameter Args] - Parameter definitions
- slug str
- Action slug
- timeout int
- Timeout in seconds
- updated_
at str
- action
Type String - Action type. Value must be one of
script,http. - created
At String - description String
- Action description
- edge
Connector StringId - 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. - last
Executed StringAt - name String
- Action name
- parameters List<Property Map>
- Parameter definitions
- slug String
- Action slug
- timeout Number
- Timeout in seconds
- updated
At String
Supporting Types
EdgeConnectorActionParameter, EdgeConnectorActionParameterArgs
Package Details
- Repository
- rootly rootlyhq/pulumi-rootly
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
rootlyTerraform Provider.
published on Thursday, May 7, 2026 by rootlyhq
