1. Packages
  2. Azure Native
  3. API Docs
  4. maintenance
  5. ConfigurationAssignmentParent
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.maintenance.ConfigurationAssignmentParent

Explore with Pulumi AI

Configuration Assignment

Uses Azure REST API version 2023-10-01-preview. In version 2.x of the Azure Native provider, it used API version 2022-11-01-preview.

Other available API versions: 2022-11-01-preview, 2023-04-01, 2023-09-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native maintenance [ApiVersion]. See the version guide for details.

Example Usage

ConfigurationAssignments_CreateOrUpdateParent

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var configurationAssignmentParent = new AzureNative.Maintenance.ConfigurationAssignmentParent("configurationAssignmentParent", new()
    {
        ConfigurationAssignmentName = "workervmPolicy",
        MaintenanceConfigurationId = "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1",
        ProviderName = "Microsoft.Compute",
        ResourceGroupName = "examplerg",
        ResourceName = "smdvm1",
        ResourceParentName = "smdtest1",
        ResourceParentType = "virtualMachineScaleSets",
        ResourceType = "virtualMachines",
    });

});
Copy
package main

import (
	maintenance "github.com/pulumi/pulumi-azure-native-sdk/maintenance/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := maintenance.NewConfigurationAssignmentParent(ctx, "configurationAssignmentParent", &maintenance.ConfigurationAssignmentParentArgs{
			ConfigurationAssignmentName: pulumi.String("workervmPolicy"),
			MaintenanceConfigurationId:  pulumi.String("/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1"),
			ProviderName:                pulumi.String("Microsoft.Compute"),
			ResourceGroupName:           pulumi.String("examplerg"),
			ResourceName:                pulumi.String("smdvm1"),
			ResourceParentName:          pulumi.String("smdtest1"),
			ResourceParentType:          pulumi.String("virtualMachineScaleSets"),
			ResourceType:                pulumi.String("virtualMachines"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.maintenance.ConfigurationAssignmentParent;
import com.pulumi.azurenative.maintenance.ConfigurationAssignmentParentArgs;
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 configurationAssignmentParent = new ConfigurationAssignmentParent("configurationAssignmentParent", ConfigurationAssignmentParentArgs.builder()
            .configurationAssignmentName("workervmPolicy")
            .maintenanceConfigurationId("/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1")
            .providerName("Microsoft.Compute")
            .resourceGroupName("examplerg")
            .resourceName("smdvm1")
            .resourceParentName("smdtest1")
            .resourceParentType("virtualMachineScaleSets")
            .resourceType("virtualMachines")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const configurationAssignmentParent = new azure_native.maintenance.ConfigurationAssignmentParent("configurationAssignmentParent", {
    configurationAssignmentName: "workervmPolicy",
    maintenanceConfigurationId: "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1",
    providerName: "Microsoft.Compute",
    resourceGroupName: "examplerg",
    resourceName: "smdvm1",
    resourceParentName: "smdtest1",
    resourceParentType: "virtualMachineScaleSets",
    resourceType: "virtualMachines",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

configuration_assignment_parent = azure_native.maintenance.ConfigurationAssignmentParent("configurationAssignmentParent",
    configuration_assignment_name="workervmPolicy",
    maintenance_configuration_id="/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1",
    provider_name="Microsoft.Compute",
    resource_group_name="examplerg",
    resource_name_="smdvm1",
    resource_parent_name="smdtest1",
    resource_parent_type="virtualMachineScaleSets",
    resource_type="virtualMachines")
Copy
resources:
  configurationAssignmentParent:
    type: azure-native:maintenance:ConfigurationAssignmentParent
    properties:
      configurationAssignmentName: workervmPolicy
      maintenanceConfigurationId: /subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourcegroups/examplerg/providers/Microsoft.Maintenance/maintenanceConfigurations/policy1
      providerName: Microsoft.Compute
      resourceGroupName: examplerg
      resourceName: smdvm1
      resourceParentName: smdtest1
      resourceParentType: virtualMachineScaleSets
      resourceType: virtualMachines
Copy

Create ConfigurationAssignmentParent Resource

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

Constructor syntax

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

@overload
def ConfigurationAssignmentParent(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  provider_name: Optional[str] = None,
                                  resource_group_name: Optional[str] = None,
                                  resource_name_: Optional[str] = None,
                                  resource_parent_name: Optional[str] = None,
                                  resource_parent_type: Optional[str] = None,
                                  resource_type: Optional[str] = None,
                                  configuration_assignment_name: Optional[str] = None,
                                  filter: Optional[ConfigurationAssignmentFilterPropertiesArgs] = None,
                                  location: Optional[str] = None,
                                  maintenance_configuration_id: Optional[str] = None,
                                  resource_id: Optional[str] = None)
func NewConfigurationAssignmentParent(ctx *Context, name string, args ConfigurationAssignmentParentArgs, opts ...ResourceOption) (*ConfigurationAssignmentParent, error)
public ConfigurationAssignmentParent(string name, ConfigurationAssignmentParentArgs args, CustomResourceOptions? opts = null)
public ConfigurationAssignmentParent(String name, ConfigurationAssignmentParentArgs args)
public ConfigurationAssignmentParent(String name, ConfigurationAssignmentParentArgs args, CustomResourceOptions options)
type: azure-native:maintenance:ConfigurationAssignmentParent
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. ConfigurationAssignmentParentArgs
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. ConfigurationAssignmentParentArgs
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. ConfigurationAssignmentParentArgs
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. ConfigurationAssignmentParentArgs
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. ConfigurationAssignmentParentArgs
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 configurationAssignmentParentResource = new AzureNative.Maintenance.ConfigurationAssignmentParent("configurationAssignmentParentResource", new()
{
    ProviderName = "string",
    ResourceGroupName = "string",
    ResourceName = "string",
    ResourceParentName = "string",
    ResourceParentType = "string",
    ResourceType = "string",
    ConfigurationAssignmentName = "string",
    Filter = new AzureNative.Maintenance.Inputs.ConfigurationAssignmentFilterPropertiesArgs
    {
        Locations = new[]
        {
            "string",
        },
        OsTypes = new[]
        {
            "string",
        },
        ResourceGroups = new[]
        {
            "string",
        },
        ResourceTypes = new[]
        {
            "string",
        },
        TagSettings = new AzureNative.Maintenance.Inputs.TagSettingsPropertiesArgs
        {
            FilterOperator = AzureNative.Maintenance.TagOperators.All,
            Tags = 
            {
                { "string", new[]
                {
                    "string",
                } },
            },
        },
    },
    Location = "string",
    MaintenanceConfigurationId = "string",
    ResourceId = "string",
});
Copy
example, err := maintenance.NewConfigurationAssignmentParent(ctx, "configurationAssignmentParentResource", &maintenance.ConfigurationAssignmentParentArgs{
	ProviderName:                pulumi.String("string"),
	ResourceGroupName:           pulumi.String("string"),
	ResourceName:                pulumi.String("string"),
	ResourceParentName:          pulumi.String("string"),
	ResourceParentType:          pulumi.String("string"),
	ResourceType:                pulumi.String("string"),
	ConfigurationAssignmentName: pulumi.String("string"),
	Filter: &maintenance.ConfigurationAssignmentFilterPropertiesArgs{
		Locations: pulumi.StringArray{
			pulumi.String("string"),
		},
		OsTypes: pulumi.StringArray{
			pulumi.String("string"),
		},
		ResourceGroups: pulumi.StringArray{
			pulumi.String("string"),
		},
		ResourceTypes: pulumi.StringArray{
			pulumi.String("string"),
		},
		TagSettings: &maintenance.TagSettingsPropertiesArgs{
			FilterOperator: maintenance.TagOperatorsAll,
			Tags: pulumi.StringArrayMap{
				"string": pulumi.StringArray{
					pulumi.String("string"),
				},
			},
		},
	},
	Location:                   pulumi.String("string"),
	MaintenanceConfigurationId: pulumi.String("string"),
	ResourceId:                 pulumi.String("string"),
})
Copy
var configurationAssignmentParentResource = new ConfigurationAssignmentParent("configurationAssignmentParentResource", ConfigurationAssignmentParentArgs.builder()
    .providerName("string")
    .resourceGroupName("string")
    .resourceName("string")
    .resourceParentName("string")
    .resourceParentType("string")
    .resourceType("string")
    .configurationAssignmentName("string")
    .filter(ConfigurationAssignmentFilterPropertiesArgs.builder()
        .locations("string")
        .osTypes("string")
        .resourceGroups("string")
        .resourceTypes("string")
        .tagSettings(TagSettingsPropertiesArgs.builder()
            .filterOperator("All")
            .tags(Map.of("string", "string"))
            .build())
        .build())
    .location("string")
    .maintenanceConfigurationId("string")
    .resourceId("string")
    .build());
Copy
configuration_assignment_parent_resource = azure_native.maintenance.ConfigurationAssignmentParent("configurationAssignmentParentResource",
    provider_name="string",
    resource_group_name="string",
    resource_name_="string",
    resource_parent_name="string",
    resource_parent_type="string",
    resource_type="string",
    configuration_assignment_name="string",
    filter={
        "locations": ["string"],
        "os_types": ["string"],
        "resource_groups": ["string"],
        "resource_types": ["string"],
        "tag_settings": {
            "filter_operator": azure_native.maintenance.TagOperators.ALL,
            "tags": {
                "string": ["string"],
            },
        },
    },
    location="string",
    maintenance_configuration_id="string",
    resource_id="string")
Copy
const configurationAssignmentParentResource = new azure_native.maintenance.ConfigurationAssignmentParent("configurationAssignmentParentResource", {
    providerName: "string",
    resourceGroupName: "string",
    resourceName: "string",
    resourceParentName: "string",
    resourceParentType: "string",
    resourceType: "string",
    configurationAssignmentName: "string",
    filter: {
        locations: ["string"],
        osTypes: ["string"],
        resourceGroups: ["string"],
        resourceTypes: ["string"],
        tagSettings: {
            filterOperator: azure_native.maintenance.TagOperators.All,
            tags: {
                string: ["string"],
            },
        },
    },
    location: "string",
    maintenanceConfigurationId: "string",
    resourceId: "string",
});
Copy
type: azure-native:maintenance:ConfigurationAssignmentParent
properties:
    configurationAssignmentName: string
    filter:
        locations:
            - string
        osTypes:
            - string
        resourceGroups:
            - string
        resourceTypes:
            - string
        tagSettings:
            filterOperator: All
            tags:
                string:
                    - string
    location: string
    maintenanceConfigurationId: string
    providerName: string
    resourceGroupName: string
    resourceId: string
    resourceName: string
    resourceParentName: string
    resourceParentType: string
    resourceType: string
Copy

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

ProviderName
This property is required.
Changes to this property will trigger replacement.
string
Resource provider name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group name
ResourceName
This property is required.
Changes to this property will trigger replacement.
string
Resource identifier
ResourceParentName
This property is required.
Changes to this property will trigger replacement.
string
Resource parent identifier
ResourceParentType
This property is required.
Changes to this property will trigger replacement.
string
Resource parent type
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
Resource type
ConfigurationAssignmentName Changes to this property will trigger replacement. string
Configuration assignment name
Filter Pulumi.AzureNative.Maintenance.Inputs.ConfigurationAssignmentFilterProperties
Properties of the configuration assignment
Location string
Location of the resource
MaintenanceConfigurationId string
The maintenance configuration Id
ResourceId string
The unique resourceId
ProviderName
This property is required.
Changes to this property will trigger replacement.
string
Resource provider name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group name
ResourceName
This property is required.
Changes to this property will trigger replacement.
string
Resource identifier
ResourceParentName
This property is required.
Changes to this property will trigger replacement.
string
Resource parent identifier
ResourceParentType
This property is required.
Changes to this property will trigger replacement.
string
Resource parent type
ResourceType
This property is required.
Changes to this property will trigger replacement.
string
Resource type
ConfigurationAssignmentName Changes to this property will trigger replacement. string
Configuration assignment name
Filter ConfigurationAssignmentFilterPropertiesArgs
Properties of the configuration assignment
Location string
Location of the resource
MaintenanceConfigurationId string
The maintenance configuration Id
ResourceId string
The unique resourceId
providerName
This property is required.
Changes to this property will trigger replacement.
String
Resource provider name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Resource group name
resourceName
This property is required.
Changes to this property will trigger replacement.
String
Resource identifier
resourceParentName
This property is required.
Changes to this property will trigger replacement.
String
Resource parent identifier
resourceParentType
This property is required.
Changes to this property will trigger replacement.
String
Resource parent type
resourceType
This property is required.
Changes to this property will trigger replacement.
String
Resource type
configurationAssignmentName Changes to this property will trigger replacement. String
Configuration assignment name
filter ConfigurationAssignmentFilterProperties
Properties of the configuration assignment
location String
Location of the resource
maintenanceConfigurationId String
The maintenance configuration Id
resourceId String
The unique resourceId
providerName
This property is required.
Changes to this property will trigger replacement.
string
Resource provider name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
Resource group name
resourceName
This property is required.
Changes to this property will trigger replacement.
string
Resource identifier
resourceParentName
This property is required.
Changes to this property will trigger replacement.
string
Resource parent identifier
resourceParentType
This property is required.
Changes to this property will trigger replacement.
string
Resource parent type
resourceType
This property is required.
Changes to this property will trigger replacement.
string
Resource type
configurationAssignmentName Changes to this property will trigger replacement. string
Configuration assignment name
filter ConfigurationAssignmentFilterProperties
Properties of the configuration assignment
location string
Location of the resource
maintenanceConfigurationId string
The maintenance configuration Id
resourceId string
The unique resourceId
provider_name
This property is required.
Changes to this property will trigger replacement.
str
Resource provider name
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
Resource group name
resource_name
This property is required.
Changes to this property will trigger replacement.
str
Resource identifier
resource_parent_name
This property is required.
Changes to this property will trigger replacement.
str
Resource parent identifier
resource_parent_type
This property is required.
Changes to this property will trigger replacement.
str
Resource parent type
resource_type
This property is required.
Changes to this property will trigger replacement.
str
Resource type
configuration_assignment_name Changes to this property will trigger replacement. str
Configuration assignment name
filter ConfigurationAssignmentFilterPropertiesArgs
Properties of the configuration assignment
location str
Location of the resource
maintenance_configuration_id str
The maintenance configuration Id
resource_id str
The unique resourceId
providerName
This property is required.
Changes to this property will trigger replacement.
String
Resource provider name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
Resource group name
resourceName
This property is required.
Changes to this property will trigger replacement.
String
Resource identifier
resourceParentName
This property is required.
Changes to this property will trigger replacement.
String
Resource parent identifier
resourceParentType
This property is required.
Changes to this property will trigger replacement.
String
Resource parent type
resourceType
This property is required.
Changes to this property will trigger replacement.
String
Resource type
configurationAssignmentName Changes to this property will trigger replacement. String
Configuration assignment name
filter Property Map
Properties of the configuration assignment
location String
Location of the resource
maintenanceConfigurationId String
The maintenance configuration Id
resourceId String
The unique resourceId

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the resource
SystemData Pulumi.AzureNative.Maintenance.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
Type of the resource
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
Type of the resource
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
Type of the resource
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
Type of the resource
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
Type of the resource
azureApiVersion String
The Azure API version 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

ConfigurationAssignmentFilterProperties
, ConfigurationAssignmentFilterPropertiesArgs

Locations List<string>
List of locations to scope the query to.
OsTypes List<string>
List of allowed operating systems.
ResourceGroups List<string>
List of allowed resource groups.
ResourceTypes List<string>
List of allowed resources.
TagSettings Pulumi.AzureNative.Maintenance.Inputs.TagSettingsProperties
Tag settings for the VM.
Locations []string
List of locations to scope the query to.
OsTypes []string
List of allowed operating systems.
ResourceGroups []string
List of allowed resource groups.
ResourceTypes []string
List of allowed resources.
TagSettings TagSettingsProperties
Tag settings for the VM.
locations List<String>
List of locations to scope the query to.
osTypes List<String>
List of allowed operating systems.
resourceGroups List<String>
List of allowed resource groups.
resourceTypes List<String>
List of allowed resources.
tagSettings TagSettingsProperties
Tag settings for the VM.
locations string[]
List of locations to scope the query to.
osTypes string[]
List of allowed operating systems.
resourceGroups string[]
List of allowed resource groups.
resourceTypes string[]
List of allowed resources.
tagSettings TagSettingsProperties
Tag settings for the VM.
locations Sequence[str]
List of locations to scope the query to.
os_types Sequence[str]
List of allowed operating systems.
resource_groups Sequence[str]
List of allowed resource groups.
resource_types Sequence[str]
List of allowed resources.
tag_settings TagSettingsProperties
Tag settings for the VM.
locations List<String>
List of locations to scope the query to.
osTypes List<String>
List of allowed operating systems.
resourceGroups List<String>
List of allowed resource groups.
resourceTypes List<String>
List of allowed resources.
tagSettings Property Map
Tag settings for the VM.

ConfigurationAssignmentFilterPropertiesResponse
, ConfigurationAssignmentFilterPropertiesResponseArgs

Locations List<string>
List of locations to scope the query to.
OsTypes List<string>
List of allowed operating systems.
ResourceGroups List<string>
List of allowed resource groups.
ResourceTypes List<string>
List of allowed resources.
TagSettings Pulumi.AzureNative.Maintenance.Inputs.TagSettingsPropertiesResponse
Tag settings for the VM.
Locations []string
List of locations to scope the query to.
OsTypes []string
List of allowed operating systems.
ResourceGroups []string
List of allowed resource groups.
ResourceTypes []string
List of allowed resources.
TagSettings TagSettingsPropertiesResponse
Tag settings for the VM.
locations List<String>
List of locations to scope the query to.
osTypes List<String>
List of allowed operating systems.
resourceGroups List<String>
List of allowed resource groups.
resourceTypes List<String>
List of allowed resources.
tagSettings TagSettingsPropertiesResponse
Tag settings for the VM.
locations string[]
List of locations to scope the query to.
osTypes string[]
List of allowed operating systems.
resourceGroups string[]
List of allowed resource groups.
resourceTypes string[]
List of allowed resources.
tagSettings TagSettingsPropertiesResponse
Tag settings for the VM.
locations Sequence[str]
List of locations to scope the query to.
os_types Sequence[str]
List of allowed operating systems.
resource_groups Sequence[str]
List of allowed resource groups.
resource_types Sequence[str]
List of allowed resources.
tag_settings TagSettingsPropertiesResponse
Tag settings for the VM.
locations List<String>
List of locations to scope the query to.
osTypes List<String>
List of allowed operating systems.
resourceGroups List<String>
List of allowed resource groups.
resourceTypes List<String>
List of allowed resources.
tagSettings Property Map
Tag settings for the VM.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
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.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
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.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
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.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

TagOperators
, TagOperatorsArgs

All
All
Any
Any
TagOperatorsAll
All
TagOperatorsAny
Any
All
All
Any
Any
All
All
Any
Any
ALL
All
ANY
Any
"All"
All
"Any"
Any

TagSettingsProperties
, TagSettingsPropertiesArgs

FilterOperator Pulumi.AzureNative.Maintenance.TagOperators
Filter VMs by Any or All specified tags.
Tags Dictionary<string, ImmutableArray<string>>
Dictionary of tags with its list of values.
FilterOperator TagOperators
Filter VMs by Any or All specified tags.
Tags map[string][]string
Dictionary of tags with its list of values.
filterOperator TagOperators
Filter VMs by Any or All specified tags.
tags Map<String,List<String>>
Dictionary of tags with its list of values.
filterOperator TagOperators
Filter VMs by Any or All specified tags.
tags {[key: string]: string[]}
Dictionary of tags with its list of values.
filter_operator TagOperators
Filter VMs by Any or All specified tags.
tags Mapping[str, Sequence[str]]
Dictionary of tags with its list of values.
filterOperator "All" | "Any"
Filter VMs by Any or All specified tags.
tags Map<List<String>>
Dictionary of tags with its list of values.

TagSettingsPropertiesResponse
, TagSettingsPropertiesResponseArgs

FilterOperator string
Filter VMs by Any or All specified tags.
Tags Dictionary<string, ImmutableArray<string>>
Dictionary of tags with its list of values.
FilterOperator string
Filter VMs by Any or All specified tags.
Tags map[string][]string
Dictionary of tags with its list of values.
filterOperator String
Filter VMs by Any or All specified tags.
tags Map<String,List<String>>
Dictionary of tags with its list of values.
filterOperator string
Filter VMs by Any or All specified tags.
tags {[key: string]: string[]}
Dictionary of tags with its list of values.
filter_operator str
Filter VMs by Any or All specified tags.
tags Mapping[str, Sequence[str]]
Dictionary of tags with its list of values.
filterOperator String
Filter VMs by Any or All specified tags.
tags Map<List<String>>
Dictionary of tags with its list of values.

Import

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

$ pulumi import azure-native:maintenance:ConfigurationAssignmentParent workervmPolicy /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceParentType}/{resourceParentName}/{resourceType}/{resourceName}/providers/Microsoft.Maintenance/configurationAssignments/{configurationAssignmentName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0