1. Packages
  2. Azure Classic
  3. API Docs
  4. automation
  5. Webhook

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.automation.Webhook

Explore with Pulumi AI

Manages an Automation Runbook’s Webhook.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleAccount = new azure.automation.Account("example", {
    name: "account1",
    location: example.location,
    resourceGroupName: example.name,
    skuName: "Basic",
});
const exampleRunBook = new azure.automation.RunBook("example", {
    name: "Get-AzureVMTutorial",
    location: example.location,
    resourceGroupName: example.name,
    automationAccountName: exampleAccount.name,
    logVerbose: true,
    logProgress: true,
    description: "This is an example runbook",
    runbookType: "PowerShellWorkflow",
    publishContentLink: {
        uri: "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
    },
});
const exampleWebhook = new azure.automation.Webhook("example", {
    name: "TestRunbook_webhook",
    resourceGroupName: example.name,
    automationAccountName: exampleAccount.name,
    expiryTime: "2021-12-31T00:00:00Z",
    enabled: true,
    runbookName: exampleRunBook.name,
    parameters: {
        input: "parameter",
    },
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_account = azure.automation.Account("example",
    name="account1",
    location=example.location,
    resource_group_name=example.name,
    sku_name="Basic")
example_run_book = azure.automation.RunBook("example",
    name="Get-AzureVMTutorial",
    location=example.location,
    resource_group_name=example.name,
    automation_account_name=example_account.name,
    log_verbose=True,
    log_progress=True,
    description="This is an example runbook",
    runbook_type="PowerShellWorkflow",
    publish_content_link={
        "uri": "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
    })
example_webhook = azure.automation.Webhook("example",
    name="TestRunbook_webhook",
    resource_group_name=example.name,
    automation_account_name=example_account.name,
    expiry_time="2021-12-31T00:00:00Z",
    enabled=True,
    runbook_name=example_run_book.name,
    parameters={
        "input": "parameter",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/automation"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleAccount, err := automation.NewAccount(ctx, "example", &automation.AccountArgs{
			Name:              pulumi.String("account1"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			SkuName:           pulumi.String("Basic"),
		})
		if err != nil {
			return err
		}
		exampleRunBook, err := automation.NewRunBook(ctx, "example", &automation.RunBookArgs{
			Name:                  pulumi.String("Get-AzureVMTutorial"),
			Location:              example.Location,
			ResourceGroupName:     example.Name,
			AutomationAccountName: exampleAccount.Name,
			LogVerbose:            pulumi.Bool(true),
			LogProgress:           pulumi.Bool(true),
			Description:           pulumi.String("This is an example runbook"),
			RunbookType:           pulumi.String("PowerShellWorkflow"),
			PublishContentLink: &automation.RunBookPublishContentLinkArgs{
				Uri: pulumi.String("https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1"),
			},
		})
		if err != nil {
			return err
		}
		_, err = automation.NewWebhook(ctx, "example", &automation.WebhookArgs{
			Name:                  pulumi.String("TestRunbook_webhook"),
			ResourceGroupName:     example.Name,
			AutomationAccountName: exampleAccount.Name,
			ExpiryTime:            pulumi.String("2021-12-31T00:00:00Z"),
			Enabled:               pulumi.Bool(true),
			RunbookName:           exampleRunBook.Name,
			Parameters: pulumi.StringMap{
				"input": pulumi.String("parameter"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

return await Deployment.RunAsync(() => 
{
    var example = new Azure.Core.ResourceGroup("example", new()
    {
        Name = "example-resources",
        Location = "West Europe",
    });

    var exampleAccount = new Azure.Automation.Account("example", new()
    {
        Name = "account1",
        Location = example.Location,
        ResourceGroupName = example.Name,
        SkuName = "Basic",
    });

    var exampleRunBook = new Azure.Automation.RunBook("example", new()
    {
        Name = "Get-AzureVMTutorial",
        Location = example.Location,
        ResourceGroupName = example.Name,
        AutomationAccountName = exampleAccount.Name,
        LogVerbose = true,
        LogProgress = true,
        Description = "This is an example runbook",
        RunbookType = "PowerShellWorkflow",
        PublishContentLink = new Azure.Automation.Inputs.RunBookPublishContentLinkArgs
        {
            Uri = "https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1",
        },
    });

    var exampleWebhook = new Azure.Automation.Webhook("example", new()
    {
        Name = "TestRunbook_webhook",
        ResourceGroupName = example.Name,
        AutomationAccountName = exampleAccount.Name,
        ExpiryTime = "2021-12-31T00:00:00Z",
        Enabled = true,
        RunbookName = exampleRunBook.Name,
        Parameters = 
        {
            { "input", "parameter" },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.automation.Account;
import com.pulumi.azure.automation.AccountArgs;
import com.pulumi.azure.automation.RunBook;
import com.pulumi.azure.automation.RunBookArgs;
import com.pulumi.azure.automation.inputs.RunBookPublishContentLinkArgs;
import com.pulumi.azure.automation.Webhook;
import com.pulumi.azure.automation.WebhookArgs;
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 ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
            .name("account1")
            .location(example.location())
            .resourceGroupName(example.name())
            .skuName("Basic")
            .build());

        var exampleRunBook = new RunBook("exampleRunBook", RunBookArgs.builder()
            .name("Get-AzureVMTutorial")
            .location(example.location())
            .resourceGroupName(example.name())
            .automationAccountName(exampleAccount.name())
            .logVerbose("true")
            .logProgress("true")
            .description("This is an example runbook")
            .runbookType("PowerShellWorkflow")
            .publishContentLink(RunBookPublishContentLinkArgs.builder()
                .uri("https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1")
                .build())
            .build());

        var exampleWebhook = new Webhook("exampleWebhook", WebhookArgs.builder()
            .name("TestRunbook_webhook")
            .resourceGroupName(example.name())
            .automationAccountName(exampleAccount.name())
            .expiryTime("2021-12-31T00:00:00Z")
            .enabled(true)
            .runbookName(exampleRunBook.name())
            .parameters(Map.of("input", "parameter"))
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAccount:
    type: azure:automation:Account
    name: example
    properties:
      name: account1
      location: ${example.location}
      resourceGroupName: ${example.name}
      skuName: Basic
  exampleRunBook:
    type: azure:automation:RunBook
    name: example
    properties:
      name: Get-AzureVMTutorial
      location: ${example.location}
      resourceGroupName: ${example.name}
      automationAccountName: ${exampleAccount.name}
      logVerbose: 'true'
      logProgress: 'true'
      description: This is an example runbook
      runbookType: PowerShellWorkflow
      publishContentLink:
        uri: https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1
  exampleWebhook:
    type: azure:automation:Webhook
    name: example
    properties:
      name: TestRunbook_webhook
      resourceGroupName: ${example.name}
      automationAccountName: ${exampleAccount.name}
      expiryTime: 2021-12-31T00:00:00Z
      enabled: true
      runbookName: ${exampleRunBook.name}
      parameters:
        input: parameter
Copy

Create Webhook Resource

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

Constructor syntax

new Webhook(name: string, args: WebhookArgs, opts?: CustomResourceOptions);
@overload
def Webhook(resource_name: str,
            args: WebhookArgs,
            opts: Optional[ResourceOptions] = None)

@overload
def Webhook(resource_name: str,
            opts: Optional[ResourceOptions] = None,
            automation_account_name: Optional[str] = None,
            expiry_time: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            runbook_name: Optional[str] = None,
            enabled: Optional[bool] = None,
            name: Optional[str] = None,
            parameters: Optional[Mapping[str, str]] = None,
            run_on_worker_group: Optional[str] = None,
            uri: Optional[str] = None)
func NewWebhook(ctx *Context, name string, args WebhookArgs, opts ...ResourceOption) (*Webhook, error)
public Webhook(string name, WebhookArgs args, CustomResourceOptions? opts = null)
public Webhook(String name, WebhookArgs args)
public Webhook(String name, WebhookArgs args, CustomResourceOptions options)
type: azure:automation:Webhook
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. WebhookArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. WebhookArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. WebhookArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. WebhookArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. WebhookArgs
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 webhookResource = new Azure.Automation.Webhook("webhookResource", new()
{
    AutomationAccountName = "string",
    ExpiryTime = "string",
    ResourceGroupName = "string",
    RunbookName = "string",
    Enabled = false,
    Name = "string",
    Parameters = 
    {
        { "string", "string" },
    },
    RunOnWorkerGroup = "string",
    Uri = "string",
});
Copy
example, err := automation.NewWebhook(ctx, "webhookResource", &automation.WebhookArgs{
	AutomationAccountName: pulumi.String("string"),
	ExpiryTime:            pulumi.String("string"),
	ResourceGroupName:     pulumi.String("string"),
	RunbookName:           pulumi.String("string"),
	Enabled:               pulumi.Bool(false),
	Name:                  pulumi.String("string"),
	Parameters: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	RunOnWorkerGroup: pulumi.String("string"),
	Uri:              pulumi.String("string"),
})
Copy
var webhookResource = new Webhook("webhookResource", WebhookArgs.builder()
    .automationAccountName("string")
    .expiryTime("string")
    .resourceGroupName("string")
    .runbookName("string")
    .enabled(false)
    .name("string")
    .parameters(Map.of("string", "string"))
    .runOnWorkerGroup("string")
    .uri("string")
    .build());
Copy
webhook_resource = azure.automation.Webhook("webhookResource",
    automation_account_name="string",
    expiry_time="string",
    resource_group_name="string",
    runbook_name="string",
    enabled=False,
    name="string",
    parameters={
        "string": "string",
    },
    run_on_worker_group="string",
    uri="string")
Copy
const webhookResource = new azure.automation.Webhook("webhookResource", {
    automationAccountName: "string",
    expiryTime: "string",
    resourceGroupName: "string",
    runbookName: "string",
    enabled: false,
    name: "string",
    parameters: {
        string: "string",
    },
    runOnWorkerGroup: "string",
    uri: "string",
});
Copy
type: azure:automation:Webhook
properties:
    automationAccountName: string
    enabled: false
    expiryTime: string
    name: string
    parameters:
        string: string
    resourceGroupName: string
    runOnWorkerGroup: string
    runbookName: string
    uri: string
Copy

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

AutomationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
ExpiryTime
This property is required.
Changes to this property will trigger replacement.
string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
RunbookName This property is required. string
Name of the Automation Runbook to execute by Webhook.
Enabled bool
Controls if Webhook is enabled. Defaults to true.
Name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
Parameters Dictionary<string, string>
Map of input parameters passed to runbook.
RunOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
Uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
AutomationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
ExpiryTime
This property is required.
Changes to this property will trigger replacement.
string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
RunbookName This property is required. string
Name of the Automation Runbook to execute by Webhook.
Enabled bool
Controls if Webhook is enabled. Defaults to true.
Name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
Parameters map[string]string
Map of input parameters passed to runbook.
RunOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
Uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
expiryTime
This property is required.
Changes to this property will trigger replacement.
String
Timestamp when the webhook expires. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runbookName This property is required. String
Name of the Automation Runbook to execute by Webhook.
enabled Boolean
Controls if Webhook is enabled. Defaults to true.
name Changes to this property will trigger replacement. String
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Map<String,String>
Map of input parameters passed to runbook.
runOnWorkerGroup String
Name of the hybrid worker group the Webhook job will run on.
uri Changes to this property will trigger replacement. String
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
expiryTime
This property is required.
Changes to this property will trigger replacement.
string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runbookName This property is required. string
Name of the Automation Runbook to execute by Webhook.
enabled boolean
Controls if Webhook is enabled. Defaults to true.
name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters {[key: string]: string}
Map of input parameters passed to runbook.
runOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automation_account_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
expiry_time
This property is required.
Changes to this property will trigger replacement.
str
Timestamp when the webhook expires. Changing this forces a new resource to be created.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runbook_name This property is required. str
Name of the Automation Runbook to execute by Webhook.
enabled bool
Controls if Webhook is enabled. Defaults to true.
name Changes to this property will trigger replacement. str
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Mapping[str, str]
Map of input parameters passed to runbook.
run_on_worker_group str
Name of the hybrid worker group the Webhook job will run on.
uri Changes to this property will trigger replacement. str
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
expiryTime
This property is required.
Changes to this property will trigger replacement.
String
Timestamp when the webhook expires. Changing this forces a new resource to be created.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runbookName This property is required. String
Name of the Automation Runbook to execute by Webhook.
enabled Boolean
Controls if Webhook is enabled. Defaults to true.
name Changes to this property will trigger replacement. String
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Map<String>
Map of input parameters passed to runbook.
runOnWorkerGroup String
Name of the hybrid worker group the Webhook job will run on.
uri Changes to this property will trigger replacement. String
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.

Outputs

All input properties are implicitly available as output properties. Additionally, the Webhook 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 Webhook Resource

Get an existing Webhook 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?: WebhookState, opts?: CustomResourceOptions): Webhook
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        automation_account_name: Optional[str] = None,
        enabled: Optional[bool] = None,
        expiry_time: Optional[str] = None,
        name: Optional[str] = None,
        parameters: Optional[Mapping[str, str]] = None,
        resource_group_name: Optional[str] = None,
        run_on_worker_group: Optional[str] = None,
        runbook_name: Optional[str] = None,
        uri: Optional[str] = None) -> Webhook
func GetWebhook(ctx *Context, name string, id IDInput, state *WebhookState, opts ...ResourceOption) (*Webhook, error)
public static Webhook Get(string name, Input<string> id, WebhookState? state, CustomResourceOptions? opts = null)
public static Webhook get(String name, Output<String> id, WebhookState state, CustomResourceOptions options)
resources:  _:    type: azure:automation:Webhook    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AutomationAccountName Changes to this property will trigger replacement. string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
Enabled bool
Controls if Webhook is enabled. Defaults to true.
ExpiryTime Changes to this property will trigger replacement. string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
Parameters Dictionary<string, string>
Map of input parameters passed to runbook.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
RunOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
RunbookName string
Name of the Automation Runbook to execute by Webhook.
Uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
AutomationAccountName Changes to this property will trigger replacement. string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
Enabled bool
Controls if Webhook is enabled. Defaults to true.
ExpiryTime Changes to this property will trigger replacement. string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
Name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
Parameters map[string]string
Map of input parameters passed to runbook.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
RunOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
RunbookName string
Name of the Automation Runbook to execute by Webhook.
Uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName Changes to this property will trigger replacement. String
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
enabled Boolean
Controls if Webhook is enabled. Defaults to true.
expiryTime Changes to this property will trigger replacement. String
Timestamp when the webhook expires. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Map<String,String>
Map of input parameters passed to runbook.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runOnWorkerGroup String
Name of the hybrid worker group the Webhook job will run on.
runbookName String
Name of the Automation Runbook to execute by Webhook.
uri Changes to this property will trigger replacement. String
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName Changes to this property will trigger replacement. string
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
enabled boolean
Controls if Webhook is enabled. Defaults to true.
expiryTime Changes to this property will trigger replacement. string
Timestamp when the webhook expires. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. string
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters {[key: string]: string}
Map of input parameters passed to runbook.
resourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runOnWorkerGroup string
Name of the hybrid worker group the Webhook job will run on.
runbookName string
Name of the Automation Runbook to execute by Webhook.
uri Changes to this property will trigger replacement. string
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automation_account_name Changes to this property will trigger replacement. str
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
enabled bool
Controls if Webhook is enabled. Defaults to true.
expiry_time Changes to this property will trigger replacement. str
Timestamp when the webhook expires. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. str
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Mapping[str, str]
Map of input parameters passed to runbook.
resource_group_name Changes to this property will trigger replacement. str
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
run_on_worker_group str
Name of the hybrid worker group the Webhook job will run on.
runbook_name str
Name of the Automation Runbook to execute by Webhook.
uri Changes to this property will trigger replacement. str
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.
automationAccountName Changes to this property will trigger replacement. String
The name of the automation account in which the Webhook is created. Changing this forces a new resource to be created.
enabled Boolean
Controls if Webhook is enabled. Defaults to true.
expiryTime Changes to this property will trigger replacement. String
Timestamp when the webhook expires. Changing this forces a new resource to be created.
name Changes to this property will trigger replacement. String
Specifies the name of the Webhook. Changing this forces a new resource to be created.
parameters Map<String>
Map of input parameters passed to runbook.
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which the Webhook is created. Changing this forces a new resource to be created.
runOnWorkerGroup String
Name of the hybrid worker group the Webhook job will run on.
runbookName String
Name of the Automation Runbook to execute by Webhook.
uri Changes to this property will trigger replacement. String
URI to initiate the webhook. Can be generated using Generate URI API. By default, new URI is generated on each new resource creation. Changing this forces a new resource to be created.

Import

Automation Webhooks can be imported using the resource id, e.g.

$ pulumi import azure:automation/webhook:Webhook TestRunbook_webhook /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automation/automationAccounts/account1/webHooks/TestRunbook_webhook
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Classic pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.