xhyper_v
Version information
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
- Puppet >= 7.0.0 < 9.0.0
Start using this module
Add this module to your Puppetfile:
mod 'dsc-xhyper_v', '3.18.0-0-5'
Learn more about managing modules with a PuppetfileDocumentation
xhyper_v
Table of Contents
Description
This is an auto-generated module, using the Puppet DSC Builder to vendor and expose the xHyper-V PowerShell module's DSC resources as Puppet resources. The functionality of this module comes entirely from the vendored PowerShell resources, which are pinned at v3.18.0. The PowerShell module describes itself like this:
This module contains DSC resources for deployment and configuration of Microsoft Hyper-V.
For information on troubleshooting to determine whether any encountered problems are with the Puppet wrapper or the DSC resource, see the troubleshooting section below.
Requirements
This module, like all auto-generated Puppetized DSC modules, relies on two important technologies in the Puppet stack: the Puppet Resource API and the puppetlabs/pwshlib Puppet module.
The Resource API provides a simplified option for writing types and providers and is responsible for how this module is structured. The Resource API ships inside of Puppet starting with version 6. While it is technically possible to add the Resource API functionality to Puppet 5.5.x, the DSC functionality has not been tested in this setup. For more information on the Resource API, review the documentation.
The module also depends on the pwshlib module. This Puppet module includes two important things: the ruby-pwsh library for running PowerShell code from ruby and the base provider for DSC resources, which this module leverages.
All of the actual work being done to call the DSC resources vendored with this module is in this file from the pwshlib module. This is important for troubleshooting and bug reporting, but doesn't impact your use of the module except that the end result will be that nothing works, as the dependency is not installed alongside this module!
Long File Path Support
Several PowerShell modules with DSC Resources end up with very long file paths once vendored, many of which exceed the 260 character limit for file paths. Luckily in Windows 10 (build 1607+), Windows Server 2016 (build 1607+), and Windows Server 2019 there is now an option for supporting long file paths transparently!
We strongly recommend enabling long file path support on any machines using this module to avoid path length issues.
You can set this value using the Puppet registry_value
resource:
registry_value { 'HKLM\System\CurrentControlSet\Control\FileSystem\LongPathsEnabled':
ensure => 'present',
data => [1],
provider => 'registry',
type => 'dword',
}
You can also set this value outside of Puppet by following the Microsoft documentation.
Usage
You can specify any of the DSC resources from this module like a normal Puppet resource in your manifests. The examples below use DSC resources from from the PowerShellGet repository, regardless of what module you're looking at here; the syntax, not the specifics, is what's important.
For reference documentation about the DSC resources exposed in this module, see the Reference Forge tab, or the REFERENCE.md file.
# Include a meaningful title for your resource declaration
dsc_psrepository { 'Add team module repo':
dsc_name => 'foo',
dsc_ensure => present,
# This location is nonsense, can be any valid folder on your
# machine or in a share, any location the SourceLocation param
# for the DSC resource will accept.
dsc_sourcelocation => 'C:\Program Files',
# You must always pass an enum fully lower-cased;
# Puppet is case sensitive even when PowerShell isn't
dsc_installationpolicy => untrusted,
}
dsc_psrepository { 'Trust public gallery':
dsc_name => 'PSGallery',
dsc_ensure => present,
dsc_installationpolicy => trusted,
}
dsc_psmodule { 'Make Ruby manageable via uru':
dsc_name => 'RubyInstaller',
dsc_ensure => present,
}
Credentials
Credentials are always specified as a hash of the username and password for the account. The password must use the Puppet Sensitive type; this ensures that logs and reports redact the password, displaying it instead as <Sensitive [value redacted]>.
dsc_psrepository { 'PowerShell Gallery':
dsc_name => 'psgAllery',
dsc_installationpolicy => 'Trusted',
dsc_psdscrunascredential => {
user => 'apple',
password => Sensitive('foobar'),
},
}
Class-Based Resources
Class-based DSC Resources can be used like any other DSC Resource in this module, with one important note:
Due to a bug in calling class-based DSC Resources by path instead of module name, each call to Invoke-DscResource
needs to temporarily munge the system-level environment variable for PSModulePath
;
the variable is reset prior to the end of each invocation.
CIM Instances
Because the CIM instances for DSC resources are fully mapped, the types actually explain fairly precisely what the shape of each CIM instance has to be - and, moreover, the type definition means that you get checking at catalog compile time. Puppet parses CIM instances are structured hashes (or arrays of structured hashes) that explicitly declare their keys and the valid types of values for each key.
So, for the dsc_accesscontrolentry
property of the dsc_ntfsaccessentry
type, which has a MOF type of NTFSAccessControlList[]
, Puppet defines the CIM instance as:
Array[Struct[{
accesscontrolentry => Array[Struct[{
accesscontroltype => Enum['Allow', 'Deny'],
inheritance => Enum['This folder only', 'This folder subfolders and files', 'This folder and subfolders', 'This folder and files', 'Subfolders and files only', 'Subfolders only', 'Files only'],
ensure => Enum['Present', 'Absent'],
cim_instance_type => 'NTFSAccessControlEntry',
filesystemrights => Array[Enum['AppendData', 'ChangePermissions', 'CreateDirectories', 'CreateFiles', 'Delete', 'DeleteSubdirectoriesAndFiles', 'ExecuteFile', 'FullControl', 'ListDirectory', 'Modify', 'Read', 'ReadAndExecute', 'ReadAttributes', 'ReadData', 'ReadExtendedAttributes', 'ReadPermissions', 'Synchronize', 'TakeOwnership', 'Traverse', 'Write', 'WriteAttributes', 'WriteData', 'WriteExtendedAttributes']]
}]],
forceprincipal => Optional[Boolean],
principal => Optional[String],
}]]
A valid example of that in a puppet manifest looks like this:
dsc_accesscontrollist => [
{
accesscontrolentry => [
{
accesscontroltype => 'Allow',
inheritance => 'This folder only',
ensure => 'Present',
filesystemrights => 'ChangePermissions',
cim_instance_type => 'NTFSAccessControlEntry',
},
],
principal => 'veryRealUserName',
},
]
For more information about using a built module, check out our narrative documentation.
Properties
Note that the only properties specified in a resource declaration which are passed to Invoke-Dsc are all prepended with dsc.
If a property does _not start with dsc_ it is used to control how Puppet interacts with DSC/other Puppet resources - for example,
specifying a unique name for the resource for Puppet to distinguish between declarations or Puppet metaparameters (notifies,
before, etc).
Validation Mode
By default, these resources use the property validation mode, which checks whether or not the resource is in the desired state the same way most Puppet resources are validated;
by comparing the properties returned from the system with those specified in the manifest.
Sometimes, however, this is insufficient;
many DSC Resources return data that does not compare properly to the desired state (some are missing properties, others are malformed, some simply cannot be strictly compared).
In these cases, you can set the validation mode to resource
, which falls back on calling Invoke-DscResource
with the Test
method and trusts that result.
When using the resource
validation mode, the resource is tested once and will then treat all properties of that resource as in sync (if the result returned true
) or not in sync.
This loses the granularity of change reporting for the resource but prevents flapping and unexpected behavior.
# This will flap because the DSC resource never returns name in SecurityPolicyDsc v2.10.0.0
dsc_securityoption { 'Enforce Anonoymous SID Translation':
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
# This will idempotently apply
dsc_psrepository { 'PowerShell Gallery':
validation_mode => 'resource',
dsc_name => 'Enforce Anonymous SID Translation',
dsc_network_access_allow_anonymous_sid_name_translation => 'Disabled',
}
It is important to note that this feature is only supported with a version of puppetlabs-pwshlib
equal to or higher than 0.9.0
, in which the supporting code for the DSC Base Provider to implement custom insync was shipped.
Finally, while this module's metadata says that the supported Puppet versions are 6.0.0 and up, the implementation of the validation_mode
parameter relies on the custom_insync
feature of the Puppet Resource API.
The custom_insync
feature first shipped in the puppet-resource_api
version 1.8.14
, which itself is only included in Puppet versions equal to or newer than 6.23.0
and 7.8.0
for the 6x and 7x platforms respectively.
Using this module against older Puppet versions will result in a warning (example below) and only use the default property-by-property change reporting, regardless of the setting of validation_mode
.
Warning: Unknown feature detected: ["custom_insync"]
Troubleshooting
In general, there are three broad categories of problems:
- Problems with the way the underlying DSC resource works.
- Problems with the type definition, where you can't specify a valid set of properties for the DSC resource
- Problems with calling the underlying DSC resource - the parameters aren't being passed correctly or the resource can't be found
Unfortunately, problems with the way the underlying DSC resource works are something we can't help directly with. You'll need to file an issue with the upstream maintainers for the PowerShell module.
Problems with the type definition are when a value that should be valid according to the DSC resource's documentation and code is not accepted by the Puppet wrapper. If and when you run across one of these, please file an issue with the Puppet DSC Builder; this is where the conversion happens and once we know of a problem we can fix it and regenerate the Puppet modules. To help us identify the issue, please specify the DSC module, version, resource, property and values that are giving you issues. Once a fix is available we will regenerate and release updated versions of this Puppet wrapper.
Problems with calling the underlying DSC resource become apparent by comparing <value passed in in puppet>
with <value received by DSC>
.
In this case, please file an issue with the puppetlabs/pwshlib module, which is where the DSC base provider actually lives.
We'll investigate and prioritize a fix and update the puppetlabs/pwshlib module.
Updating to the pwshlib version with the fix will immediately take advantage of the improved functionality without waiting for this module to be reconverted and published.
For specific information on troubleshooting a generated module, check the troubleshooting guide for the puppet.dsc module.
Known Limitations
-
Currently, because of the way Puppet caches files on agents, use of the legacy
puppetlabs-dsc
module is not compatible with this or any auto-generated DSC module. Inclusion of both will lead to pluginsync conflicts. -
Right now, if you have the same version of a PowerShell module with class-based DSC Resources in your PSModulePath as vendored in a Puppetized DSC Module, you cannot use those class-based DSC Resources from inside of Puppet due to a bug in DSC which prevents using a module by path reference instead of name. Instead, DSC will see that there are two DSC Resources for the same module and version and then error out.
-
When PowerShell Script Block Logging is enabled, data marked as sensitive in your manifest may appear in these logs as plain text. It is highly recommended, by both Puppet and Microsoft, that you also enable Protected Event Logging alongside this to encrypt the logs to protect this information.
Configuring the LCM
In order for a Puppetized DSC module to function, the DSC Local Configuration Manager (LCM) RefreshMode
must be set to either Push
or Disabled
.
The default value for RefreshMode
in WMF 5.0 and WMF 5.1 is Push
- so if it has not been set to anything else then there is no action needed on your part.
However if the value of the LCM has been set to anything other than Push
then the module will not function and so the value must either be changed back or disabled.
The Puppetized DSC modules use the Invoke-DscResource
cmdlet to invoke DSC Resources of the target machine.
If the RefreshMode
is set to Pull
, DSC Resources will only run from a DSC Pull Server - in this setting DSC does not allow any DSC Resources to be run interactively on the host.
Module Installation
If you're using this module with Puppet Enterprise and Code Manager, everything should "just work" - no errors or issues acquiring and deploying this or any Puppetized DSC module to nodes.
Unfortunately, due a bug in minitar which prevents it from unpacking archives with long file paths, both r10k
and serverless Puppet (via puppet module install
) methods of installing modules with long path names will fail.
In short, minitar is unable to unpack modules that contain long file paths (though it can create them).
As a workaround, you can retrieve DSC modules from the forge via PowerShell and 7zip:
$ModuleAuthor = 'dsc'
$ModuleName = 'xremotedesktopsessionhost'
$ModuleVersion = '2.0.0-0-1'
$ArchiveFileName = "$ModuleAuthor-$ModuleName-$ModuleVersion.tar.gz"
$DownloadUri = "https://forge.puppet.com/v3/files/$ArchiveFileName"
# Download the module tar.gz to the current directory
Invoke-WebRequest -Uri $DownloadUri -OutFile ./$ArchiveFileName
# Use 7zip to extract the module to the current directory
& 7z x $ArchiveFileName -so | & 7z x -aoa -si -ttar
Reference
Table of Contents
Resource types
dsc_xvhd
: The DSC xVHD resource type. Automatically generated from version 3.18.0dsc_xvhdfile
: The DSC xVhdFile resource type. Automatically generated from version 3.18.0dsc_xvmdvddrive
: The DSC xVMDvdDrive resource type. Automatically generated from version 3.18.0dsc_xvmharddiskdrive
: The DSC xVMHardDiskDrive resource type. Automatically generated from version 3.18.0dsc_xvmhost
: The DSC xVMHost resource type. Automatically generated from version 3.18.0dsc_xvmhyperv
: The DSC xVMHyperV resource type. Automatically generated from version 3.18.0dsc_xvmnetworkadapter
: The DSC xVMNetworkAdapter resource type. Automatically generated from version 3.18.0dsc_xvmprocessor
: The DSC xVMProcessor resource type. Automatically generated from version 3.18.0dsc_xvmscsicontroller
: The DSC xVMScsiController resource type. Automatically generated from version 3.18.0dsc_xvmswitch
: The DSC xVMSwitch resource type. Automatically generated from version 3.18.0
Resource types
dsc_xvhd
The DSC xVHD resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvhd
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Should the VHD be created or deleted
dsc_filesizebytes
Data type: Optional[Integer[0, 18446744073709551615]]
Current size of the VHD
dsc_generation
Data type: Optional[Enum['Vhd', 'vhd', 'Vhdx', 'vhdx']]
Virtual disk format - Vhd or Vhdx
dsc_id
Data type: Optional[String]
Virtual Disk Identifier
dsc_isattached
Data type: Optional[Boolean]
Is the VHD attached to a VM or not
dsc_maximumsizebytes
Data type: Optional[Integer[0, 18446744073709551615]]
Maximum size of Vhd to be created
dsc_parentpath
Data type: Optional[String]
Parent VHD file path, for differencing disk
dsc_type
Data type: Optional[Enum['Dynamic', 'dynamic', 'Fixed', 'fixed', 'Differencing', 'differencing']]
Type of Vhd - Dynamic, Fixed, Differencing
Parameters
The following parameters are available in the dsc_xvhd
type.
dsc_name
namevar
Data type: String
Name of the VHD File
dsc_path
namevar
Data type: String
Folder where the VHD will be created
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvhdfile
The DSC xVhdFile resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvhdfile
type.
dsc_checksum
Data type: Optional[Enum['ModifiedDate', 'modifieddate', 'SHA-1', 'sha-1', 'SHA-256', 'sha-256', 'SHA-512', 'sha-512']]
dsc_filedirectory
Data type: Array[Struct[{ type => Optional[Enum['File', 'file', 'Directory', 'directory']], ensure => Optional[Enum['Present', 'present', 'Absent', 'absent']], content => Optional[String], destinationpath => String, force => Optional[Boolean], sourcepath => Optional[String], attributes => Optional[Array[Enum['ReadOnly', 'readonly', 'Hidden', 'hidden', 'System', 'system', 'Archive', 'archive']]], recurse => Optional[Boolean] }]]
The FileDirectory objects to copy to the VHD
Parameters
The following parameters are available in the dsc_xvhdfile
type.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_vhdpath
namevar
Data type: String
Path to the VHD
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmdvddrive
The DSC xVMDvdDrive resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmdvddrive
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Specifies if the DVD Drive should exist or not.
dsc_path
Data type: Optional[String]
Specifies the full path to the virtual hard disk file or physical hard disk volume for the added DVD drive.
Parameters
The following parameters are available in the dsc_xvmdvddrive
type.
dsc_controllerlocation
dsc_controllernumber
dsc_psdscrunascredential
dsc_timeout
dsc_vmname
name
validation_mode
dsc_controllerlocation
namevar
Data type: Integer[0, 4294967295]
Specifies the number of the location on the controller at which the DVD drive is to be added.
dsc_controllernumber
namevar
Data type: Integer[0, 4294967295]
Specifies the number of the controller to which the DVD drive is to be added.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_vmname
namevar
Data type: String
Specifies the name of the virtual machine to which the DVD drive is to be added.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmharddiskdrive
The DSC xVMHardDiskDrive resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmharddiskdrive
type.
dsc_controllerlocation
Data type: Optional[Integer[0, 4294967295]]
Specifies the number of the location on the controller where the disk is attached. If not specified, it defaults to 0.
dsc_controllernumber
Data type: Optional[Enum['0', '1', '2', '3']]
Specifies the number of the controller where the disk is attached. If not specified, it defaults to 0.
dsc_controllertype
Data type: Optional[Enum['IDE', 'ide', 'SCSI', 'scsi']]
Specifies the controller type - IDE/SCSI where the disk is attached. If not specified, it defaults to SCSI.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Specifies if the hard disk drive must be present or absent. If not specified, it defaults to Present.
Parameters
The following parameters are available in the dsc_xvmharddiskdrive
type.
dsc_path
namevar
Data type: String
Specifies the full path to the location of the VHD that represents the hard disk drive.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_vmname
namevar
Data type: String
Specifies the name of the virtual machine whose hard disk drive is to be manipulated.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmhost
The DSC xVMHost resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmhost
type.
dsc_enableenhancedsessionmode
Data type: Optional[Boolean]
Indicates whether users can use enhanced mode when they connect to virtual machines on this server by using Virtual Machine Connection.
dsc_fibrechannelwwnn
Data type: Optional[String]
Specifies the default value of the World Wide Node Name on the Hyper-V host.
dsc_fibrechannelwwpnmaximum
Data type: Optional[String]
Specifies the maximum value that can be used to generate World Wide Port Names on the Hyper-V host.
dsc_fibrechannelwwpnminimum
Data type: Optional[String]
Specifies the minimum value that can be used to generate the World Wide Port Names on the Hyper-V host.
dsc_macaddressmaximum
Data type: Optional[String]
Specifies the maximum MAC address using a valid hexadecimal value.
dsc_macaddressminimum
Data type: Optional[String]
Specifies the minimum MAC address using a valid hexadecimal value.
dsc_maximumstoragemigrations
Data type: Optional[Integer[0, 4294967295]]
Specifies the maximum number of storage migrations that can be performed at the same time on the Hyper-V host.
dsc_maximumvirtualmachinemigrations
Data type: Optional[Integer[0, 4294967295]]
Specifies the maximum number of live migrations that can be performed at the same time on the Hyper-V host.
dsc_numaspanningenabled
Data type: Optional[Boolean]
Specifies whether virtual machines on the Hyper-V host can use resources from more than one NUMA node.
dsc_resourcemeteringsaveintervalminute
Data type: Optional[Integer[0, 4294967295]]
Specifies how often the Hyper-V host saves the data that tracks resource usage. The range is a minimum of 60 minutes to a maximum of 1440 (24 hours).
dsc_useanynetworkformigration
Data type: Optional[Boolean]
Specifies how networks are selected for incoming live migration traffic.
dsc_virtualharddiskpath
Data type: Optional[String]
Specifies the default folder to store virtual hard disks on the Hyper-V host.
dsc_virtualmachinemigrationauthenticationtype
Data type: Optional[Enum['CredSSP', 'credssp', 'Kerberos', 'kerberos']]
Specifies the type of authentication to be used for live migrations. The acceptable values for this parameter are 'Kerberos' and 'CredSSP'.
dsc_virtualmachinemigrationenabled
Data type: Optional[Boolean]
Indicates whether Live Migration should be enabled or disabled on the Hyper-V host.
dsc_virtualmachinemigrationperformanceoption
Data type: Optional[Enum['TCPIP', 'tcpip', 'Compression', 'compression', 'SMB', 'smb']]
Specifies the performance option to use for live migration. The acceptable values for this parameter are 'TCPIP', 'Compression' and 'SMB'.
dsc_virtualmachinepath
Data type: Optional[String]
Specifies the default folder to store virtual machine configuration files on the Hyper-V host.
Parameters
The following parameters are available in the dsc_xvmhost
type.
dsc_issingleinstance
namevar
Data type: Enum['Yes', 'yes']
Specifies the resource is a single instance, the value must be 'Yes'.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmhyperv
The DSC xVMHyperV resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmhyperv
type.
dsc_automaticcheckpointsenabled
Data type: Optional[Boolean]
Enable AutomaticCheckpoints for the VM.
dsc_cpuusage
Data type: Optional[Integer[0, 4294967295]]
CPU Usage of the VM
dsc_creationtime
Data type: Optional[Timestamp]
Creation time of the VM
dsc_enableguestservice
Data type: Optional[Boolean]
Enable Guest Service Interface for the VM.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Should the VM be created or deleted
dsc_generation
Data type: Optional[Integer[0, 4294967295]]
Virtual machine generation
dsc_hasdynamicmemory
Data type: Optional[Boolean]
Does VM has dynamic memory enabled
dsc_id
Data type: Optional[String]
VM unique ID
dsc_macaddress
Data type: Optional[Array[String]]
MAC address(es) of the VM NICs.
dsc_maximummemory
Data type: Optional[Integer[0, 18446744073709551615]]
Maximum RAM for the VM. This enable dynamic memory.
dsc_memoryassigned
Data type: Optional[Integer[0, 18446744073709551615]]
Memory assigned to the VM
dsc_minimummemory
Data type: Optional[Integer[0, 18446744073709551615]]
Minimum RAM for the VM. This enables dynamic memory.
dsc_networkadapters
Data type: Optional[Array[String]]
Network adapters' IP addresses of the VM
dsc_notes
Data type: Optional[String]
Notes about the VM.
dsc_path
Data type: Optional[String]
Folder where the VM data will be stored
dsc_processorcount
Data type: Optional[Integer[0, 4294967295]]
Processor count for the VM
dsc_restartifneeded
Data type: Optional[Boolean]
If specified, shutdowns and restarts the VM as needed for property changes
dsc_secureboot
Data type: Optional[Boolean]
Enable secure boot for Generation 2 VMs.
dsc_startupmemory
Data type: Optional[Integer[0, 18446744073709551615]]
Startup RAM for the VM.
dsc_state
Data type: Optional[Enum['Running', 'running', 'Paused', 'paused', 'Off', 'off']]
State of the VM.
dsc_status
Data type: Optional[String]
Status of the VM
dsc_switchname
Data type: Optional[Array[String]]
Virtual switch(es) associated with the VM
dsc_uptime
Data type: Optional[String]
Uptime of the VM
dsc_vhdpath
Data type: String
VHD associated with the VM
dsc_waitforip
Data type: Optional[Boolean]
Waits for VM to get valid IP address.
Parameters
The following parameters are available in the dsc_xvmhyperv
type.
dsc_name
namevar
Data type: String
Name of the VM
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmnetworkadapter
The DSC xVMNetworkAdapter resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmnetworkadapter
type.
dsc_dynamicmacaddress
Data type: Optional[Boolean]
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
dsc_macaddress
Data type: Optional[String]
dsc_name
Data type: String
dsc_networksetting
Data type: Optional[Struct[{ subnet => Optional[String], ipaddress => Optional[String], dnsserver => Optional[String], defaultgateway => Optional[String] }]]
dsc_switchname
Data type: String
dsc_vlanid
Data type: Optional[String]
dsc_vmname
Data type: String
Parameters
The following parameters are available in the dsc_xvmnetworkadapter
type.
dsc_id
namevar
Data type: String
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmprocessor
The DSC xVMProcessor resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmprocessor
type.
dsc_compatibilityformigrationenabled
Data type: Optional[Boolean]
Specifies whether the virtual processors features are to be limited for compatibility when migrating the virtual machine to another host.
dsc_compatibilityforolderoperatingsystemsenabled
Data type: Optional[Boolean]
Specifies whether the virtual processorâ??s features are to be limited for compatibility with older operating systems.
dsc_enablehostresourceprotection
Data type: Optional[Boolean]
Specifies whether to enable host resource protection.
dsc_exposevirtualizationextensions
Data type: Optional[Boolean]
Specifies whether nested virtualization is enabled.
dsc_hwthreadcountpercore
Data type: Optional[Integer[0, 18446744073709551615]]
Specifies the maximum thread core per processor core.
dsc_maximum
Data type: Optional[Integer[0, 18446744073709551615]]
Specifies the maximum percentage of resources available to the virtual machine processor to be configured. Allowed values range from 0 to 100.
dsc_maximumcountpernumanode
Data type: Optional[Integer[0, 4294967295]]
Specifies the maximum number of processors per NUMA node to be configured for the virtual machine.
dsc_maximumcountpernumasocket
Data type: Optional[Integer[0, 4294967295]]
Specifies the maximum number of sockets per NUMA node to be configured for the virtual machine.
dsc_relativeweight
Data type: Optional[Integer[0, 4294967295]]
Specifies the priority for allocating the physical computer's processing power to this virtual machine relative to others. Allowed values range from 1 to 10000.
dsc_reserve
Data type: Optional[Integer[0, 18446744073709551615]]
Specifies the percentage of processor resources to be reserved for this virtual machine. Allowed values range from 0 to 100.
dsc_resourcepoolname
Data type: Optional[String]
Specifies the name of the processor resource pool to be used.
dsc_restartifneeded
Data type: Optional[Boolean]
If specified, shutdowns and restarts the VM if needed for property changes.
Parameters
The following parameters are available in the dsc_xvmprocessor
type.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_vmname
namevar
Data type: String
Specifies the name of the virtual machine on which the processor is to be configured.
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmscsicontroller
The DSC xVMScsiController resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmscsicontroller
type.
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Specifies if the SCSI controller should exist or not. If not specified, it defaults to Present.
dsc_restartifneeded
Data type: Optional[Boolean]
Specifies if the VM should be restarted if needed for property changes. If not specified, it defaults to False.
Parameters
The following parameters are available in the dsc_xvmscsicontroller
type.
dsc_controllernumber
namevar
Data type: Enum['0', '1', '2', '3']
Specifies the number of the SCSI controller whose status is to be controlled. If not specified, it defaults to 0.
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_vmname
namevar
Data type: String
Specifies the name of the virtual machine whose SCSI controller status is to be controlled
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
dsc_xvmswitch
The DSC xVMSwitch resource type. Automatically generated from version 3.18.0
Properties
The following properties are available in the dsc_xvmswitch
type.
dsc_allowmanagementos
Data type: Optional[Boolean]
Specify if the VM host has access to the physical NIC
dsc_bandwidthreservationmode
Data type: Optional[Enum['Default', 'default', 'Weight', 'weight', 'Absolute', 'absolute', 'None', 'none', 'NA', 'na']]
Type of Bandwidth Reservation Mode to use for the switch
dsc_enableembeddedteaming
Data type: Optional[Boolean]
Should embedded NIC teaming be used (Windows Server 2016 only)
dsc_ensure
Data type: Optional[Enum['Present', 'present', 'Absent', 'absent']]
Whether switch should be present or absent
dsc_id
Data type: Optional[String]
Unique ID for the switch (Only settable on Windows Server 2016!)
dsc_loadbalancingalgorithm
Data type: Optional[Enum['Dynamic', 'dynamic', 'HyperVPort', 'hypervport']]
Specifies the load balancing algorithm that this switch team uses
dsc_netadapterinterfacedescription
Data type: Optional[String]
Description of the network interface
dsc_netadaptername
Data type: Optional[Array[String]]
Network adapter name(s) for external switch type
Parameters
The following parameters are available in the dsc_xvmswitch
type.
dsc_name
namevar
Data type: String
Name of the VM Switch
dsc_psdscrunascredential
Data type: Optional[Struct[{ user => String[1], password => Sensitive[String[1]] }]]
dsc_timeout
Data type: Optional[Integer]
The maximum time in seconds to wait for the DSC resource to complete.
dsc_type
namevar
Data type: Enum['External', 'external', 'Internal', 'internal', 'Private', 'private']
Type of switch
name
namevar
Data type: String
Description of the purpose for this resource declaration.
validation_mode
Data type: Enum[property, resource]
Whether to check if the resource is in the desired state by property (default) or using Invoke-DscResource in Test mode (resource).
Default value: property
[3.18.0] - 2022-06-04
Added
- xHyper-V
- Added automatic release with a new CI pipeline.
- Added stubs for the powershell module Hyper-V that are used for all unit tests.
- xVhdFileDirectory
- Added initial set of unit tests
Deprecated
- The module xHyper-V will be renamed to HyperVDsc
(issue #62).
The version
v3.18.0
will be the the last release of xHyper-V. Versionv4.0.0
will be released as HyperVDsc, it will be released shortly after thev3.18.0
release to be able to start transition to the new module. The prefix 'x' will be removed from all resources in HyperVDsc. - xHyper-V
- The resource will not be tested for Windows Server 2008 R2 since that operating system has reach end-of-life.
Removed
- xVMSwitch
- Removed the unit test that simulated functionality on Windows Server 2008 R2 since that operating system has reach end-of-life. No functionality was removed from the resource, but in a future release the resource might stop working for Windows Server 2008 R2.
Changed
- Update the pipeline files to the lates from Sampler.
Fixed
- xVMDvdDrive
- Fixed VMName property in example.
- xVMNetworkAdapter
- Fixed MacAddress sample data.
- xVMSwitch
- Correctly return the state as
$true
or$false
depending on theEnsure
property when the switch does not exist.
- Correctly return the state as
Dependencies
- puppetlabs/pwshlib (>= 1.2.0 < 2.0.0)