azure-native.maintenance.MaintenanceConfiguration
Explore with Pulumi AI
Maintenance configuration record type Azure REST API version: 2022-11-01-preview. Prior API version in Azure Native 1.x: 2020-04-01.
Other available API versions: 2023-04-01, 2023-09-01-preview, 2023-10-01-preview.
Example Usage
MaintenanceConfigurations_CreateOrUpdateForResource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var maintenanceConfiguration = new AzureNative.Maintenance.MaintenanceConfiguration("maintenanceConfiguration", new()
    {
        Duration = "05:00",
        ExpirationDateTime = "9999-12-31 00:00",
        Location = "westus2",
        MaintenanceScope = AzureNative.Maintenance.MaintenanceScope.OSImage,
        Namespace = "Microsoft.Maintenance",
        RecurEvery = "Day",
        ResourceGroupName = "examplerg",
        ResourceName = "configuration1",
        StartDateTime = "2020-04-30 08:00",
        TimeZone = "Pacific Standard Time",
        Visibility = AzureNative.Maintenance.Visibility.Custom,
    });
});
package main
import (
	maintenance "github.com/pulumi/pulumi-azure-native-sdk/maintenance/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := maintenance.NewMaintenanceConfiguration(ctx, "maintenanceConfiguration", &maintenance.MaintenanceConfigurationArgs{
			Duration:           pulumi.String("05:00"),
			ExpirationDateTime: pulumi.String("9999-12-31 00:00"),
			Location:           pulumi.String("westus2"),
			MaintenanceScope:   pulumi.String(maintenance.MaintenanceScopeOSImage),
			Namespace:          pulumi.String("Microsoft.Maintenance"),
			RecurEvery:         pulumi.String("Day"),
			ResourceGroupName:  pulumi.String("examplerg"),
			ResourceName:       pulumi.String("configuration1"),
			StartDateTime:      pulumi.String("2020-04-30 08:00"),
			TimeZone:           pulumi.String("Pacific Standard Time"),
			Visibility:         pulumi.String(maintenance.VisibilityCustom),
		})
		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.maintenance.MaintenanceConfiguration;
import com.pulumi.azurenative.maintenance.MaintenanceConfigurationArgs;
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 maintenanceConfiguration = new MaintenanceConfiguration("maintenanceConfiguration", MaintenanceConfigurationArgs.builder()
            .duration("05:00")
            .expirationDateTime("9999-12-31 00:00")
            .location("westus2")
            .maintenanceScope("OSImage")
            .namespace("Microsoft.Maintenance")
            .recurEvery("Day")
            .resourceGroupName("examplerg")
            .resourceName("configuration1")
            .startDateTime("2020-04-30 08:00")
            .timeZone("Pacific Standard Time")
            .visibility("Custom")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const maintenanceConfiguration = new azure_native.maintenance.MaintenanceConfiguration("maintenanceConfiguration", {
    duration: "05:00",
    expirationDateTime: "9999-12-31 00:00",
    location: "westus2",
    maintenanceScope: azure_native.maintenance.MaintenanceScope.OSImage,
    namespace: "Microsoft.Maintenance",
    recurEvery: "Day",
    resourceGroupName: "examplerg",
    resourceName: "configuration1",
    startDateTime: "2020-04-30 08:00",
    timeZone: "Pacific Standard Time",
    visibility: azure_native.maintenance.Visibility.Custom,
});
import pulumi
import pulumi_azure_native as azure_native
maintenance_configuration = azure_native.maintenance.MaintenanceConfiguration("maintenanceConfiguration",
    duration="05:00",
    expiration_date_time="9999-12-31 00:00",
    location="westus2",
    maintenance_scope=azure_native.maintenance.MaintenanceScope.OS_IMAGE,
    namespace="Microsoft.Maintenance",
    recur_every="Day",
    resource_group_name="examplerg",
    resource_name_="configuration1",
    start_date_time="2020-04-30 08:00",
    time_zone="Pacific Standard Time",
    visibility=azure_native.maintenance.Visibility.CUSTOM)
resources:
  maintenanceConfiguration:
    type: azure-native:maintenance:MaintenanceConfiguration
    properties:
      duration: 05:00
      expirationDateTime: 9999-12-31 00:00
      location: westus2
      maintenanceScope: OSImage
      namespace: Microsoft.Maintenance
      recurEvery: Day
      resourceGroupName: examplerg
      resourceName: configuration1
      startDateTime: 2020-04-30 08:00
      timeZone: Pacific Standard Time
      visibility: Custom
Create MaintenanceConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MaintenanceConfiguration(name: string, args: MaintenanceConfigurationArgs, opts?: CustomResourceOptions);@overload
def MaintenanceConfiguration(resource_name: str,
                             args: MaintenanceConfigurationArgs,
                             opts: Optional[ResourceOptions] = None)
@overload
def MaintenanceConfiguration(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             resource_group_name: Optional[str] = None,
                             install_patches: Optional[InputPatchConfigurationArgs] = None,
                             recur_every: Optional[str] = None,
                             duration: Optional[str] = None,
                             location: Optional[str] = None,
                             maintenance_scope: Optional[Union[str, MaintenanceScope]] = None,
                             namespace: Optional[str] = None,
                             overrides: Optional[Sequence[MaintenanceOverridePropertiesArgs]] = None,
                             extension_properties: Optional[Mapping[str, str]] = None,
                             expiration_date_time: Optional[str] = None,
                             resource_name_: Optional[str] = None,
                             start_date_time: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None,
                             time_zone: Optional[str] = None,
                             visibility: Optional[Union[str, Visibility]] = None)func NewMaintenanceConfiguration(ctx *Context, name string, args MaintenanceConfigurationArgs, opts ...ResourceOption) (*MaintenanceConfiguration, error)public MaintenanceConfiguration(string name, MaintenanceConfigurationArgs args, CustomResourceOptions? opts = null)
public MaintenanceConfiguration(String name, MaintenanceConfigurationArgs args)
public MaintenanceConfiguration(String name, MaintenanceConfigurationArgs args, CustomResourceOptions options)
type: azure-native:maintenance:MaintenanceConfiguration
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 MaintenanceConfigurationArgs
- 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 MaintenanceConfigurationArgs
- 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 MaintenanceConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MaintenanceConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MaintenanceConfigurationArgs
- 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 examplemaintenanceConfigurationResourceResourceFromMaintenance = new AzureNative.Maintenance.MaintenanceConfiguration("examplemaintenanceConfigurationResourceResourceFromMaintenance", new()
{
    ResourceGroupName = "string",
    InstallPatches = new AzureNative.Maintenance.Inputs.InputPatchConfigurationArgs
    {
        LinuxParameters = new AzureNative.Maintenance.Inputs.InputLinuxParametersArgs
        {
            ClassificationsToInclude = new[]
            {
                "string",
            },
            PackageNameMasksToExclude = new[]
            {
                "string",
            },
            PackageNameMasksToInclude = new[]
            {
                "string",
            },
        },
        PostTasks = new[]
        {
            new AzureNative.Maintenance.Inputs.TaskPropertiesArgs
            {
                Parameters = 
                {
                    { "string", "string" },
                },
                Source = "string",
                TaskScope = "string",
            },
        },
        PreTasks = new[]
        {
            new AzureNative.Maintenance.Inputs.TaskPropertiesArgs
            {
                Parameters = 
                {
                    { "string", "string" },
                },
                Source = "string",
                TaskScope = "string",
            },
        },
        RebootSetting = "string",
        WindowsParameters = new AzureNative.Maintenance.Inputs.InputWindowsParametersArgs
        {
            ClassificationsToInclude = new[]
            {
                "string",
            },
            ExcludeKbsRequiringReboot = false,
            KbNumbersToExclude = new[]
            {
                "string",
            },
            KbNumbersToInclude = new[]
            {
                "string",
            },
        },
    },
    RecurEvery = "string",
    Duration = "string",
    Location = "string",
    MaintenanceScope = "string",
    Namespace = "string",
    Overrides = new[]
    {
        new AzureNative.Maintenance.Inputs.MaintenanceOverridePropertiesArgs
        {
            EndDateTime = "string",
            OverrideProperties = 
            {
                { "string", "string" },
            },
            StartDateTime = "string",
            TimeZone = "string",
        },
    },
    ExtensionProperties = 
    {
        { "string", "string" },
    },
    ExpirationDateTime = "string",
    ResourceName = "string",
    StartDateTime = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TimeZone = "string",
    Visibility = "string",
});
example, err := maintenance.NewMaintenanceConfiguration(ctx, "examplemaintenanceConfigurationResourceResourceFromMaintenance", &maintenance.MaintenanceConfigurationArgs{
	ResourceGroupName: pulumi.String("string"),
	InstallPatches: &maintenance.InputPatchConfigurationArgs{
		LinuxParameters: &maintenance.InputLinuxParametersArgs{
			ClassificationsToInclude: pulumi.StringArray{
				pulumi.String("string"),
			},
			PackageNameMasksToExclude: pulumi.StringArray{
				pulumi.String("string"),
			},
			PackageNameMasksToInclude: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
		PostTasks: maintenance.TaskPropertiesArray{
			&maintenance.TaskPropertiesArgs{
				Parameters: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
				Source:    pulumi.String("string"),
				TaskScope: pulumi.String("string"),
			},
		},
		PreTasks: maintenance.TaskPropertiesArray{
			&maintenance.TaskPropertiesArgs{
				Parameters: pulumi.StringMap{
					"string": pulumi.String("string"),
				},
				Source:    pulumi.String("string"),
				TaskScope: pulumi.String("string"),
			},
		},
		RebootSetting: pulumi.String("string"),
		WindowsParameters: &maintenance.InputWindowsParametersArgs{
			ClassificationsToInclude: pulumi.StringArray{
				pulumi.String("string"),
			},
			ExcludeKbsRequiringReboot: pulumi.Bool(false),
			KbNumbersToExclude: pulumi.StringArray{
				pulumi.String("string"),
			},
			KbNumbersToInclude: pulumi.StringArray{
				pulumi.String("string"),
			},
		},
	},
	RecurEvery:       pulumi.String("string"),
	Duration:         pulumi.String("string"),
	Location:         pulumi.String("string"),
	MaintenanceScope: pulumi.String("string"),
	Namespace:        pulumi.String("string"),
	Overrides: maintenance.MaintenanceOverridePropertiesArray{
		&maintenance.MaintenanceOverridePropertiesArgs{
			EndDateTime: pulumi.String("string"),
			OverrideProperties: pulumi.StringMap{
				"string": pulumi.String("string"),
			},
			StartDateTime: pulumi.String("string"),
			TimeZone:      pulumi.String("string"),
		},
	},
	ExtensionProperties: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ExpirationDateTime: pulumi.String("string"),
	ResourceName:       pulumi.String("string"),
	StartDateTime:      pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TimeZone:   pulumi.String("string"),
	Visibility: pulumi.String("string"),
})
var examplemaintenanceConfigurationResourceResourceFromMaintenance = new MaintenanceConfiguration("examplemaintenanceConfigurationResourceResourceFromMaintenance", MaintenanceConfigurationArgs.builder()
    .resourceGroupName("string")
    .installPatches(InputPatchConfigurationArgs.builder()
        .linuxParameters(InputLinuxParametersArgs.builder()
            .classificationsToInclude("string")
            .packageNameMasksToExclude("string")
            .packageNameMasksToInclude("string")
            .build())
        .postTasks(TaskPropertiesArgs.builder()
            .parameters(Map.of("string", "string"))
            .source("string")
            .taskScope("string")
            .build())
        .preTasks(TaskPropertiesArgs.builder()
            .parameters(Map.of("string", "string"))
            .source("string")
            .taskScope("string")
            .build())
        .rebootSetting("string")
        .windowsParameters(InputWindowsParametersArgs.builder()
            .classificationsToInclude("string")
            .excludeKbsRequiringReboot(false)
            .kbNumbersToExclude("string")
            .kbNumbersToInclude("string")
            .build())
        .build())
    .recurEvery("string")
    .duration("string")
    .location("string")
    .maintenanceScope("string")
    .namespace("string")
    .overrides(MaintenanceOverridePropertiesArgs.builder()
        .endDateTime("string")
        .overrideProperties(Map.of("string", "string"))
        .startDateTime("string")
        .timeZone("string")
        .build())
    .extensionProperties(Map.of("string", "string"))
    .expirationDateTime("string")
    .resourceName("string")
    .startDateTime("string")
    .tags(Map.of("string", "string"))
    .timeZone("string")
    .visibility("string")
    .build());
examplemaintenance_configuration_resource_resource_from_maintenance = azure_native.maintenance.MaintenanceConfiguration("examplemaintenanceConfigurationResourceResourceFromMaintenance",
    resource_group_name="string",
    install_patches={
        "linux_parameters": {
            "classifications_to_include": ["string"],
            "package_name_masks_to_exclude": ["string"],
            "package_name_masks_to_include": ["string"],
        },
        "post_tasks": [{
            "parameters": {
                "string": "string",
            },
            "source": "string",
            "task_scope": "string",
        }],
        "pre_tasks": [{
            "parameters": {
                "string": "string",
            },
            "source": "string",
            "task_scope": "string",
        }],
        "reboot_setting": "string",
        "windows_parameters": {
            "classifications_to_include": ["string"],
            "exclude_kbs_requiring_reboot": False,
            "kb_numbers_to_exclude": ["string"],
            "kb_numbers_to_include": ["string"],
        },
    },
    recur_every="string",
    duration="string",
    location="string",
    maintenance_scope="string",
    namespace="string",
    overrides=[{
        "end_date_time": "string",
        "override_properties": {
            "string": "string",
        },
        "start_date_time": "string",
        "time_zone": "string",
    }],
    extension_properties={
        "string": "string",
    },
    expiration_date_time="string",
    resource_name_="string",
    start_date_time="string",
    tags={
        "string": "string",
    },
    time_zone="string",
    visibility="string")
const examplemaintenanceConfigurationResourceResourceFromMaintenance = new azure_native.maintenance.MaintenanceConfiguration("examplemaintenanceConfigurationResourceResourceFromMaintenance", {
    resourceGroupName: "string",
    installPatches: {
        linuxParameters: {
            classificationsToInclude: ["string"],
            packageNameMasksToExclude: ["string"],
            packageNameMasksToInclude: ["string"],
        },
        postTasks: [{
            parameters: {
                string: "string",
            },
            source: "string",
            taskScope: "string",
        }],
        preTasks: [{
            parameters: {
                string: "string",
            },
            source: "string",
            taskScope: "string",
        }],
        rebootSetting: "string",
        windowsParameters: {
            classificationsToInclude: ["string"],
            excludeKbsRequiringReboot: false,
            kbNumbersToExclude: ["string"],
            kbNumbersToInclude: ["string"],
        },
    },
    recurEvery: "string",
    duration: "string",
    location: "string",
    maintenanceScope: "string",
    namespace: "string",
    overrides: [{
        endDateTime: "string",
        overrideProperties: {
            string: "string",
        },
        startDateTime: "string",
        timeZone: "string",
    }],
    extensionProperties: {
        string: "string",
    },
    expirationDateTime: "string",
    resourceName: "string",
    startDateTime: "string",
    tags: {
        string: "string",
    },
    timeZone: "string",
    visibility: "string",
});
type: azure-native:maintenance:MaintenanceConfiguration
properties:
    duration: string
    expirationDateTime: string
    extensionProperties:
        string: string
    installPatches:
        linuxParameters:
            classificationsToInclude:
                - string
            packageNameMasksToExclude:
                - string
            packageNameMasksToInclude:
                - string
        postTasks:
            - parameters:
                string: string
              source: string
              taskScope: string
        preTasks:
            - parameters:
                string: string
              source: string
              taskScope: string
        rebootSetting: string
        windowsParameters:
            classificationsToInclude:
                - string
            excludeKbsRequiringReboot: false
            kbNumbersToExclude:
                - string
            kbNumbersToInclude:
                - string
    location: string
    maintenanceScope: string
    namespace: string
    overrides:
        - endDateTime: string
          overrideProperties:
            string: string
          startDateTime: string
          timeZone: string
    recurEvery: string
    resourceGroupName: string
    resourceName: string
    startDateTime: string
    tags:
        string: string
    timeZone: string
    visibility: string
MaintenanceConfiguration 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 MaintenanceConfiguration resource accepts the following input properties:
- ResourceGroup stringName 
- Resource Group Name
- Duration string
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- ExpirationDate stringTime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- ExtensionProperties Dictionary<string, string>
- Gets or sets extensionProperties of the maintenanceConfiguration
- InstallPatches Pulumi.Azure Native. Maintenance. Inputs. Input Patch Configuration 
- The input parameters to be passed to the patch run operation.
- Location string
- Gets or sets location of the resource
- MaintenanceScope string | Pulumi.Azure Native. Maintenance. Maintenance Scope 
- Gets or sets maintenanceScope of the configuration
- Namespace string
- Gets or sets namespace of the resource
- Overrides
List<Pulumi.Azure Native. Maintenance. Inputs. Maintenance Override Properties> 
- Override Properties for the maintenance Configuration.
- RecurEvery string
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- ResourceName string
- Maintenance Configuration Name
- StartDate stringTime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- Dictionary<string, string>
- Gets or sets tags of the resource
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- Visibility
string | Pulumi.Azure Native. Maintenance. Visibility 
- Gets or sets the visibility of the configuration. The default value is 'Custom'
- ResourceGroup stringName 
- Resource Group Name
- Duration string
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- ExpirationDate stringTime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- ExtensionProperties map[string]string
- Gets or sets extensionProperties of the maintenanceConfiguration
- InstallPatches InputPatch Configuration Args 
- The input parameters to be passed to the patch run operation.
- Location string
- Gets or sets location of the resource
- MaintenanceScope string | MaintenanceScope 
- Gets or sets maintenanceScope of the configuration
- Namespace string
- Gets or sets namespace of the resource
- Overrides
[]MaintenanceOverride Properties Args 
- Override Properties for the maintenance Configuration.
- RecurEvery string
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- ResourceName string
- Maintenance Configuration Name
- StartDate stringTime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- map[string]string
- Gets or sets tags of the resource
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- Visibility string | Visibility
- Gets or sets the visibility of the configuration. The default value is 'Custom'
- resourceGroup StringName 
- Resource Group Name
- duration String
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- expirationDate StringTime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- extensionProperties Map<String,String>
- Gets or sets extensionProperties of the maintenanceConfiguration
- installPatches InputPatch Configuration 
- The input parameters to be passed to the patch run operation.
- location String
- Gets or sets location of the resource
- maintenanceScope String | MaintenanceScope 
- Gets or sets maintenanceScope of the configuration
- namespace String
- Gets or sets namespace of the resource
- overrides
List<MaintenanceOverride Properties> 
- Override Properties for the maintenance Configuration.
- recurEvery String
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- resourceName String
- Maintenance Configuration Name
- startDate StringTime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- Map<String,String>
- Gets or sets tags of the resource
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- visibility String | Visibility
- Gets or sets the visibility of the configuration. The default value is 'Custom'
- resourceGroup stringName 
- Resource Group Name
- duration string
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- expirationDate stringTime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- extensionProperties {[key: string]: string}
- Gets or sets extensionProperties of the maintenanceConfiguration
- installPatches InputPatch Configuration 
- The input parameters to be passed to the patch run operation.
- location string
- Gets or sets location of the resource
- maintenanceScope string | MaintenanceScope 
- Gets or sets maintenanceScope of the configuration
- namespace string
- Gets or sets namespace of the resource
- overrides
MaintenanceOverride Properties[] 
- Override Properties for the maintenance Configuration.
- recurEvery string
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- resourceName string
- Maintenance Configuration Name
- startDate stringTime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- {[key: string]: string}
- Gets or sets tags of the resource
- timeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- visibility string | Visibility
- Gets or sets the visibility of the configuration. The default value is 'Custom'
- resource_group_ strname 
- Resource Group Name
- duration str
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- expiration_date_ strtime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- extension_properties Mapping[str, str]
- Gets or sets extensionProperties of the maintenanceConfiguration
- install_patches InputPatch Configuration Args 
- The input parameters to be passed to the patch run operation.
- location str
- Gets or sets location of the resource
- maintenance_scope str | MaintenanceScope 
- Gets or sets maintenanceScope of the configuration
- namespace str
- Gets or sets namespace of the resource
- overrides
Sequence[MaintenanceOverride Properties Args] 
- Override Properties for the maintenance Configuration.
- recur_every str
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- resource_name str
- Maintenance Configuration Name
- start_date_ strtime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- Mapping[str, str]
- Gets or sets tags of the resource
- time_zone str
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- visibility str | Visibility
- Gets or sets the visibility of the configuration. The default value is 'Custom'
- resourceGroup StringName 
- Resource Group Name
- duration String
- Duration of the maintenance window in HH:mm format. If not provided, default value will be used based on maintenance scope provided. Example: 05:00.
- expirationDate StringTime 
- Effective expiration date of the maintenance window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- extensionProperties Map<String>
- Gets or sets extensionProperties of the maintenanceConfiguration
- installPatches Property Map
- The input parameters to be passed to the patch run operation.
- location String
- Gets or sets location of the resource
- maintenanceScope String | "Host" | "Resource" | "OSImage" | "Extension" | "InGuest Patch" | "SQLDB" | "SQLManaged Instance" 
- Gets or sets maintenanceScope of the configuration
- namespace String
- Gets or sets namespace of the resource
- overrides List<Property Map>
- Override Properties for the maintenance Configuration.
- recurEvery String
- Rate at which a Maintenance window is expected to recur. The rate can be expressed as daily, weekly, or monthly schedules. Daily schedule are formatted as recurEvery: [Frequency as integer]['Day(s)']. If no frequency is provided, the default frequency is 1. Daily schedule examples are recurEvery: Day, recurEvery: 3Days. Weekly schedule are formatted as recurEvery: [Frequency as integer]['Week(s)'] [Optional comma separated list of weekdays Monday-Sunday]. Weekly schedule examples are recurEvery: 3Weeks, recurEvery: Week Saturday,Sunday. Monthly schedules are formatted as [Frequency as integer]['Month(s)'] [Comma separated list of month days] or [Frequency as integer]['Month(s)'] [Week of Month (First, Second, Third, Fourth, Last)] [Weekday Monday-Sunday] [Optional Offset(No. of days)]. Offset value must be between -6 to 6 inclusive. Monthly schedule examples are recurEvery: Month, recurEvery: 2Months, recurEvery: Month day23,day24, recurEvery: Month Last Sunday, recurEvery: Month Fourth Monday, recurEvery: Month Last Sunday Offset-3, recurEvery: Month Third Sunday Offset6.
- resourceName String
- Maintenance Configuration Name
- startDate StringTime 
- Effective start date of the maintenance window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- Map<String>
- Gets or sets tags of the resource
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- visibility String | "Custom" | "Public"
- Gets or sets the visibility of the configuration. The default value is 'Custom'
Outputs
All input properties are implicitly available as output properties. Additionally, the MaintenanceConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource
- SystemData Pulumi.Azure Native. Maintenance. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Type of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Type of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Type of the resource
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- Type of the resource
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- Type of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the resource
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Type of the resource
Supporting Types
InputLinuxParameters, InputLinuxParametersArgs      
- ClassificationsTo List<string>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- PackageName List<string>Masks To Exclude 
- Package names to be excluded for patching.
- PackageName List<string>Masks To Include 
- Package names to be included for patching.
- ClassificationsTo []stringInclude 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- PackageName []stringMasks To Exclude 
- Package names to be excluded for patching.
- PackageName []stringMasks To Include 
- Package names to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName List<String>Masks To Exclude 
- Package names to be excluded for patching.
- packageName List<String>Masks To Include 
- Package names to be included for patching.
- classificationsTo string[]Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName string[]Masks To Exclude 
- Package names to be excluded for patching.
- packageName string[]Masks To Include 
- Package names to be included for patching.
- classifications_to_ Sequence[str]include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- package_name_ Sequence[str]masks_ to_ exclude 
- Package names to be excluded for patching.
- package_name_ Sequence[str]masks_ to_ include 
- Package names to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName List<String>Masks To Exclude 
- Package names to be excluded for patching.
- packageName List<String>Masks To Include 
- Package names to be included for patching.
InputLinuxParametersResponse, InputLinuxParametersResponseArgs        
- ClassificationsTo List<string>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- PackageName List<string>Masks To Exclude 
- Package names to be excluded for patching.
- PackageName List<string>Masks To Include 
- Package names to be included for patching.
- ClassificationsTo []stringInclude 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- PackageName []stringMasks To Exclude 
- Package names to be excluded for patching.
- PackageName []stringMasks To Include 
- Package names to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName List<String>Masks To Exclude 
- Package names to be excluded for patching.
- packageName List<String>Masks To Include 
- Package names to be included for patching.
- classificationsTo string[]Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName string[]Masks To Exclude 
- Package names to be excluded for patching.
- packageName string[]Masks To Include 
- Package names to be included for patching.
- classifications_to_ Sequence[str]include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- package_name_ Sequence[str]masks_ to_ exclude 
- Package names to be excluded for patching.
- package_name_ Sequence[str]masks_ to_ include 
- Package names to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', and 'Other'.
- packageName List<String>Masks To Exclude 
- Package names to be excluded for patching.
- packageName List<String>Masks To Include 
- Package names to be included for patching.
InputPatchConfiguration, InputPatchConfigurationArgs      
- LinuxParameters Pulumi.Azure Native. Maintenance. Inputs. Input Linux Parameters 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- PostTasks List<Pulumi.Azure Native. Maintenance. Inputs. Task Properties> 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- PreTasks List<Pulumi.Azure Native. Maintenance. Inputs. Task Properties> 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- RebootSetting string | Pulumi.Azure Native. Maintenance. Reboot Options 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- WindowsParameters Pulumi.Azure Native. Maintenance. Inputs. Input Windows Parameters 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- LinuxParameters InputLinux Parameters 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- PostTasks []TaskProperties 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- PreTasks []TaskProperties 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- RebootSetting string | RebootOptions 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- WindowsParameters InputWindows Parameters 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters InputLinux Parameters 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks List<TaskProperties> 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks List<TaskProperties> 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting String | RebootOptions 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters InputWindows Parameters 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters InputLinux Parameters 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks TaskProperties[] 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks TaskProperties[] 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting string | RebootOptions 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters InputWindows Parameters 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linux_parameters InputLinux Parameters 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- post_tasks Sequence[TaskProperties] 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- pre_tasks Sequence[TaskProperties] 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- reboot_setting str | RebootOptions 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windows_parameters InputWindows Parameters 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters Property Map
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks List<Property Map>
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks List<Property Map>
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting String | "IfRequired" | "Never" | "Always" 
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters Property Map
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
InputPatchConfigurationResponse, InputPatchConfigurationResponseArgs        
- LinuxParameters Pulumi.Azure Native. Maintenance. Inputs. Input Linux Parameters Response 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- PostTasks List<Pulumi.Azure Native. Maintenance. Inputs. Task Properties Response> 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- PreTasks List<Pulumi.Azure Native. Maintenance. Inputs. Task Properties Response> 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- RebootSetting string
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- WindowsParameters Pulumi.Azure Native. Maintenance. Inputs. Input Windows Parameters Response 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- LinuxParameters InputLinux Parameters Response 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- PostTasks []TaskProperties Response 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- PreTasks []TaskProperties Response 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- RebootSetting string
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- WindowsParameters InputWindows Parameters Response 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters InputLinux Parameters Response 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks List<TaskProperties Response> 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks List<TaskProperties Response> 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting String
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters InputWindows Parameters Response 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters InputLinux Parameters Response 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks TaskProperties Response[] 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks TaskProperties Response[] 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting string
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters InputWindows Parameters Response 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linux_parameters InputLinux Parameters Response 
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- post_tasks Sequence[TaskProperties Response] 
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- pre_tasks Sequence[TaskProperties Response] 
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- reboot_setting str
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windows_parameters InputWindows Parameters Response 
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
- linuxParameters Property Map
- Input parameters specific to patching Linux machine. For Windows machines, do not pass this property.
- postTasks List<Property Map>
- List of post tasks. e.g. [{'source' :'runbook', 'taskScope': 'Resource', 'parameters': { 'arg1': 'value1'}}]
- preTasks List<Property Map>
- List of pre tasks. e.g. [{'source' :'runbook', 'taskScope': 'Global', 'parameters': { 'arg1': 'value1'}}]
- rebootSetting String
- Possible reboot preference as defined by the user based on which it would be decided to reboot the machine or not after the patch operation is completed.
- windowsParameters Property Map
- Input parameters specific to patching a Windows machine. For Linux machines, do not pass this property.
InputWindowsParameters, InputWindowsParametersArgs      
- ClassificationsTo List<string>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- ExcludeKbs boolRequiring Reboot 
- Exclude patches which need reboot
- KbNumbers List<string>To Exclude 
- Windows KBID to be excluded for patching.
- KbNumbers List<string>To Include 
- Windows KBID to be included for patching.
- ClassificationsTo []stringInclude 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- ExcludeKbs boolRequiring Reboot 
- Exclude patches which need reboot
- KbNumbers []stringTo Exclude 
- Windows KBID to be excluded for patching.
- KbNumbers []stringTo Include 
- Windows KBID to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs BooleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers List<String>To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers List<String>To Include 
- Windows KBID to be included for patching.
- classificationsTo string[]Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs booleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers string[]To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers string[]To Include 
- Windows KBID to be included for patching.
- classifications_to_ Sequence[str]include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- exclude_kbs_ boolrequiring_ reboot 
- Exclude patches which need reboot
- kb_numbers_ Sequence[str]to_ exclude 
- Windows KBID to be excluded for patching.
- kb_numbers_ Sequence[str]to_ include 
- Windows KBID to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs BooleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers List<String>To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers List<String>To Include 
- Windows KBID to be included for patching.
InputWindowsParametersResponse, InputWindowsParametersResponseArgs        
- ClassificationsTo List<string>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- ExcludeKbs boolRequiring Reboot 
- Exclude patches which need reboot
- KbNumbers List<string>To Exclude 
- Windows KBID to be excluded for patching.
- KbNumbers List<string>To Include 
- Windows KBID to be included for patching.
- ClassificationsTo []stringInclude 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- ExcludeKbs boolRequiring Reboot 
- Exclude patches which need reboot
- KbNumbers []stringTo Exclude 
- Windows KBID to be excluded for patching.
- KbNumbers []stringTo Include 
- Windows KBID to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs BooleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers List<String>To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers List<String>To Include 
- Windows KBID to be included for patching.
- classificationsTo string[]Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs booleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers string[]To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers string[]To Include 
- Windows KBID to be included for patching.
- classifications_to_ Sequence[str]include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- exclude_kbs_ boolrequiring_ reboot 
- Exclude patches which need reboot
- kb_numbers_ Sequence[str]to_ exclude 
- Windows KBID to be excluded for patching.
- kb_numbers_ Sequence[str]to_ include 
- Windows KBID to be included for patching.
- classificationsTo List<String>Include 
- Classification category of patches to be patched. Allowed values are 'Critical', 'Security', 'UpdateRollup', 'FeaturePack', 'ServicePack', 'Definition', 'Tools', and 'Updates'.
- excludeKbs BooleanRequiring Reboot 
- Exclude patches which need reboot
- kbNumbers List<String>To Exclude 
- Windows KBID to be excluded for patching.
- kbNumbers List<String>To Include 
- Windows KBID to be included for patching.
MaintenanceOverrideProperties, MaintenanceOverridePropertiesArgs      
- EndDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- OverrideProperties Dictionary<string, string>
- Gets or sets overrideProperties of the maintenanceConfiguration
- StartDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- EndDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- OverrideProperties map[string]string
- Gets or sets overrideProperties of the maintenanceConfiguration
- StartDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate StringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties Map<String,String>
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate StringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties {[key: string]: string}
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- end_date_ strtime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- override_properties Mapping[str, str]
- Gets or sets overrideProperties of the maintenanceConfiguration
- start_date_ strtime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- time_zone str
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate StringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties Map<String>
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate StringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
MaintenanceOverridePropertiesResponse, MaintenanceOverridePropertiesResponseArgs        
- EndDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- OverrideProperties Dictionary<string, string>
- Gets or sets overrideProperties of the maintenanceConfiguration
- StartDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- EndDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- OverrideProperties map[string]string
- Gets or sets overrideProperties of the maintenanceConfiguration
- StartDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- TimeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate StringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties Map<String,String>
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate StringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate stringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties {[key: string]: string}
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate stringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone string
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- end_date_ strtime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- override_properties Mapping[str, str]
- Gets or sets overrideProperties of the maintenanceConfiguration
- start_date_ strtime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- time_zone str
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
- endDate StringTime 
- Effective end date of the maintenance override window in YYYY-MM-DD hh:mm format. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone. Expiration date must be set to a future date. If not provided, it will be set to the maximum datetime 9999-12-31 23:59:59.
- overrideProperties Map<String>
- Gets or sets overrideProperties of the maintenanceConfiguration
- startDate StringTime 
- Effective start date of the maintenance override window in YYYY-MM-DD hh:mm format. The start date can be set to either the current date or future date. The window will be created in the time zone provided and adjusted to daylight savings according to that time zone.
- timeZone String
- Name of the timezone. List of timezones can be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. Example: Pacific Standard Time, UTC, W. Europe Standard Time, Korea Standard Time, Cen. Australia Standard Time.
MaintenanceScope, MaintenanceScopeArgs    
- Host
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- Resource
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- OSImage
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- Extension
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- InGuest Patch 
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- SQLDB
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- SQLManagedInstance 
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
- MaintenanceScope Host 
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- MaintenanceScope Resource 
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- MaintenanceScope OSImage 
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- MaintenanceScope Extension 
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- MaintenanceScope In Guest Patch 
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- MaintenanceScope SQLDB 
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- MaintenanceScope SQLManaged Instance 
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
- Host
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- Resource
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- OSImage
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- Extension
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- InGuest Patch 
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- SQLDB
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- SQLManagedInstance 
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
- Host
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- Resource
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- OSImage
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- Extension
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- InGuest Patch 
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- SQLDB
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- SQLManagedInstance 
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
- HOST
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- RESOURCE
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- OS_IMAGE
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- EXTENSION
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- IN_GUEST_PATCH
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- SQLDB
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- SQL_MANAGED_INSTANCE
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
- "Host"
- HostThis maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
- "Resource"
- ResourceThis maintenance scope controls the default update maintenance of the Azure Resource
- "OSImage"
- OSImageThis maintenance scope controls os image installation on VM/VMSS
- "Extension"
- ExtensionThis maintenance scope controls extension installation on VM/VMSS
- "InGuest Patch" 
- InGuestPatchThis maintenance scope controls installation of windows and linux packages on VM/VMSS
- "SQLDB"
- SQLDBThis maintenance scope controls installation of SQL server platform updates.
- "SQLManagedInstance" 
- SQLManagedInstanceThis maintenance scope controls installation of SQL managed instance platform update.
RebootOptions, RebootOptionsArgs    
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- RebootOptions If Required 
- IfRequired
- RebootOptions Never 
- Never
- RebootOptions Always 
- Always
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- IfRequired 
- IfRequired
- Never
- Never
- Always
- Always
- IF_REQUIRED
- IfRequired
- NEVER
- Never
- ALWAYS
- Always
- "IfRequired" 
- IfRequired
- "Never"
- Never
- "Always"
- Always
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TaskProperties, TaskPropertiesArgs    
- Parameters Dictionary<string, string>
- Gets or sets the parameters of the task.
- Source string
- Gets or sets the name of the runbook.
- TaskScope string | Pulumi.Azure Native. Maintenance. Task Scope 
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- Parameters map[string]string
- Gets or sets the parameters of the task.
- Source string
- Gets or sets the name of the runbook.
- TaskScope string | TaskScope 
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Map<String,String>
- Gets or sets the parameters of the task.
- source String
- Gets or sets the name of the runbook.
- taskScope String | TaskScope 
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters {[key: string]: string}
- Gets or sets the parameters of the task.
- source string
- Gets or sets the name of the runbook.
- taskScope string | TaskScope 
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Mapping[str, str]
- Gets or sets the parameters of the task.
- source str
- Gets or sets the name of the runbook.
- task_scope str | TaskScope 
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Map<String>
- Gets or sets the parameters of the task.
- source String
- Gets or sets the name of the runbook.
- taskScope String | "Global" | "Resource"
- Global Task execute once when schedule trigger. Resource task execute for each VM.
TaskPropertiesResponse, TaskPropertiesResponseArgs      
- Parameters Dictionary<string, string>
- Gets or sets the parameters of the task.
- Source string
- Gets or sets the name of the runbook.
- TaskScope string
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- Parameters map[string]string
- Gets or sets the parameters of the task.
- Source string
- Gets or sets the name of the runbook.
- TaskScope string
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Map<String,String>
- Gets or sets the parameters of the task.
- source String
- Gets or sets the name of the runbook.
- taskScope String
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters {[key: string]: string}
- Gets or sets the parameters of the task.
- source string
- Gets or sets the name of the runbook.
- taskScope string
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Mapping[str, str]
- Gets or sets the parameters of the task.
- source str
- Gets or sets the name of the runbook.
- task_scope str
- Global Task execute once when schedule trigger. Resource task execute for each VM.
- parameters Map<String>
- Gets or sets the parameters of the task.
- source String
- Gets or sets the name of the runbook.
- taskScope String
- Global Task execute once when schedule trigger. Resource task execute for each VM.
TaskScope, TaskScopeArgs    
- Global
- Global
- Resource
- Resource
- TaskScope Global 
- Global
- TaskScope Resource 
- Resource
- Global
- Global
- Resource
- Resource
- Global
- Global
- Resource
- Resource
- GLOBAL_
- Global
- RESOURCE
- Resource
- "Global"
- Global
- "Resource"
- Resource
Visibility, VisibilityArgs  
- Custom
- CustomOnly visible to users with permissions.
- Public
- PublicVisible to all users.
- VisibilityCustom 
- CustomOnly visible to users with permissions.
- VisibilityPublic 
- PublicVisible to all users.
- Custom
- CustomOnly visible to users with permissions.
- Public
- PublicVisible to all users.
- Custom
- CustomOnly visible to users with permissions.
- Public
- PublicVisible to all users.
- CUSTOM
- CustomOnly visible to users with permissions.
- PUBLIC
- PublicVisible to all users.
- "Custom"
- CustomOnly visible to users with permissions.
- "Public"
- PublicVisible to all users.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:maintenance:MaintenanceConfiguration configuration1 /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Maintenance/maintenanceConfigurations/{resourceName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0