ActionCustom
Manages a Custom Action within a Logic App Workflow
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "East US",
});
var exampleWorkflow = new Azure.LogicApps.Workflow("exampleWorkflow", new Azure.LogicApps.WorkflowArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleActionCustom = new Azure.LogicApps.ActionCustom("exampleActionCustom", new Azure.LogicApps.ActionCustomArgs
{
LogicAppId = exampleWorkflow.Id,
Body = @"{
""description"": ""A variable to configure the auto expiration age in days. Configured in negative number. Default is -30 (30 days old)."",
""inputs"": {
""variables"": [
{
""name"": ""ExpirationAgeInDays"",
""type"": ""Integer"",
""value"": -30
}
]
},
""runAfter"": {},
""type"": ""InitializeVariable""
}
",
});
}
}
package main
import (
"fmt"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/logicapps"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("East US"),
})
if err != nil {
return err
}
exampleWorkflow, err := logicapps.NewWorkflow(ctx, "exampleWorkflow", &logicapps.WorkflowArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
_, err = logicapps.NewActionCustom(ctx, "exampleActionCustom", &logicapps.ActionCustomArgs{
LogicAppId: exampleWorkflow.ID(),
Body: pulumi.String(fmt.Sprintf("%v%v%v%v%v%v%v%v%v%v%v%v%v%v", "{\n", " \"description\": \"A variable to configure the auto expiration age in days. Configured in negative number. Default is -30 (30 days old).\",\n", " \"inputs\": {\n", " \"variables\": [\n", " {\n", " \"name\": \"ExpirationAgeInDays\",\n", " \"type\": \"Integer\",\n", " \"value\": -30\n", " }\n", " ]\n", " },\n", " \"runAfter\": {},\n", " \"type\": \"InitializeVariable\"\n", "}\n")),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="East US")
example_workflow = azure.logicapps.Workflow("exampleWorkflow",
location=example_resource_group.location,
resource_group_name=example_resource_group.name)
example_action_custom = azure.logicapps.ActionCustom("exampleActionCustom",
logic_app_id=example_workflow.id,
body="""{
"description": "A variable to configure the auto expiration age in days. Configured in negative number. Default is -30 (30 days old).",
"inputs": {
"variables": [
{
"name": "ExpirationAgeInDays",
"type": "Integer",
"value": -30
}
]
},
"runAfter": {},
"type": "InitializeVariable"
}
""")import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "East US"});
const exampleWorkflow = new azure.logicapps.Workflow("exampleWorkflow", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
});
const exampleActionCustom = new azure.logicapps.ActionCustom("exampleActionCustom", {
logicAppId: exampleWorkflow.id,
body: `{
"description": "A variable to configure the auto expiration age in days. Configured in negative number. Default is -30 (30 days old).",
"inputs": {
"variables": [
{
"name": "ExpirationAgeInDays",
"type": "Integer",
"value": -30
}
]
},
"runAfter": {},
"type": "InitializeVariable"
}
`,
});Create a ActionCustom Resource
new ActionCustom(name: string, args: ActionCustomArgs, opts?: CustomResourceOptions);def ActionCustom(resource_name, opts=None, body=None, logic_app_id=None, name=None, __props__=None);func NewActionCustom(ctx *Context, name string, args ActionCustomArgs, opts ...ResourceOption) (*ActionCustom, error)public ActionCustom(string name, ActionCustomArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args ActionCustomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ActionCustomArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ActionCustomArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
ActionCustom Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The ActionCustom resource accepts the following input properties:
- Body string
Specifies the JSON Blob defining the Body of this Custom Action.
- Logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- Name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- Body string
Specifies the JSON Blob defining the Body of this Custom Action.
- Logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- Name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- body string
Specifies the JSON Blob defining the Body of this Custom Action.
- logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- body str
Specifies the JSON Blob defining the Body of this Custom Action.
- logic_
app_ strid Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- name str
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the ActionCustom resource produces the following output properties:
Look up an Existing ActionCustom Resource
Get an existing ActionCustom 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?: ActionCustomState, opts?: CustomResourceOptions): ActionCustomstatic get(resource_name, id, opts=None, body=None, logic_app_id=None, name=None, __props__=None);func GetActionCustom(ctx *Context, name string, id IDInput, state *ActionCustomState, opts ...ResourceOption) (*ActionCustom, error)public static ActionCustom Get(string name, Input<string> id, ActionCustomState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Body string
Specifies the JSON Blob defining the Body of this Custom Action.
- Logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- Name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- Body string
Specifies the JSON Blob defining the Body of this Custom Action.
- Logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- Name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- body string
Specifies the JSON Blob defining the Body of this Custom Action.
- logic
App stringId Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- name string
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
- body str
Specifies the JSON Blob defining the Body of this Custom Action.
- logic_
app_ strid Specifies the ID of the Logic App Workflow. Changing this forces a new resource to be created.
- name str
Specifies the name of the HTTP Action to be created within the Logic App Workflow. Changing this forces a new resource to be created.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.