1. Packages
  2. Azure Native v2
  3. API Docs
  4. guestconfiguration
  5. GuestConfigurationAssignmentsVMSS
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.guestconfiguration.GuestConfigurationAssignmentsVMSS

Explore with Pulumi AI

Guest configuration assignment is an association between a machine and guest configuration. Azure REST API version: 2022-01-25.

Other available API versions: 2024-04-05.

Example Usage

Create or update guest configuration assignment

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

return await Deployment.RunAsync(() => 
{
    var guestConfigurationAssignmentsVMSS = new AzureNative.GuestConfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSS", new()
    {
        Location = "westcentralus",
        Name = "NotInstalledApplicationForWindows",
        Properties = new AzureNative.GuestConfiguration.Inputs.GuestConfigurationAssignmentPropertiesArgs
        {
            Context = "Azure policy",
            GuestConfiguration = new AzureNative.GuestConfiguration.Inputs.GuestConfigurationNavigationArgs
            {
                AssignmentType = AzureNative.GuestConfiguration.AssignmentType.ApplyAndAutoCorrect,
                ConfigurationParameter = new[]
                {
                    new AzureNative.GuestConfiguration.Inputs.ConfigurationParameterArgs
                    {
                        Name = "[InstalledApplication]NotInstalledApplicationResource1;Name",
                        Value = "NotePad,sql",
                    },
                },
                ContentHash = "123contenthash",
                ContentUri = "https://thisisfake/pacakge",
                Name = "NotInstalledApplicationForWindows",
                Version = "1.0.0.3",
            },
        },
        ResourceGroupName = "myResourceGroupName",
        VmssName = "myVMSSName",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := guestconfiguration.NewGuestConfigurationAssignmentsVMSS(ctx, "guestConfigurationAssignmentsVMSS", &guestconfiguration.GuestConfigurationAssignmentsVMSSArgs{
			Location: pulumi.String("westcentralus"),
			Name:     pulumi.String("NotInstalledApplicationForWindows"),
			Properties: &guestconfiguration.GuestConfigurationAssignmentPropertiesArgs{
				Context: pulumi.String("Azure policy"),
				GuestConfiguration: &guestconfiguration.GuestConfigurationNavigationArgs{
					AssignmentType: pulumi.String(guestconfiguration.AssignmentTypeApplyAndAutoCorrect),
					ConfigurationParameter: guestconfiguration.ConfigurationParameterArray{
						&guestconfiguration.ConfigurationParameterArgs{
							Name:  pulumi.String("[InstalledApplication]NotInstalledApplicationResource1;Name"),
							Value: pulumi.String("NotePad,sql"),
						},
					},
					ContentHash: pulumi.String("123contenthash"),
					ContentUri:  pulumi.String("https://thisisfake/pacakge"),
					Name:        pulumi.String("NotInstalledApplicationForWindows"),
					Version:     pulumi.String("1.0.0.3"),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroupName"),
			VmssName:          pulumi.String("myVMSSName"),
		})
		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.guestconfiguration.GuestConfigurationAssignmentsVMSS;
import com.pulumi.azurenative.guestconfiguration.GuestConfigurationAssignmentsVMSSArgs;
import com.pulumi.azurenative.guestconfiguration.inputs.GuestConfigurationAssignmentPropertiesArgs;
import com.pulumi.azurenative.guestconfiguration.inputs.GuestConfigurationNavigationArgs;
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 guestConfigurationAssignmentsVMSS = new GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSS", GuestConfigurationAssignmentsVMSSArgs.builder()
            .location("westcentralus")
            .name("NotInstalledApplicationForWindows")
            .properties(GuestConfigurationAssignmentPropertiesArgs.builder()
                .context("Azure policy")
                .guestConfiguration(GuestConfigurationNavigationArgs.builder()
                    .assignmentType("ApplyAndAutoCorrect")
                    .configurationParameter(ConfigurationParameterArgs.builder()
                        .name("[InstalledApplication]NotInstalledApplicationResource1;Name")
                        .value("NotePad,sql")
                        .build())
                    .contentHash("123contenthash")
                    .contentUri("https://thisisfake/pacakge")
                    .name("NotInstalledApplicationForWindows")
                    .version("1.0.0.3")
                    .build())
                .build())
            .resourceGroupName("myResourceGroupName")
            .vmssName("myVMSSName")
            .build());

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

const guestConfigurationAssignmentsVMSS = new azure_native.guestconfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSS", {
    location: "westcentralus",
    name: "NotInstalledApplicationForWindows",
    properties: {
        context: "Azure policy",
        guestConfiguration: {
            assignmentType: azure_native.guestconfiguration.AssignmentType.ApplyAndAutoCorrect,
            configurationParameter: [{
                name: "[InstalledApplication]NotInstalledApplicationResource1;Name",
                value: "NotePad,sql",
            }],
            contentHash: "123contenthash",
            contentUri: "https://thisisfake/pacakge",
            name: "NotInstalledApplicationForWindows",
            version: "1.0.0.3",
        },
    },
    resourceGroupName: "myResourceGroupName",
    vmssName: "myVMSSName",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

guest_configuration_assignments_vmss = azure_native.guestconfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSS",
    location="westcentralus",
    name="NotInstalledApplicationForWindows",
    properties={
        "context": "Azure policy",
        "guest_configuration": {
            "assignment_type": azure_native.guestconfiguration.AssignmentType.APPLY_AND_AUTO_CORRECT,
            "configuration_parameter": [{
                "name": "[InstalledApplication]NotInstalledApplicationResource1;Name",
                "value": "NotePad,sql",
            }],
            "content_hash": "123contenthash",
            "content_uri": "https://thisisfake/pacakge",
            "name": "NotInstalledApplicationForWindows",
            "version": "1.0.0.3",
        },
    },
    resource_group_name="myResourceGroupName",
    vmss_name="myVMSSName")
Copy
resources:
  guestConfigurationAssignmentsVMSS:
    type: azure-native:guestconfiguration:GuestConfigurationAssignmentsVMSS
    properties:
      location: westcentralus
      name: NotInstalledApplicationForWindows
      properties:
        context: Azure policy
        guestConfiguration:
          assignmentType: ApplyAndAutoCorrect
          configurationParameter:
            - name: '[InstalledApplication]NotInstalledApplicationResource1;Name'
              value: NotePad,sql
          contentHash: 123contenthash
          contentUri: https://thisisfake/pacakge
          name: NotInstalledApplicationForWindows
          version: 1.0.0.3
      resourceGroupName: myResourceGroupName
      vmssName: myVMSSName
Copy

Create GuestConfigurationAssignmentsVMSS Resource

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

Constructor syntax

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

@overload
def GuestConfigurationAssignmentsVMSS(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      resource_group_name: Optional[str] = None,
                                      vmss_name: Optional[str] = None,
                                      location: Optional[str] = None,
                                      name: Optional[str] = None,
                                      properties: Optional[GuestConfigurationAssignmentPropertiesArgs] = None)
func NewGuestConfigurationAssignmentsVMSS(ctx *Context, name string, args GuestConfigurationAssignmentsVMSSArgs, opts ...ResourceOption) (*GuestConfigurationAssignmentsVMSS, error)
public GuestConfigurationAssignmentsVMSS(string name, GuestConfigurationAssignmentsVMSSArgs args, CustomResourceOptions? opts = null)
public GuestConfigurationAssignmentsVMSS(String name, GuestConfigurationAssignmentsVMSSArgs args)
public GuestConfigurationAssignmentsVMSS(String name, GuestConfigurationAssignmentsVMSSArgs args, CustomResourceOptions options)
type: azure-native:guestconfiguration:GuestConfigurationAssignmentsVMSS
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. GuestConfigurationAssignmentsVMSSArgs
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. GuestConfigurationAssignmentsVMSSArgs
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. GuestConfigurationAssignmentsVMSSArgs
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. GuestConfigurationAssignmentsVMSSArgs
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. GuestConfigurationAssignmentsVMSSArgs
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 guestConfigurationAssignmentsVMSSResource = new AzureNative.Guestconfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSSResource", new()
{
    ResourceGroupName = "string",
    VmssName = "string",
    Location = "string",
    Name = "string",
    Properties = 
    {
        { "context", "string" },
        { "guestConfiguration", 
        {
            { "assignmentType", "string" },
            { "configurationParameter", new[]
            {
                
                {
                    { "name", "string" },
                    { "value", "string" },
                },
            } },
            { "configurationProtectedParameter", new[]
            {
                
                {
                    { "name", "string" },
                    { "value", "string" },
                },
            } },
            { "contentHash", "string" },
            { "contentUri", "string" },
            { "kind", "string" },
            { "name", "string" },
            { "version", "string" },
        } },
    },
});
Copy
example, err := guestconfiguration.NewGuestConfigurationAssignmentsVMSS(ctx, "guestConfigurationAssignmentsVMSSResource", &guestconfiguration.GuestConfigurationAssignmentsVMSSArgs{
	ResourceGroupName: "string",
	VmssName:          "string",
	Location:          "string",
	Name:              "string",
	Properties: map[string]interface{}{
		"context": "string",
		"guestConfiguration": map[string]interface{}{
			"assignmentType": "string",
			"configurationParameter": []map[string]interface{}{
				map[string]interface{}{
					"name":  "string",
					"value": "string",
				},
			},
			"configurationProtectedParameter": []map[string]interface{}{
				map[string]interface{}{
					"name":  "string",
					"value": "string",
				},
			},
			"contentHash": "string",
			"contentUri":  "string",
			"kind":        "string",
			"name":        "string",
			"version":     "string",
		},
	},
})
Copy
var guestConfigurationAssignmentsVMSSResource = new GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSSResource", GuestConfigurationAssignmentsVMSSArgs.builder()
    .resourceGroupName("string")
    .vmssName("string")
    .location("string")
    .name("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
guest_configuration_assignments_vmss_resource = azure_native.guestconfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSSResource",
    resource_group_name=string,
    vmss_name=string,
    location=string,
    name=string,
    properties={
        context: string,
        guestConfiguration: {
            assignmentType: string,
            configurationParameter: [{
                name: string,
                value: string,
            }],
            configurationProtectedParameter: [{
                name: string,
                value: string,
            }],
            contentHash: string,
            contentUri: string,
            kind: string,
            name: string,
            version: string,
        },
    })
Copy
const guestConfigurationAssignmentsVMSSResource = new azure_native.guestconfiguration.GuestConfigurationAssignmentsVMSS("guestConfigurationAssignmentsVMSSResource", {
    resourceGroupName: "string",
    vmssName: "string",
    location: "string",
    name: "string",
    properties: {
        context: "string",
        guestConfiguration: {
            assignmentType: "string",
            configurationParameter: [{
                name: "string",
                value: "string",
            }],
            configurationProtectedParameter: [{
                name: "string",
                value: "string",
            }],
            contentHash: "string",
            contentUri: "string",
            kind: "string",
            name: "string",
            version: "string",
        },
    },
});
Copy
type: azure-native:guestconfiguration:GuestConfigurationAssignmentsVMSS
properties:
    location: string
    name: string
    properties:
        context: string
        guestConfiguration:
            assignmentType: string
            configurationParameter:
                - name: string
                  value: string
            configurationProtectedParameter:
                - name: string
                  value: string
            contentHash: string
            contentUri: string
            kind: string
            name: string
            version: string
    resourceGroupName: string
    vmssName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
VmssName
This property is required.
Changes to this property will trigger replacement.
string
The name of the virtual machine scale set.
Location string
Region where the VM is located.
Name string
Name of the guest configuration assignment.
Properties Pulumi.AzureNative.GuestConfiguration.Inputs.GuestConfigurationAssignmentProperties
Properties of the Guest configuration assignment.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
VmssName
This property is required.
Changes to this property will trigger replacement.
string
The name of the virtual machine scale set.
Location string
Region where the VM is located.
Name string
Name of the guest configuration assignment.
Properties GuestConfigurationAssignmentPropertiesArgs
Properties of the Guest configuration assignment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
vmssName
This property is required.
Changes to this property will trigger replacement.
String
The name of the virtual machine scale set.
location String
Region where the VM is located.
name String
Name of the guest configuration assignment.
properties GuestConfigurationAssignmentProperties
Properties of the Guest configuration assignment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name.
vmssName
This property is required.
Changes to this property will trigger replacement.
string
The name of the virtual machine scale set.
location string
Region where the VM is located.
name string
Name of the guest configuration assignment.
properties GuestConfigurationAssignmentProperties
Properties of the Guest configuration assignment.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name.
vmss_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the virtual machine scale set.
location str
Region where the VM is located.
name str
Name of the guest configuration assignment.
properties GuestConfigurationAssignmentPropertiesArgs
Properties of the Guest configuration assignment.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name.
vmssName
This property is required.
Changes to this property will trigger replacement.
String
The name of the virtual machine scale set.
location String
Region where the VM is located.
name String
Name of the guest configuration assignment.
properties Property Map
Properties of the Guest configuration assignment.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
SystemData Pulumi.AzureNative.GuestConfiguration.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource.
Id string
The provider-assigned unique ID for this managed resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource.
id string
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource.
id str
The provider-assigned unique ID for this managed resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource.
id String
The provider-assigned unique ID for this managed resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource.

Supporting Types

AssignmentInfoResponse
, AssignmentInfoResponseArgs

Name This property is required. string
Name of the guest configuration assignment.
Configuration Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationInfoResponse
Information about the configuration.
Name This property is required. string
Name of the guest configuration assignment.
Configuration ConfigurationInfoResponse
Information about the configuration.
name This property is required. String
Name of the guest configuration assignment.
configuration ConfigurationInfoResponse
Information about the configuration.
name This property is required. string
Name of the guest configuration assignment.
configuration ConfigurationInfoResponse
Information about the configuration.
name This property is required. str
Name of the guest configuration assignment.
configuration ConfigurationInfoResponse
Information about the configuration.
name This property is required. String
Name of the guest configuration assignment.
configuration Property Map
Information about the configuration.

AssignmentReportResourceComplianceReasonResponse
, AssignmentReportResourceComplianceReasonResponseArgs

Code This property is required. string
Code for the compliance of the guest configuration assignment resource.
Phrase This property is required. string
Reason for the compliance of the guest configuration assignment resource.
Code This property is required. string
Code for the compliance of the guest configuration assignment resource.
Phrase This property is required. string
Reason for the compliance of the guest configuration assignment resource.
code This property is required. String
Code for the compliance of the guest configuration assignment resource.
phrase This property is required. String
Reason for the compliance of the guest configuration assignment resource.
code This property is required. string
Code for the compliance of the guest configuration assignment resource.
phrase This property is required. string
Reason for the compliance of the guest configuration assignment resource.
code This property is required. str
Code for the compliance of the guest configuration assignment resource.
phrase This property is required. str
Reason for the compliance of the guest configuration assignment resource.
code This property is required. String
Code for the compliance of the guest configuration assignment resource.
phrase This property is required. String
Reason for the compliance of the guest configuration assignment resource.

AssignmentReportResourceResponse
, AssignmentReportResourceResponseArgs

ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
Properties This property is required. object
Properties of a guest configuration assignment resource.
ResourceId This property is required. string
Name of the guest configuration assignment resource setting.
Reasons List<Pulumi.AzureNative.GuestConfiguration.Inputs.AssignmentReportResourceComplianceReasonResponse>
Compliance reason and reason code for a resource.
ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
Properties This property is required. interface{}
Properties of a guest configuration assignment resource.
ResourceId This property is required. string
Name of the guest configuration assignment resource setting.
Reasons []AssignmentReportResourceComplianceReasonResponse
Compliance reason and reason code for a resource.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
properties This property is required. Object
Properties of a guest configuration assignment resource.
resourceId This property is required. String
Name of the guest configuration assignment resource setting.
reasons List<AssignmentReportResourceComplianceReasonResponse>
Compliance reason and reason code for a resource.
complianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
properties This property is required. any
Properties of a guest configuration assignment resource.
resourceId This property is required. string
Name of the guest configuration assignment resource setting.
reasons AssignmentReportResourceComplianceReasonResponse[]
Compliance reason and reason code for a resource.
compliance_status This property is required. str
A value indicating compliance status of the machine for the assigned guest configuration.
properties This property is required. Any
Properties of a guest configuration assignment resource.
resource_id This property is required. str
Name of the guest configuration assignment resource setting.
reasons Sequence[AssignmentReportResourceComplianceReasonResponse]
Compliance reason and reason code for a resource.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
properties This property is required. Any
Properties of a guest configuration assignment resource.
resourceId This property is required. String
Name of the guest configuration assignment resource setting.
reasons List<Property Map>
Compliance reason and reason code for a resource.

AssignmentReportResponse
, AssignmentReportResponseArgs

ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
EndTime This property is required. string
End date and time of the guest configuration assignment compliance status check.
Id This property is required. string
ARM resource id of the report for the guest configuration assignment.
OperationType This property is required. string
Type of report, Consistency or Initial
ReportId This property is required. string
GUID that identifies the guest configuration assignment report under a subscription, resource group.
StartTime This property is required. string
Start date and time of the guest configuration assignment compliance status check.
Assignment Pulumi.AzureNative.GuestConfiguration.Inputs.AssignmentInfoResponse
Configuration details of the guest configuration assignment.
Resources List<Pulumi.AzureNative.GuestConfiguration.Inputs.AssignmentReportResourceResponse>
The list of resources for which guest configuration assignment compliance is checked.
Vm Pulumi.AzureNative.GuestConfiguration.Inputs.VMInfoResponse
Information about the VM.
ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
EndTime This property is required. string
End date and time of the guest configuration assignment compliance status check.
Id This property is required. string
ARM resource id of the report for the guest configuration assignment.
OperationType This property is required. string
Type of report, Consistency or Initial
ReportId This property is required. string
GUID that identifies the guest configuration assignment report under a subscription, resource group.
StartTime This property is required. string
Start date and time of the guest configuration assignment compliance status check.
Assignment AssignmentInfoResponse
Configuration details of the guest configuration assignment.
Resources []AssignmentReportResourceResponse
The list of resources for which guest configuration assignment compliance is checked.
Vm VMInfoResponse
Information about the VM.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
endTime This property is required. String
End date and time of the guest configuration assignment compliance status check.
id This property is required. String
ARM resource id of the report for the guest configuration assignment.
operationType This property is required. String
Type of report, Consistency or Initial
reportId This property is required. String
GUID that identifies the guest configuration assignment report under a subscription, resource group.
startTime This property is required. String
Start date and time of the guest configuration assignment compliance status check.
assignment AssignmentInfoResponse
Configuration details of the guest configuration assignment.
resources List<AssignmentReportResourceResponse>
The list of resources for which guest configuration assignment compliance is checked.
vm VMInfoResponse
Information about the VM.
complianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
endTime This property is required. string
End date and time of the guest configuration assignment compliance status check.
id This property is required. string
ARM resource id of the report for the guest configuration assignment.
operationType This property is required. string
Type of report, Consistency or Initial
reportId This property is required. string
GUID that identifies the guest configuration assignment report under a subscription, resource group.
startTime This property is required. string
Start date and time of the guest configuration assignment compliance status check.
assignment AssignmentInfoResponse
Configuration details of the guest configuration assignment.
resources AssignmentReportResourceResponse[]
The list of resources for which guest configuration assignment compliance is checked.
vm VMInfoResponse
Information about the VM.
compliance_status This property is required. str
A value indicating compliance status of the machine for the assigned guest configuration.
end_time This property is required. str
End date and time of the guest configuration assignment compliance status check.
id This property is required. str
ARM resource id of the report for the guest configuration assignment.
operation_type This property is required. str
Type of report, Consistency or Initial
report_id This property is required. str
GUID that identifies the guest configuration assignment report under a subscription, resource group.
start_time This property is required. str
Start date and time of the guest configuration assignment compliance status check.
assignment AssignmentInfoResponse
Configuration details of the guest configuration assignment.
resources Sequence[AssignmentReportResourceResponse]
The list of resources for which guest configuration assignment compliance is checked.
vm VMInfoResponse
Information about the VM.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
endTime This property is required. String
End date and time of the guest configuration assignment compliance status check.
id This property is required. String
ARM resource id of the report for the guest configuration assignment.
operationType This property is required. String
Type of report, Consistency or Initial
reportId This property is required. String
GUID that identifies the guest configuration assignment report under a subscription, resource group.
startTime This property is required. String
Start date and time of the guest configuration assignment compliance status check.
assignment Property Map
Configuration details of the guest configuration assignment.
resources List<Property Map>
The list of resources for which guest configuration assignment compliance is checked.
vm Property Map
Information about the VM.

AssignmentType
, AssignmentTypeArgs

Audit
Audit
DeployAndAutoCorrect
DeployAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndMonitor
ApplyAndMonitor
AssignmentTypeAudit
Audit
AssignmentTypeDeployAndAutoCorrect
DeployAndAutoCorrect
AssignmentTypeApplyAndAutoCorrect
ApplyAndAutoCorrect
AssignmentTypeApplyAndMonitor
ApplyAndMonitor
Audit
Audit
DeployAndAutoCorrect
DeployAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndMonitor
ApplyAndMonitor
Audit
Audit
DeployAndAutoCorrect
DeployAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndAutoCorrect
ApplyAndMonitor
ApplyAndMonitor
AUDIT
Audit
DEPLOY_AND_AUTO_CORRECT
DeployAndAutoCorrect
APPLY_AND_AUTO_CORRECT
ApplyAndAutoCorrect
APPLY_AND_MONITOR
ApplyAndMonitor
"Audit"
Audit
"DeployAndAutoCorrect"
DeployAndAutoCorrect
"ApplyAndAutoCorrect"
ApplyAndAutoCorrect
"ApplyAndMonitor"
ApplyAndMonitor

ConfigurationInfoResponse
, ConfigurationInfoResponseArgs

Name This property is required. string
Name of the configuration.
Version This property is required. string
Version of the configuration.
Name This property is required. string
Name of the configuration.
Version This property is required. string
Version of the configuration.
name This property is required. String
Name of the configuration.
version This property is required. String
Version of the configuration.
name This property is required. string
Name of the configuration.
version This property is required. string
Version of the configuration.
name This property is required. str
Name of the configuration.
version This property is required. str
Version of the configuration.
name This property is required. String
Name of the configuration.
version This property is required. String
Version of the configuration.

ConfigurationParameter
, ConfigurationParameterArgs

Name string
Name of the configuration parameter.
Value string
Value of the configuration parameter.
Name string
Name of the configuration parameter.
Value string
Value of the configuration parameter.
name String
Name of the configuration parameter.
value String
Value of the configuration parameter.
name string
Name of the configuration parameter.
value string
Value of the configuration parameter.
name str
Name of the configuration parameter.
value str
Value of the configuration parameter.
name String
Name of the configuration parameter.
value String
Value of the configuration parameter.

ConfigurationParameterResponse
, ConfigurationParameterResponseArgs

Name string
Name of the configuration parameter.
Value string
Value of the configuration parameter.
Name string
Name of the configuration parameter.
Value string
Value of the configuration parameter.
name String
Name of the configuration parameter.
value String
Value of the configuration parameter.
name string
Name of the configuration parameter.
value string
Value of the configuration parameter.
name str
Name of the configuration parameter.
value str
Value of the configuration parameter.
name String
Name of the configuration parameter.
value String
Value of the configuration parameter.

ConfigurationSettingResponse
, ConfigurationSettingResponseArgs

ActionAfterReboot This property is required. string
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
AllowModuleOverwrite This property is required. bool
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
ConfigurationMode This property is required. string
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
ConfigurationModeFrequencyMins This property is required. double
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
RebootIfNeeded This property is required. bool
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
RefreshFrequencyMins This property is required. double
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.
ActionAfterReboot This property is required. string
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
AllowModuleOverwrite This property is required. bool
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
ConfigurationMode This property is required. string
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
ConfigurationModeFrequencyMins This property is required. float64
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
RebootIfNeeded This property is required. bool
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
RefreshFrequencyMins This property is required. float64
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.
actionAfterReboot This property is required. String
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
allowModuleOverwrite This property is required. Boolean
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
configurationMode This property is required. String
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
configurationModeFrequencyMins This property is required. Double
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
rebootIfNeeded This property is required. Boolean
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
refreshFrequencyMins This property is required. Double
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.
actionAfterReboot This property is required. string
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
allowModuleOverwrite This property is required. boolean
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
configurationMode This property is required. string
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
configurationModeFrequencyMins This property is required. number
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
rebootIfNeeded This property is required. boolean
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
refreshFrequencyMins This property is required. number
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.
action_after_reboot This property is required. str
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
allow_module_overwrite This property is required. bool
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
configuration_mode This property is required. str
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
configuration_mode_frequency_mins This property is required. float
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
reboot_if_needed This property is required. bool
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
refresh_frequency_mins This property is required. float
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.
actionAfterReboot This property is required. String
Specifies what happens after a reboot during the application of a configuration. The possible values are ContinueConfiguration and StopConfiguration
allowModuleOverwrite This property is required. Boolean
If true - new configurations downloaded from the pull service are allowed to overwrite the old ones on the target node. Otherwise, false
configurationMode This property is required. String
Specifies how the LCM(Local Configuration Manager) actually applies the configuration to the target nodes. Possible values are ApplyOnly, ApplyAndMonitor, and ApplyAndAutoCorrect.
configurationModeFrequencyMins This property is required. Number
How often, in minutes, the current configuration is checked and applied. This property is ignored if the ConfigurationMode property is set to ApplyOnly. The default value is 15.
rebootIfNeeded This property is required. Boolean
Set this to true to automatically reboot the node after a configuration that requires reboot is applied. Otherwise, you will have to manually reboot the node for any configuration that requires it. The default value is false. To use this setting when a reboot condition is enacted by something other than DSC (such as Windows Installer), combine this setting with the xPendingReboot module.
refreshFrequencyMins This property is required. Number
The time interval, in minutes, at which the LCM checks a pull service to get updated configurations. This value is ignored if the LCM is not configured in pull mode. The default value is 30.

GuestConfigurationAssignmentProperties
, GuestConfigurationAssignmentPropertiesArgs

Context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
GuestConfiguration Pulumi.AzureNative.GuestConfiguration.Inputs.GuestConfigurationNavigation
The guest configuration to assign.
Context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
GuestConfiguration GuestConfigurationNavigation
The guest configuration to assign.
context String
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration GuestConfigurationNavigation
The guest configuration to assign.
context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration GuestConfigurationNavigation
The guest configuration to assign.
context str
The source which initiated the guest configuration assignment. Ex: Azure Policy
guest_configuration GuestConfigurationNavigation
The guest configuration to assign.
context String
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration Property Map
The guest configuration to assign.

GuestConfigurationAssignmentPropertiesResponse
, GuestConfigurationAssignmentPropertiesResponseArgs

AssignmentHash This property is required. string
Combined hash of the configuration package and parameters.
ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
LastComplianceStatusChecked This property is required. string
Date and time when last compliance status was checked.
LatestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
ParameterHash This property is required. string
parameter hash for the guest configuration assignment.
ProvisioningState This property is required. string
The provisioning state, which only appears in the response.
ResourceType This property is required. string
Type of the resource - VMSS / VM
TargetResourceId This property is required. string
VM resource Id.
Context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
GuestConfiguration Pulumi.AzureNative.GuestConfiguration.Inputs.GuestConfigurationNavigationResponse
The guest configuration to assign.
LatestAssignmentReport Pulumi.AzureNative.GuestConfiguration.Inputs.AssignmentReportResponse
Last reported guest configuration assignment report.
VmssVMList List<Pulumi.AzureNative.GuestConfiguration.Inputs.VMSSVMInfoResponse>
The list of VM Compliance data for VMSS
AssignmentHash This property is required. string
Combined hash of the configuration package and parameters.
ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
LastComplianceStatusChecked This property is required. string
Date and time when last compliance status was checked.
LatestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
ParameterHash This property is required. string
parameter hash for the guest configuration assignment.
ProvisioningState This property is required. string
The provisioning state, which only appears in the response.
ResourceType This property is required. string
Type of the resource - VMSS / VM
TargetResourceId This property is required. string
VM resource Id.
Context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
GuestConfiguration GuestConfigurationNavigationResponse
The guest configuration to assign.
LatestAssignmentReport AssignmentReportResponse
Last reported guest configuration assignment report.
VmssVMList []VMSSVMInfoResponse
The list of VM Compliance data for VMSS
assignmentHash This property is required. String
Combined hash of the configuration package and parameters.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceStatusChecked This property is required. String
Date and time when last compliance status was checked.
latestReportId This property is required. String
Id of the latest report for the guest configuration assignment.
parameterHash This property is required. String
parameter hash for the guest configuration assignment.
provisioningState This property is required. String
The provisioning state, which only appears in the response.
resourceType This property is required. String
Type of the resource - VMSS / VM
targetResourceId This property is required. String
VM resource Id.
context String
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration GuestConfigurationNavigationResponse
The guest configuration to assign.
latestAssignmentReport AssignmentReportResponse
Last reported guest configuration assignment report.
vmssVMList List<VMSSVMInfoResponse>
The list of VM Compliance data for VMSS
assignmentHash This property is required. string
Combined hash of the configuration package and parameters.
complianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceStatusChecked This property is required. string
Date and time when last compliance status was checked.
latestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
parameterHash This property is required. string
parameter hash for the guest configuration assignment.
provisioningState This property is required. string
The provisioning state, which only appears in the response.
resourceType This property is required. string
Type of the resource - VMSS / VM
targetResourceId This property is required. string
VM resource Id.
context string
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration GuestConfigurationNavigationResponse
The guest configuration to assign.
latestAssignmentReport AssignmentReportResponse
Last reported guest configuration assignment report.
vmssVMList VMSSVMInfoResponse[]
The list of VM Compliance data for VMSS
assignment_hash This property is required. str
Combined hash of the configuration package and parameters.
compliance_status This property is required. str
A value indicating compliance status of the machine for the assigned guest configuration.
last_compliance_status_checked This property is required. str
Date and time when last compliance status was checked.
latest_report_id This property is required. str
Id of the latest report for the guest configuration assignment.
parameter_hash This property is required. str
parameter hash for the guest configuration assignment.
provisioning_state This property is required. str
The provisioning state, which only appears in the response.
resource_type This property is required. str
Type of the resource - VMSS / VM
target_resource_id This property is required. str
VM resource Id.
context str
The source which initiated the guest configuration assignment. Ex: Azure Policy
guest_configuration GuestConfigurationNavigationResponse
The guest configuration to assign.
latest_assignment_report AssignmentReportResponse
Last reported guest configuration assignment report.
vmss_vm_list Sequence[VMSSVMInfoResponse]
The list of VM Compliance data for VMSS
assignmentHash This property is required. String
Combined hash of the configuration package and parameters.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceStatusChecked This property is required. String
Date and time when last compliance status was checked.
latestReportId This property is required. String
Id of the latest report for the guest configuration assignment.
parameterHash This property is required. String
parameter hash for the guest configuration assignment.
provisioningState This property is required. String
The provisioning state, which only appears in the response.
resourceType This property is required. String
Type of the resource - VMSS / VM
targetResourceId This property is required. String
VM resource Id.
context String
The source which initiated the guest configuration assignment. Ex: Azure Policy
guestConfiguration Property Map
The guest configuration to assign.
latestAssignmentReport Property Map
Last reported guest configuration assignment report.
vmssVMList List<Property Map>
The list of VM Compliance data for VMSS

GuestConfigurationNavigation
, GuestConfigurationNavigationArgs

AssignmentType string | Pulumi.AzureNative.GuestConfiguration.AssignmentType
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
ConfigurationParameter List<Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationParameter>
The configuration parameters for the guest configuration.
ConfigurationProtectedParameter List<Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationParameter>
The protected configuration parameters for the guest configuration.
ContentHash string
Combined hash of the guest configuration package and configuration parameters.
ContentUri string
Uri of the storage where guest configuration package is uploaded.
Kind string | Pulumi.AzureNative.GuestConfiguration.Kind
Kind of the guest configuration. For example:DSC
Name string
Name of the guest configuration.
Version string
Version of the guest configuration.
AssignmentType string | AssignmentType
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
ConfigurationParameter []ConfigurationParameter
The configuration parameters for the guest configuration.
ConfigurationProtectedParameter []ConfigurationParameter
The protected configuration parameters for the guest configuration.
ContentHash string
Combined hash of the guest configuration package and configuration parameters.
ContentUri string
Uri of the storage where guest configuration package is uploaded.
Kind string | Kind
Kind of the guest configuration. For example:DSC
Name string
Name of the guest configuration.
Version string
Version of the guest configuration.
assignmentType String | AssignmentType
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter List<ConfigurationParameter>
The configuration parameters for the guest configuration.
configurationProtectedParameter List<ConfigurationParameter>
The protected configuration parameters for the guest configuration.
contentHash String
Combined hash of the guest configuration package and configuration parameters.
contentUri String
Uri of the storage where guest configuration package is uploaded.
kind String | Kind
Kind of the guest configuration. For example:DSC
name String
Name of the guest configuration.
version String
Version of the guest configuration.
assignmentType string | AssignmentType
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter ConfigurationParameter[]
The configuration parameters for the guest configuration.
configurationProtectedParameter ConfigurationParameter[]
The protected configuration parameters for the guest configuration.
contentHash string
Combined hash of the guest configuration package and configuration parameters.
contentUri string
Uri of the storage where guest configuration package is uploaded.
kind string | Kind
Kind of the guest configuration. For example:DSC
name string
Name of the guest configuration.
version string
Version of the guest configuration.
assignment_type str | AssignmentType
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configuration_parameter Sequence[ConfigurationParameter]
The configuration parameters for the guest configuration.
configuration_protected_parameter Sequence[ConfigurationParameter]
The protected configuration parameters for the guest configuration.
content_hash str
Combined hash of the guest configuration package and configuration parameters.
content_uri str
Uri of the storage where guest configuration package is uploaded.
kind str | Kind
Kind of the guest configuration. For example:DSC
name str
Name of the guest configuration.
version str
Version of the guest configuration.
assignmentType String | "Audit" | "DeployAndAutoCorrect" | "ApplyAndAutoCorrect" | "ApplyAndMonitor"
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter List<Property Map>
The configuration parameters for the guest configuration.
configurationProtectedParameter List<Property Map>
The protected configuration parameters for the guest configuration.
contentHash String
Combined hash of the guest configuration package and configuration parameters.
contentUri String
Uri of the storage where guest configuration package is uploaded.
kind String | "DSC"
Kind of the guest configuration. For example:DSC
name String
Name of the guest configuration.
version String
Version of the guest configuration.

GuestConfigurationNavigationResponse
, GuestConfigurationNavigationResponseArgs

AssignmentSource This property is required. string
Specifies the origin of the configuration.
ConfigurationSetting This property is required. Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationSettingResponse
The configuration setting for the guest configuration.
ContentType This property is required. string
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
AssignmentType string
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
ConfigurationParameter List<Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationParameterResponse>
The configuration parameters for the guest configuration.
ConfigurationProtectedParameter List<Pulumi.AzureNative.GuestConfiguration.Inputs.ConfigurationParameterResponse>
The protected configuration parameters for the guest configuration.
ContentHash string
Combined hash of the guest configuration package and configuration parameters.
ContentUri string
Uri of the storage where guest configuration package is uploaded.
Kind string
Kind of the guest configuration. For example:DSC
Name string
Name of the guest configuration.
Version string
Version of the guest configuration.
AssignmentSource This property is required. string
Specifies the origin of the configuration.
ConfigurationSetting This property is required. ConfigurationSettingResponse
The configuration setting for the guest configuration.
ContentType This property is required. string
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
AssignmentType string
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
ConfigurationParameter []ConfigurationParameterResponse
The configuration parameters for the guest configuration.
ConfigurationProtectedParameter []ConfigurationParameterResponse
The protected configuration parameters for the guest configuration.
ContentHash string
Combined hash of the guest configuration package and configuration parameters.
ContentUri string
Uri of the storage where guest configuration package is uploaded.
Kind string
Kind of the guest configuration. For example:DSC
Name string
Name of the guest configuration.
Version string
Version of the guest configuration.
assignmentSource This property is required. String
Specifies the origin of the configuration.
configurationSetting This property is required. ConfigurationSettingResponse
The configuration setting for the guest configuration.
contentType This property is required. String
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
assignmentType String
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter List<ConfigurationParameterResponse>
The configuration parameters for the guest configuration.
configurationProtectedParameter List<ConfigurationParameterResponse>
The protected configuration parameters for the guest configuration.
contentHash String
Combined hash of the guest configuration package and configuration parameters.
contentUri String
Uri of the storage where guest configuration package is uploaded.
kind String
Kind of the guest configuration. For example:DSC
name String
Name of the guest configuration.
version String
Version of the guest configuration.
assignmentSource This property is required. string
Specifies the origin of the configuration.
configurationSetting This property is required. ConfigurationSettingResponse
The configuration setting for the guest configuration.
contentType This property is required. string
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
assignmentType string
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter ConfigurationParameterResponse[]
The configuration parameters for the guest configuration.
configurationProtectedParameter ConfigurationParameterResponse[]
The protected configuration parameters for the guest configuration.
contentHash string
Combined hash of the guest configuration package and configuration parameters.
contentUri string
Uri of the storage where guest configuration package is uploaded.
kind string
Kind of the guest configuration. For example:DSC
name string
Name of the guest configuration.
version string
Version of the guest configuration.
assignment_source This property is required. str
Specifies the origin of the configuration.
configuration_setting This property is required. ConfigurationSettingResponse
The configuration setting for the guest configuration.
content_type This property is required. str
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
assignment_type str
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configuration_parameter Sequence[ConfigurationParameterResponse]
The configuration parameters for the guest configuration.
configuration_protected_parameter Sequence[ConfigurationParameterResponse]
The protected configuration parameters for the guest configuration.
content_hash str
Combined hash of the guest configuration package and configuration parameters.
content_uri str
Uri of the storage where guest configuration package is uploaded.
kind str
Kind of the guest configuration. For example:DSC
name str
Name of the guest configuration.
version str
Version of the guest configuration.
assignmentSource This property is required. String
Specifies the origin of the configuration.
configurationSetting This property is required. Property Map
The configuration setting for the guest configuration.
contentType This property is required. String
Specifies the content type of the configuration. Possible values could be Builtin or Custom.
assignmentType String
Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
configurationParameter List<Property Map>
The configuration parameters for the guest configuration.
configurationProtectedParameter List<Property Map>
The protected configuration parameters for the guest configuration.
contentHash String
Combined hash of the guest configuration package and configuration parameters.
contentUri String
Uri of the storage where guest configuration package is uploaded.
kind String
Kind of the guest configuration. For example:DSC
name String
Name of the guest configuration.
version String
Version of the guest configuration.

Kind
, KindArgs

DSC
DSC
KindDSC
DSC
DSC
DSC
DSC
DSC
DSC
DSC
"DSC"
DSC

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.

VMInfoResponse
, VMInfoResponseArgs

Id This property is required. string
Azure resource Id of the VM.
Uuid This property is required. string
UUID(Universally Unique Identifier) of the VM.
Id This property is required. string
Azure resource Id of the VM.
Uuid This property is required. string
UUID(Universally Unique Identifier) of the VM.
id This property is required. String
Azure resource Id of the VM.
uuid This property is required. String
UUID(Universally Unique Identifier) of the VM.
id This property is required. string
Azure resource Id of the VM.
uuid This property is required. string
UUID(Universally Unique Identifier) of the VM.
id This property is required. str
Azure resource Id of the VM.
uuid This property is required. str
UUID(Universally Unique Identifier) of the VM.
id This property is required. String
Azure resource Id of the VM.
uuid This property is required. String
UUID(Universally Unique Identifier) of the VM.

VMSSVMInfoResponse
, VMSSVMInfoResponseArgs

ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
LastComplianceChecked This property is required. string
Date and time when last compliance status was checked.
LatestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
VmId This property is required. string
UUID of the VM.
VmResourceId This property is required. string
Azure resource Id of the VM.
ComplianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
LastComplianceChecked This property is required. string
Date and time when last compliance status was checked.
LatestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
VmId This property is required. string
UUID of the VM.
VmResourceId This property is required. string
Azure resource Id of the VM.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceChecked This property is required. String
Date and time when last compliance status was checked.
latestReportId This property is required. String
Id of the latest report for the guest configuration assignment.
vmId This property is required. String
UUID of the VM.
vmResourceId This property is required. String
Azure resource Id of the VM.
complianceStatus This property is required. string
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceChecked This property is required. string
Date and time when last compliance status was checked.
latestReportId This property is required. string
Id of the latest report for the guest configuration assignment.
vmId This property is required. string
UUID of the VM.
vmResourceId This property is required. string
Azure resource Id of the VM.
compliance_status This property is required. str
A value indicating compliance status of the machine for the assigned guest configuration.
last_compliance_checked This property is required. str
Date and time when last compliance status was checked.
latest_report_id This property is required. str
Id of the latest report for the guest configuration assignment.
vm_id This property is required. str
UUID of the VM.
vm_resource_id This property is required. str
Azure resource Id of the VM.
complianceStatus This property is required. String
A value indicating compliance status of the machine for the assigned guest configuration.
lastComplianceChecked This property is required. String
Date and time when last compliance status was checked.
latestReportId This property is required. String
Id of the latest report for the guest configuration assignment.
vmId This property is required. String
UUID of the VM.
vmResourceId This property is required. String
Azure resource Id of the VM.

Import

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

$ pulumi import azure-native:guestconfiguration:GuestConfigurationAssignmentsVMSS NotInstalledApplicationForWindows /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmssName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{name} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0