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.
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" },
} },
},
});
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",
},
},
})
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());
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,
},
})
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",
},
},
});
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
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:
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Vmss
Name This property is required. Changes to this property will trigger replacement.
- 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.
Azure Native. Guest Configuration. Inputs. Guest Configuration Assignment Properties - Properties of the Guest configuration assignment.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- Vmss
Name This property is required. Changes to this property will trigger replacement.
- 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
Guest
Configuration Assignment Properties Args - Properties of the Guest configuration assignment.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- vmss
Name This property is required. Changes to this property will trigger replacement.
- 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
Guest
Configuration Assignment Properties - Properties of the Guest configuration assignment.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- vmss
Name This property is required. Changes to this property will trigger replacement.
- 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
Guest
Configuration Assignment Properties - Properties of the Guest configuration assignment.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- vmss_
name This property is required. Changes to this property will trigger replacement.
- 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
Guest
Configuration Assignment Properties Args - Properties of the Guest configuration assignment.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- The resource group name.
- vmss
Name This property is required. Changes to this property will trigger replacement.
- 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.
- System
Data Pulumi.Azure Native. Guest Configuration. Outputs. System Data Response - 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.
- System
Data SystemData Response - 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.
- system
Data SystemData Response - 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.
- system
Data SystemData Response - 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 SystemData Response - 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.
- system
Data 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.
Azure Native. Guest Configuration. Inputs. Configuration Info Response - Information about the configuration.
- Name
This property is required. string - Name of the guest configuration assignment.
- Configuration
Configuration
Info Response - Information about the configuration.
- name
This property is required. String - Name of the guest configuration assignment.
- configuration
Configuration
Info Response - Information about the configuration.
- name
This property is required. string - Name of the guest configuration assignment.
- configuration
Configuration
Info Response - Information about the configuration.
- name
This property is required. str - Name of the guest configuration assignment.
- configuration
Configuration
Info Response - 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
AssignmentReportResourceResponse, AssignmentReportResourceResponseArgs
- Compliance
Status 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.
- Resource
Id This property is required. string - Name of the guest configuration assignment resource setting.
- Reasons
List<Pulumi.
Azure Native. Guest Configuration. Inputs. Assignment Report Resource Compliance Reason Response> - Compliance reason and reason code for a resource.
- Compliance
Status 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.
- Resource
Id This property is required. string - Name of the guest configuration assignment resource setting.
- Reasons
[]Assignment
Report Resource Compliance Reason Response - Compliance reason and reason code for a resource.
- compliance
Status 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.
- resource
Id This property is required. String - Name of the guest configuration assignment resource setting.
- reasons
List<Assignment
Report Resource Compliance Reason Response> - Compliance reason and reason code for a resource.
- compliance
Status 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.
- resource
Id This property is required. string - Name of the guest configuration assignment resource setting.
- reasons
Assignment
Report Resource Compliance Reason Response[] - 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[Assignment
Report Resource Compliance Reason Response] - Compliance reason and reason code for a resource.
- compliance
Status 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.
- resource
Id 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
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- End
Time 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.
- Operation
Type This property is required. string - Type of report, Consistency or Initial
- Report
Id This property is required. string - GUID that identifies the guest configuration assignment report under a subscription, resource group.
- Start
Time This property is required. string - Start date and time of the guest configuration assignment compliance status check.
- Assignment
Pulumi.
Azure Native. Guest Configuration. Inputs. Assignment Info Response - Configuration details of the guest configuration assignment.
- Resources
List<Pulumi.
Azure Native. Guest Configuration. Inputs. Assignment Report Resource Response> - The list of resources for which guest configuration assignment compliance is checked.
- Vm
Pulumi.
Azure Native. Guest Configuration. Inputs. VMInfo Response - Information about the VM.
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- End
Time 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.
- Operation
Type This property is required. string - Type of report, Consistency or Initial
- Report
Id This property is required. string - GUID that identifies the guest configuration assignment report under a subscription, resource group.
- Start
Time This property is required. string - Start date and time of the guest configuration assignment compliance status check.
- Assignment
Assignment
Info Response - Configuration details of the guest configuration assignment.
- Resources
[]Assignment
Report Resource Response - The list of resources for which guest configuration assignment compliance is checked.
- Vm
VMInfo
Response - Information about the VM.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- end
Time 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.
- operation
Type This property is required. String - Type of report, Consistency or Initial
- report
Id This property is required. String - GUID that identifies the guest configuration assignment report under a subscription, resource group.
- start
Time This property is required. String - Start date and time of the guest configuration assignment compliance status check.
- assignment
Assignment
Info Response - Configuration details of the guest configuration assignment.
- resources
List<Assignment
Report Resource Response> - The list of resources for which guest configuration assignment compliance is checked.
- vm
VMInfo
Response - Information about the VM.
- compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- end
Time 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.
- operation
Type This property is required. string - Type of report, Consistency or Initial
- report
Id This property is required. string - GUID that identifies the guest configuration assignment report under a subscription, resource group.
- start
Time This property is required. string - Start date and time of the guest configuration assignment compliance status check.
- assignment
Assignment
Info Response - Configuration details of the guest configuration assignment.
- resources
Assignment
Report Resource Response[] - The list of resources for which guest configuration assignment compliance is checked.
- vm
VMInfo
Response - 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
Assignment
Info Response - Configuration details of the guest configuration assignment.
- resources
Sequence[Assignment
Report Resource Response] - The list of resources for which guest configuration assignment compliance is checked.
- vm
VMInfo
Response - Information about the VM.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- end
Time 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.
- operation
Type This property is required. String - Type of report, Consistency or Initial
- report
Id This property is required. String - GUID that identifies the guest configuration assignment report under a subscription, resource group.
- start
Time 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
- Deploy
And Auto Correct - DeployAndAutoCorrect
- Apply
And Auto Correct - ApplyAndAutoCorrect
- Apply
And Monitor - ApplyAndMonitor
- Assignment
Type Audit - Audit
- Assignment
Type Deploy And Auto Correct - DeployAndAutoCorrect
- Assignment
Type Apply And Auto Correct - ApplyAndAutoCorrect
- Assignment
Type Apply And Monitor - ApplyAndMonitor
- Audit
- Audit
- Deploy
And Auto Correct - DeployAndAutoCorrect
- Apply
And Auto Correct - ApplyAndAutoCorrect
- Apply
And Monitor - ApplyAndMonitor
- Audit
- Audit
- Deploy
And Auto Correct - DeployAndAutoCorrect
- Apply
And Auto Correct - ApplyAndAutoCorrect
- Apply
And Monitor - ApplyAndMonitor
- AUDIT
- Audit
- DEPLOY_AND_AUTO_CORRECT
- DeployAndAutoCorrect
- APPLY_AND_AUTO_CORRECT
- ApplyAndAutoCorrect
- APPLY_AND_MONITOR
- ApplyAndMonitor
- "Audit"
- Audit
- "Deploy
And Auto Correct" - DeployAndAutoCorrect
- "Apply
And Auto Correct" - ApplyAndAutoCorrect
- "Apply
And Monitor" - ApplyAndMonitor
ConfigurationInfoResponse, ConfigurationInfoResponseArgs
ConfigurationParameter, ConfigurationParameterArgs
ConfigurationParameterResponse, ConfigurationParameterResponseArgs
ConfigurationSettingResponse, ConfigurationSettingResponseArgs
- Action
After Reboot This property is required. string - 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. string - 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. 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.
- 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. 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.
- Action
After Reboot This property is required. string - 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. string - 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. 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.
- 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. 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.
- action
After Reboot This property is required. String - 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. Boolean - 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. String - 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. 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.
- reboot
If Needed 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.
- refresh
Frequency Mins 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.
- action
After Reboot This property is required. string - 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. boolean - 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. string - 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. 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.
- reboot
If Needed 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.
- refresh
Frequency Mins 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.
- action
After Reboot This property is required. String - 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. Boolean - 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. String - 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. 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.
- reboot
If Needed 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.
- refresh
Frequency Mins 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
- Guest
Configuration Pulumi.Azure Native. Guest Configuration. Inputs. Guest Configuration Navigation - The guest configuration to assign.
- Context string
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- Guest
Configuration GuestConfiguration Navigation - The guest configuration to assign.
- context String
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration GuestConfiguration Navigation - The guest configuration to assign.
- context string
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration GuestConfiguration Navigation - The guest configuration to assign.
- context str
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest_
configuration GuestConfiguration Navigation - The guest configuration to assign.
- context String
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration Property Map - The guest configuration to assign.
GuestConfigurationAssignmentPropertiesResponse, GuestConfigurationAssignmentPropertiesResponseArgs
- Assignment
Hash This property is required. string - Combined hash of the configuration package and parameters.
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- Last
Compliance Status Checked This property is required. string - Date and time when last compliance status was checked.
- Latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- Parameter
Hash This property is required. string - parameter hash for the guest configuration assignment.
- Provisioning
State This property is required. string - The provisioning state, which only appears in the response.
- Resource
Type This property is required. string - Type of the resource - VMSS / VM
- Target
Resource Id This property is required. string - VM resource Id.
- Context string
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- Guest
Configuration Pulumi.Azure Native. Guest Configuration. Inputs. Guest Configuration Navigation Response - The guest configuration to assign.
- Latest
Assignment Pulumi.Report Azure Native. Guest Configuration. Inputs. Assignment Report Response - Last reported guest configuration assignment report.
- Vmss
VMList List<Pulumi.Azure Native. Guest Configuration. Inputs. VMSSVMInfo Response> - The list of VM Compliance data for VMSS
- Assignment
Hash This property is required. string - Combined hash of the configuration package and parameters.
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- Last
Compliance Status Checked This property is required. string - Date and time when last compliance status was checked.
- Latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- Parameter
Hash This property is required. string - parameter hash for the guest configuration assignment.
- Provisioning
State This property is required. string - The provisioning state, which only appears in the response.
- Resource
Type This property is required. string - Type of the resource - VMSS / VM
- Target
Resource Id This property is required. string - VM resource Id.
- Context string
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- Guest
Configuration GuestConfiguration Navigation Response - The guest configuration to assign.
- Latest
Assignment AssignmentReport Report Response - Last reported guest configuration assignment report.
- Vmss
VMList []VMSSVMInfoResponse - The list of VM Compliance data for VMSS
- assignment
Hash This property is required. String - Combined hash of the configuration package and parameters.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Status Checked This property is required. String - Date and time when last compliance status was checked.
- latest
Report Id This property is required. String - Id of the latest report for the guest configuration assignment.
- parameter
Hash This property is required. String - parameter hash for the guest configuration assignment.
- provisioning
State This property is required. String - The provisioning state, which only appears in the response.
- resource
Type This property is required. String - Type of the resource - VMSS / VM
- target
Resource Id This property is required. String - VM resource Id.
- context String
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration GuestConfiguration Navigation Response - The guest configuration to assign.
- latest
Assignment AssignmentReport Report Response - Last reported guest configuration assignment report.
- vmss
VMList List<VMSSVMInfoResponse> - The list of VM Compliance data for VMSS
- assignment
Hash This property is required. string - Combined hash of the configuration package and parameters.
- compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Status Checked This property is required. string - Date and time when last compliance status was checked.
- latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- parameter
Hash This property is required. string - parameter hash for the guest configuration assignment.
- provisioning
State This property is required. string - The provisioning state, which only appears in the response.
- resource
Type This property is required. string - Type of the resource - VMSS / VM
- target
Resource Id This property is required. string - VM resource Id.
- context string
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration GuestConfiguration Navigation Response - The guest configuration to assign.
- latest
Assignment AssignmentReport Report Response - Last reported guest configuration assignment report.
- vmss
VMList 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 GuestConfiguration Navigation Response - The guest configuration to assign.
- latest_
assignment_ Assignmentreport Report Response - Last reported guest configuration assignment report.
- vmss_
vm_ Sequence[VMSSVMInfolist Response] - The list of VM Compliance data for VMSS
- assignment
Hash This property is required. String - Combined hash of the configuration package and parameters.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Status Checked This property is required. String - Date and time when last compliance status was checked.
- latest
Report Id This property is required. String - Id of the latest report for the guest configuration assignment.
- parameter
Hash This property is required. String - parameter hash for the guest configuration assignment.
- provisioning
State This property is required. String - The provisioning state, which only appears in the response.
- resource
Type This property is required. String - Type of the resource - VMSS / VM
- target
Resource Id This property is required. String - VM resource Id.
- context String
- The source which initiated the guest configuration assignment. Ex: Azure Policy
- guest
Configuration Property Map - The guest configuration to assign.
- latest
Assignment Property MapReport - Last reported guest configuration assignment report.
- vmss
VMList List<Property Map> - The list of VM Compliance data for VMSS
GuestConfigurationNavigation, GuestConfigurationNavigationArgs
- Assignment
Type string | Pulumi.Azure Native. Guest Configuration. Assignment Type - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- Configuration
Parameter List<Pulumi.Azure Native. Guest Configuration. Inputs. Configuration Parameter> - The configuration parameters for the guest configuration.
- Configuration
Protected List<Pulumi.Parameter Azure Native. Guest Configuration. Inputs. Configuration Parameter> - The protected configuration parameters for the guest configuration.
- Content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- Content
Uri string - Uri of the storage where guest configuration package is uploaded.
- Kind
string | Pulumi.
Azure Native. Guest Configuration. 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 string | AssignmentType - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- Configuration
Parameter []ConfigurationParameter - The configuration parameters for the guest configuration.
- Configuration
Protected []ConfigurationParameter Parameter - The protected configuration parameters for the guest configuration.
- Content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- Content
Uri 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 String | AssignmentType - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter List<ConfigurationParameter> - The configuration parameters for the guest configuration.
- configuration
Protected List<ConfigurationParameter Parameter> - The protected configuration parameters for the guest configuration.
- content
Hash String - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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 string | AssignmentType - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter ConfigurationParameter[] - The configuration parameters for the guest configuration.
- configuration
Protected ConfigurationParameter Parameter[] - The protected configuration parameters for the guest configuration.
- content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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_ Sequence[Configurationparameter Parameter] - 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.
- assignment
Type String | "Audit" | "DeployAnd Auto Correct" | "Apply And Auto Correct" | "Apply And Monitor" - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter List<Property Map> - The configuration parameters for the guest configuration.
- configuration
Protected List<Property Map>Parameter - The protected configuration parameters for the guest configuration.
- content
Hash String - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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
- Assignment
Source This property is required. string - Specifies the origin of the configuration.
- Configuration
Setting This property is required. Pulumi.Azure Native. Guest Configuration. Inputs. Configuration Setting Response - The configuration setting for the guest configuration.
- Content
Type This property is required. string - Specifies the content type of the configuration. Possible values could be Builtin or Custom.
- Assignment
Type string - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- Configuration
Parameter List<Pulumi.Azure Native. Guest Configuration. Inputs. Configuration Parameter Response> - The configuration parameters for the guest configuration.
- Configuration
Protected List<Pulumi.Parameter Azure Native. Guest Configuration. Inputs. Configuration Parameter Response> - The protected configuration parameters for the guest configuration.
- Content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- Content
Uri 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. string - Specifies the origin of the configuration.
- Configuration
Setting This property is required. ConfigurationSetting Response - The configuration setting for the guest configuration.
- Content
Type This property is required. string - Specifies the content type of the configuration. Possible values could be Builtin or Custom.
- Assignment
Type string - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- Configuration
Parameter []ConfigurationParameter Response - The configuration parameters for the guest configuration.
- Configuration
Protected []ConfigurationParameter Parameter Response - The protected configuration parameters for the guest configuration.
- Content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- Content
Uri 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. String - Specifies the origin of the configuration.
- configuration
Setting This property is required. ConfigurationSetting Response - The configuration setting for the guest configuration.
- content
Type This property is required. String - Specifies the content type of the configuration. Possible values could be Builtin or Custom.
- assignment
Type String - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter List<ConfigurationParameter Response> - The configuration parameters for the guest configuration.
- configuration
Protected List<ConfigurationParameter Parameter Response> - The protected configuration parameters for the guest configuration.
- content
Hash String - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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. string - Specifies the origin of the configuration.
- configuration
Setting This property is required. ConfigurationSetting Response - The configuration setting for the guest configuration.
- content
Type This property is required. string - Specifies the content type of the configuration. Possible values could be Builtin or Custom.
- assignment
Type string - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter ConfigurationParameter Response[] - The configuration parameters for the guest configuration.
- configuration
Protected ConfigurationParameter Parameter Response[] - The protected configuration parameters for the guest configuration.
- content
Hash string - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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. ConfigurationSetting Response - 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[ConfigurationParameter Response] - The configuration parameters for the guest configuration.
- configuration_
protected_ Sequence[Configurationparameter Parameter Response] - 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.
- assignment
Source This property is required. String - Specifies the origin of the configuration.
- configuration
Setting This property is required. Property Map - The configuration setting for the guest configuration.
- content
Type This property is required. String - Specifies the content type of the configuration. Possible values could be Builtin or Custom.
- assignment
Type String - Specifies the assignment type and execution of the configuration. Possible values are Audit, DeployAndAutoCorrect, ApplyAndAutoCorrect and ApplyAndMonitor.
- configuration
Parameter List<Property Map> - The configuration parameters for the guest configuration.
- configuration
Protected List<Property Map>Parameter - The protected configuration parameters for the guest configuration.
- content
Hash String - Combined hash of the guest configuration package and configuration parameters.
- content
Uri 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
- Kind
DSC - DSC
- DSC
- DSC
- DSC
- DSC
- DSC
- DSC
- "DSC"
- DSC
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
VMInfoResponse, VMInfoResponseArgs
VMSSVMInfoResponse, VMSSVMInfoResponseArgs
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- Last
Compliance Checked This property is required. string - Date and time when last compliance status was checked.
- Latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- Vm
Id This property is required. string - UUID of the VM.
- Vm
Resource Id This property is required. string - Azure resource Id of the VM.
- Compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- Last
Compliance Checked This property is required. string - Date and time when last compliance status was checked.
- Latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- Vm
Id This property is required. string - UUID of the VM.
- Vm
Resource Id This property is required. string - Azure resource Id of the VM.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Checked This property is required. String - Date and time when last compliance status was checked.
- latest
Report Id This property is required. String - Id of the latest report for the guest configuration assignment.
- vm
Id This property is required. String - UUID of the VM.
- vm
Resource Id This property is required. String - Azure resource Id of the VM.
- compliance
Status This property is required. string - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Checked This property is required. string - Date and time when last compliance status was checked.
- latest
Report Id This property is required. string - Id of the latest report for the guest configuration assignment.
- vm
Id This property is required. string - UUID of the VM.
- vm
Resource Id 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.
- compliance
Status This property is required. String - A value indicating compliance status of the machine for the assigned guest configuration.
- last
Compliance Checked This property is required. String - Date and time when last compliance status was checked.
- latest
Report Id This property is required. String - Id of the latest report for the guest configuration assignment.
- vm
Id This property is required. String - UUID of the VM.
- vm
Resource Id 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}
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