1. Packages
  2. Azure Classic
  3. API Docs
  4. maintenance
  5. AssignmentDedicatedHost

We recommend using Azure Native.

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

azure.maintenance.AssignmentDedicatedHost

Explore with Pulumi AI

Manages a maintenance assignment to Dedicated Host.

Example Usage

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

const example = new azure.core.ResourceGroup("example", {
    name: "example-resources",
    location: "West Europe",
});
const exampleDedicatedHostGroup = new azure.compute.DedicatedHostGroup("example", {
    name: "example-host-group",
    resourceGroupName: example.name,
    location: example.location,
    platformFaultDomainCount: 2,
});
const exampleDedicatedHost = new azure.compute.DedicatedHost("example", {
    name: "example-host",
    location: example.location,
    dedicatedHostGroupId: exampleDedicatedHostGroup.id,
    skuName: "DSv3-Type3",
    platformFaultDomain: 1,
});
const exampleConfiguration = new azure.maintenance.Configuration("example", {
    name: "example-mc",
    resourceGroupName: example.name,
    location: example.location,
    scope: "Host",
});
const exampleAssignmentDedicatedHost = new azure.maintenance.AssignmentDedicatedHost("example", {
    location: example.location,
    maintenanceConfigurationId: exampleConfiguration.id,
    dedicatedHostId: exampleDedicatedHost.id,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_dedicated_host_group = azure.compute.DedicatedHostGroup("example",
    name="example-host-group",
    resource_group_name=example.name,
    location=example.location,
    platform_fault_domain_count=2)
example_dedicated_host = azure.compute.DedicatedHost("example",
    name="example-host",
    location=example.location,
    dedicated_host_group_id=example_dedicated_host_group.id,
    sku_name="DSv3-Type3",
    platform_fault_domain=1)
example_configuration = azure.maintenance.Configuration("example",
    name="example-mc",
    resource_group_name=example.name,
    location=example.location,
    scope="Host")
example_assignment_dedicated_host = azure.maintenance.AssignmentDedicatedHost("example",
    location=example.location,
    maintenance_configuration_id=example_configuration.id,
    dedicated_host_id=example_dedicated_host.id)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
			Name:     pulumi.String("example-resources"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleDedicatedHostGroup, err := compute.NewDedicatedHostGroup(ctx, "example", &compute.DedicatedHostGroupArgs{
			Name:                     pulumi.String("example-host-group"),
			ResourceGroupName:        example.Name,
			Location:                 example.Location,
			PlatformFaultDomainCount: pulumi.Int(2),
		})
		if err != nil {
			return err
		}
		exampleDedicatedHost, err := compute.NewDedicatedHost(ctx, "example", &compute.DedicatedHostArgs{
			Name:                 pulumi.String("example-host"),
			Location:             example.Location,
			DedicatedHostGroupId: exampleDedicatedHostGroup.ID(),
			SkuName:              pulumi.String("DSv3-Type3"),
			PlatformFaultDomain:  pulumi.Int(1),
		})
		if err != nil {
			return err
		}
		exampleConfiguration, err := maintenance.NewConfiguration(ctx, "example", &maintenance.ConfigurationArgs{
			Name:              pulumi.String("example-mc"),
			ResourceGroupName: example.Name,
			Location:          example.Location,
			Scope:             pulumi.String("Host"),
		})
		if err != nil {
			return err
		}
		_, err = maintenance.NewAssignmentDedicatedHost(ctx, "example", &maintenance.AssignmentDedicatedHostArgs{
			Location:                   example.Location,
			MaintenanceConfigurationId: exampleConfiguration.ID(),
			DedicatedHostId:            exampleDedicatedHost.ID(),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;

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

    var exampleDedicatedHostGroup = new Azure.Compute.DedicatedHostGroup("example", new()
    {
        Name = "example-host-group",
        ResourceGroupName = example.Name,
        Location = example.Location,
        PlatformFaultDomainCount = 2,
    });

    var exampleDedicatedHost = new Azure.Compute.DedicatedHost("example", new()
    {
        Name = "example-host",
        Location = example.Location,
        DedicatedHostGroupId = exampleDedicatedHostGroup.Id,
        SkuName = "DSv3-Type3",
        PlatformFaultDomain = 1,
    });

    var exampleConfiguration = new Azure.Maintenance.Configuration("example", new()
    {
        Name = "example-mc",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Scope = "Host",
    });

    var exampleAssignmentDedicatedHost = new Azure.Maintenance.AssignmentDedicatedHost("example", new()
    {
        Location = example.Location,
        MaintenanceConfigurationId = exampleConfiguration.Id,
        DedicatedHostId = exampleDedicatedHost.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.compute.DedicatedHostGroup;
import com.pulumi.azure.compute.DedicatedHostGroupArgs;
import com.pulumi.azure.compute.DedicatedHost;
import com.pulumi.azure.compute.DedicatedHostArgs;
import com.pulumi.azure.maintenance.Configuration;
import com.pulumi.azure.maintenance.ConfigurationArgs;
import com.pulumi.azure.maintenance.AssignmentDedicatedHost;
import com.pulumi.azure.maintenance.AssignmentDedicatedHostArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new ResourceGroup("example", ResourceGroupArgs.builder()
            .name("example-resources")
            .location("West Europe")
            .build());

        var exampleDedicatedHostGroup = new DedicatedHostGroup("exampleDedicatedHostGroup", DedicatedHostGroupArgs.builder()
            .name("example-host-group")
            .resourceGroupName(example.name())
            .location(example.location())
            .platformFaultDomainCount(2)
            .build());

        var exampleDedicatedHost = new DedicatedHost("exampleDedicatedHost", DedicatedHostArgs.builder()
            .name("example-host")
            .location(example.location())
            .dedicatedHostGroupId(exampleDedicatedHostGroup.id())
            .skuName("DSv3-Type3")
            .platformFaultDomain(1)
            .build());

        var exampleConfiguration = new Configuration("exampleConfiguration", ConfigurationArgs.builder()
            .name("example-mc")
            .resourceGroupName(example.name())
            .location(example.location())
            .scope("Host")
            .build());

        var exampleAssignmentDedicatedHost = new AssignmentDedicatedHost("exampleAssignmentDedicatedHost", AssignmentDedicatedHostArgs.builder()
            .location(example.location())
            .maintenanceConfigurationId(exampleConfiguration.id())
            .dedicatedHostId(exampleDedicatedHost.id())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleDedicatedHostGroup:
    type: azure:compute:DedicatedHostGroup
    name: example
    properties:
      name: example-host-group
      resourceGroupName: ${example.name}
      location: ${example.location}
      platformFaultDomainCount: 2
  exampleDedicatedHost:
    type: azure:compute:DedicatedHost
    name: example
    properties:
      name: example-host
      location: ${example.location}
      dedicatedHostGroupId: ${exampleDedicatedHostGroup.id}
      skuName: DSv3-Type3
      platformFaultDomain: 1
  exampleConfiguration:
    type: azure:maintenance:Configuration
    name: example
    properties:
      name: example-mc
      resourceGroupName: ${example.name}
      location: ${example.location}
      scope: Host
  exampleAssignmentDedicatedHost:
    type: azure:maintenance:AssignmentDedicatedHost
    name: example
    properties:
      location: ${example.location}
      maintenanceConfigurationId: ${exampleConfiguration.id}
      dedicatedHostId: ${exampleDedicatedHost.id}
Copy

Create AssignmentDedicatedHost Resource

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

Constructor syntax

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

@overload
def AssignmentDedicatedHost(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            dedicated_host_id: Optional[str] = None,
                            maintenance_configuration_id: Optional[str] = None,
                            location: Optional[str] = None)
func NewAssignmentDedicatedHost(ctx *Context, name string, args AssignmentDedicatedHostArgs, opts ...ResourceOption) (*AssignmentDedicatedHost, error)
public AssignmentDedicatedHost(string name, AssignmentDedicatedHostArgs args, CustomResourceOptions? opts = null)
public AssignmentDedicatedHost(String name, AssignmentDedicatedHostArgs args)
public AssignmentDedicatedHost(String name, AssignmentDedicatedHostArgs args, CustomResourceOptions options)
type: azure:maintenance:AssignmentDedicatedHost
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AssignmentDedicatedHostArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AssignmentDedicatedHostArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AssignmentDedicatedHostArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AssignmentDedicatedHostArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AssignmentDedicatedHostArgs
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 assignmentDedicatedHostResource = new Azure.Maintenance.AssignmentDedicatedHost("assignmentDedicatedHostResource", new()
{
    DedicatedHostId = "string",
    MaintenanceConfigurationId = "string",
    Location = "string",
});
Copy
example, err := maintenance.NewAssignmentDedicatedHost(ctx, "assignmentDedicatedHostResource", &maintenance.AssignmentDedicatedHostArgs{
	DedicatedHostId:            pulumi.String("string"),
	MaintenanceConfigurationId: pulumi.String("string"),
	Location:                   pulumi.String("string"),
})
Copy
var assignmentDedicatedHostResource = new AssignmentDedicatedHost("assignmentDedicatedHostResource", AssignmentDedicatedHostArgs.builder()
    .dedicatedHostId("string")
    .maintenanceConfigurationId("string")
    .location("string")
    .build());
Copy
assignment_dedicated_host_resource = azure.maintenance.AssignmentDedicatedHost("assignmentDedicatedHostResource",
    dedicated_host_id="string",
    maintenance_configuration_id="string",
    location="string")
Copy
const assignmentDedicatedHostResource = new azure.maintenance.AssignmentDedicatedHost("assignmentDedicatedHostResource", {
    dedicatedHostId: "string",
    maintenanceConfigurationId: "string",
    location: "string",
});
Copy
type: azure:maintenance:AssignmentDedicatedHost
properties:
    dedicatedHostId: string
    location: string
    maintenanceConfigurationId: string
Copy

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

DedicatedHostId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
MaintenanceConfigurationId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
DedicatedHostId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
MaintenanceConfigurationId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
dedicatedHostId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
maintenanceConfigurationId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
dedicatedHostId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
maintenanceConfigurationId
This property is required.
Changes to this property will trigger replacement.
string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
dedicated_host_id
This property is required.
Changes to this property will trigger replacement.
str
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
maintenance_configuration_id
This property is required.
Changes to this property will trigger replacement.
str
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
dedicatedHostId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
maintenanceConfigurationId
This property is required.
Changes to this property will trigger replacement.
String
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing AssignmentDedicatedHost Resource

Get an existing AssignmentDedicatedHost resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: AssignmentDedicatedHostState, opts?: CustomResourceOptions): AssignmentDedicatedHost
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        dedicated_host_id: Optional[str] = None,
        location: Optional[str] = None,
        maintenance_configuration_id: Optional[str] = None) -> AssignmentDedicatedHost
func GetAssignmentDedicatedHost(ctx *Context, name string, id IDInput, state *AssignmentDedicatedHostState, opts ...ResourceOption) (*AssignmentDedicatedHost, error)
public static AssignmentDedicatedHost Get(string name, Input<string> id, AssignmentDedicatedHostState? state, CustomResourceOptions? opts = null)
public static AssignmentDedicatedHost get(String name, Output<String> id, AssignmentDedicatedHostState state, CustomResourceOptions options)
resources:  _:    type: azure:maintenance:AssignmentDedicatedHost    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DedicatedHostId Changes to this property will trigger replacement. string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
MaintenanceConfigurationId Changes to this property will trigger replacement. string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
DedicatedHostId Changes to this property will trigger replacement. string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
Location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
MaintenanceConfigurationId Changes to this property will trigger replacement. string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
dedicatedHostId Changes to this property will trigger replacement. String
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
maintenanceConfigurationId Changes to this property will trigger replacement. String
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
dedicatedHostId Changes to this property will trigger replacement. string
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
maintenanceConfigurationId Changes to this property will trigger replacement. string
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
dedicated_host_id Changes to this property will trigger replacement. str
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
maintenance_configuration_id Changes to this property will trigger replacement. str
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.
dedicatedHostId Changes to this property will trigger replacement. String
Specifies the Dedicated Host ID to which the Maintenance Configuration will be assigned. Changing this forces a new resource to be created.
location Changes to this property will trigger replacement. String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
maintenanceConfigurationId Changes to this property will trigger replacement. String
Specifies the ID of the Maintenance Configuration Resource. Changing this forces a new resource to be created.

Import

Maintenance Assignment can be imported using the resource id, e.g.

$ pulumi import azure:maintenance/assignmentDedicatedHost:AssignmentDedicatedHost example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Compute/hostGroups/group1/hosts/host1/providers/Microsoft.Maintenance/configurationAssignments/assign1
Copy

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

Package Details

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