1. Packages
  2. Azure Native
  3. API Docs
  4. automation
  5. Watcher
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi

azure-native.automation.Watcher

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi

    Definition of the watcher type. Azure REST API version: 2020-01-13-preview. Prior API version in Azure Native 1.x: 2019-06-01.

    Other available API versions: 2023-05-15-preview.

    Example Usage

    Create or update watcher

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var watcher = new AzureNative.Automation.Watcher("watcher", new()
        {
            AutomationAccountName = "MyTestAutomationAccount",
            Description = "This is a test watcher.",
            ExecutionFrequencyInSeconds = 60,
            ResourceGroupName = "rg",
            ScriptName = "MyTestWatcherRunbook",
            ScriptRunOn = "MyTestHybridWorkerGroup",
            Tags = null,
            WatcherName = "MyTestWatcher",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/automation/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := automation.NewWatcher(ctx, "watcher", &automation.WatcherArgs{
    			AutomationAccountName:       pulumi.String("MyTestAutomationAccount"),
    			Description:                 pulumi.String("This is a test watcher."),
    			ExecutionFrequencyInSeconds: pulumi.Float64(60),
    			ResourceGroupName:           pulumi.String("rg"),
    			ScriptName:                  pulumi.String("MyTestWatcherRunbook"),
    			ScriptRunOn:                 pulumi.String("MyTestHybridWorkerGroup"),
    			Tags:                        nil,
    			WatcherName:                 pulumi.String("MyTestWatcher"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.automation.Watcher;
    import com.pulumi.azurenative.automation.WatcherArgs;
    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 watcher = new Watcher("watcher", WatcherArgs.builder()        
                .automationAccountName("MyTestAutomationAccount")
                .description("This is a test watcher.")
                .executionFrequencyInSeconds(60)
                .resourceGroupName("rg")
                .scriptName("MyTestWatcherRunbook")
                .scriptRunOn("MyTestHybridWorkerGroup")
                .tags()
                .watcherName("MyTestWatcher")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    watcher = azure_native.automation.Watcher("watcher",
        automation_account_name="MyTestAutomationAccount",
        description="This is a test watcher.",
        execution_frequency_in_seconds=60,
        resource_group_name="rg",
        script_name="MyTestWatcherRunbook",
        script_run_on="MyTestHybridWorkerGroup",
        tags={},
        watcher_name="MyTestWatcher")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const watcher = new azure_native.automation.Watcher("watcher", {
        automationAccountName: "MyTestAutomationAccount",
        description: "This is a test watcher.",
        executionFrequencyInSeconds: 60,
        resourceGroupName: "rg",
        scriptName: "MyTestWatcherRunbook",
        scriptRunOn: "MyTestHybridWorkerGroup",
        tags: {},
        watcherName: "MyTestWatcher",
    });
    
    resources:
      watcher:
        type: azure-native:automation:Watcher
        properties:
          automationAccountName: MyTestAutomationAccount
          description: This is a test watcher.
          executionFrequencyInSeconds: 60
          resourceGroupName: rg
          scriptName: MyTestWatcherRunbook
          scriptRunOn: MyTestHybridWorkerGroup
          tags: {}
          watcherName: MyTestWatcher
    

    Create Watcher Resource

    new Watcher(name: string, args: WatcherArgs, opts?: CustomResourceOptions);
    @overload
    def Watcher(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                automation_account_name: Optional[str] = None,
                description: Optional[str] = None,
                execution_frequency_in_seconds: Optional[float] = None,
                location: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                script_name: Optional[str] = None,
                script_parameters: Optional[Mapping[str, str]] = None,
                script_run_on: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                watcher_name: Optional[str] = None)
    @overload
    def Watcher(resource_name: str,
                args: WatcherArgs,
                opts: Optional[ResourceOptions] = None)
    func NewWatcher(ctx *Context, name string, args WatcherArgs, opts ...ResourceOption) (*Watcher, error)
    public Watcher(string name, WatcherArgs args, CustomResourceOptions? opts = null)
    public Watcher(String name, WatcherArgs args)
    public Watcher(String name, WatcherArgs args, CustomResourceOptions options)
    
    type: azure-native:automation:Watcher
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args WatcherArgs
    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 WatcherArgs
    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 WatcherArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WatcherArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WatcherArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Watcher Resource Properties

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

    Inputs

    The Watcher resource accepts the following input properties:

    AutomationAccountName string

    The name of the automation account.

    ResourceGroupName string

    Name of an Azure Resource group.

    Description string

    Gets or sets the description.

    ExecutionFrequencyInSeconds double

    Gets or sets the frequency at which the watcher is invoked.

    Location string

    The geo-location where the resource lives

    ScriptName string

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    ScriptParameters Dictionary<string, string>

    Gets or sets the parameters of the script.

    ScriptRunOn string

    Gets or sets the name of the hybrid worker group the watcher will run on.

    Tags Dictionary<string, string>

    Resource tags.

    WatcherName string

    The watcher name.

    AutomationAccountName string

    The name of the automation account.

    ResourceGroupName string

    Name of an Azure Resource group.

    Description string

    Gets or sets the description.

    ExecutionFrequencyInSeconds float64

    Gets or sets the frequency at which the watcher is invoked.

    Location string

    The geo-location where the resource lives

    ScriptName string

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    ScriptParameters map[string]string

    Gets or sets the parameters of the script.

    ScriptRunOn string

    Gets or sets the name of the hybrid worker group the watcher will run on.

    Tags map[string]string

    Resource tags.

    WatcherName string

    The watcher name.

    automationAccountName String

    The name of the automation account.

    resourceGroupName String

    Name of an Azure Resource group.

    description String

    Gets or sets the description.

    executionFrequencyInSeconds Double

    Gets or sets the frequency at which the watcher is invoked.

    location String

    The geo-location where the resource lives

    scriptName String

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    scriptParameters Map<String,String>

    Gets or sets the parameters of the script.

    scriptRunOn String

    Gets or sets the name of the hybrid worker group the watcher will run on.

    tags Map<String,String>

    Resource tags.

    watcherName String

    The watcher name.

    automationAccountName string

    The name of the automation account.

    resourceGroupName string

    Name of an Azure Resource group.

    description string

    Gets or sets the description.

    executionFrequencyInSeconds number

    Gets or sets the frequency at which the watcher is invoked.

    location string

    The geo-location where the resource lives

    scriptName string

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    scriptParameters {[key: string]: string}

    Gets or sets the parameters of the script.

    scriptRunOn string

    Gets or sets the name of the hybrid worker group the watcher will run on.

    tags {[key: string]: string}

    Resource tags.

    watcherName string

    The watcher name.

    automation_account_name str

    The name of the automation account.

    resource_group_name str

    Name of an Azure Resource group.

    description str

    Gets or sets the description.

    execution_frequency_in_seconds float

    Gets or sets the frequency at which the watcher is invoked.

    location str

    The geo-location where the resource lives

    script_name str

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    script_parameters Mapping[str, str]

    Gets or sets the parameters of the script.

    script_run_on str

    Gets or sets the name of the hybrid worker group the watcher will run on.

    tags Mapping[str, str]

    Resource tags.

    watcher_name str

    The watcher name.

    automationAccountName String

    The name of the automation account.

    resourceGroupName String

    Name of an Azure Resource group.

    description String

    Gets or sets the description.

    executionFrequencyInSeconds Number

    Gets or sets the frequency at which the watcher is invoked.

    location String

    The geo-location where the resource lives

    scriptName String

    Gets or sets the name of the script the watcher is attached to, i.e. the name of an existing runbook.

    scriptParameters Map<String>

    Gets or sets the parameters of the script.

    scriptRunOn String

    Gets or sets the name of the hybrid worker group the watcher will run on.

    tags Map<String>

    Resource tags.

    watcherName String

    The watcher name.

    Outputs

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

    CreationTime string

    Gets or sets the creation time.

    Id string

    The provider-assigned unique ID for this managed resource.

    LastModifiedBy string

    Details of the user who last modified the watcher.

    LastModifiedTime string

    Gets or sets the last modified time.

    Name string

    The name of the resource

    Status string

    Gets the current status of the watcher.

    Type string

    The type of the resource.

    Etag string

    Gets or sets the etag of the resource.

    CreationTime string

    Gets or sets the creation time.

    Id string

    The provider-assigned unique ID for this managed resource.

    LastModifiedBy string

    Details of the user who last modified the watcher.

    LastModifiedTime string

    Gets or sets the last modified time.

    Name string

    The name of the resource

    Status string

    Gets the current status of the watcher.

    Type string

    The type of the resource.

    Etag string

    Gets or sets the etag of the resource.

    creationTime String

    Gets or sets the creation time.

    id String

    The provider-assigned unique ID for this managed resource.

    lastModifiedBy String

    Details of the user who last modified the watcher.

    lastModifiedTime String

    Gets or sets the last modified time.

    name String

    The name of the resource

    status String

    Gets the current status of the watcher.

    type String

    The type of the resource.

    etag String

    Gets or sets the etag of the resource.

    creationTime string

    Gets or sets the creation time.

    id string

    The provider-assigned unique ID for this managed resource.

    lastModifiedBy string

    Details of the user who last modified the watcher.

    lastModifiedTime string

    Gets or sets the last modified time.

    name string

    The name of the resource

    status string

    Gets the current status of the watcher.

    type string

    The type of the resource.

    etag string

    Gets or sets the etag of the resource.

    creation_time str

    Gets or sets the creation time.

    id str

    The provider-assigned unique ID for this managed resource.

    last_modified_by str

    Details of the user who last modified the watcher.

    last_modified_time str

    Gets or sets the last modified time.

    name str

    The name of the resource

    status str

    Gets the current status of the watcher.

    type str

    The type of the resource.

    etag str

    Gets or sets the etag of the resource.

    creationTime String

    Gets or sets the creation time.

    id String

    The provider-assigned unique ID for this managed resource.

    lastModifiedBy String

    Details of the user who last modified the watcher.

    lastModifiedTime String

    Gets or sets the last modified time.

    name String

    The name of the resource

    status String

    Gets the current status of the watcher.

    type String

    The type of the resource.

    etag String

    Gets or sets the etag of the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:automation:Watcher MyTestWatcher /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/watchers/{watcherName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.21.1 published on Wednesday, Dec 6, 2023 by Pulumi