exports/ProxyCmdletDefinitions.ps1
# ---------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # http://www.apache.org/licenses/LICENSE-2.0 # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code # is regenerated. # ---------------------------------------------------------------------------------- <# .Synopsis Retrieves the properties of a Lab Plan. .Description Retrieves the properties of a Lab Plan. .Example PS C:\> Get-AzLabServicesLabPlan Location Name Type -------- ---- ---- westus2 plan1 Microsoft.LabServices/labPlans westus2 plan2 Microsoft.LabServices/labPlans westus2 plan3 Microsoft.LabServices/labPlans .Inputs System.String .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabserviceslabplan #> function Get-AzLabServicesLabPlan { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='ListByLabPlanName', Mandatory)] [Alias('LabPlanName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${Name}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List1', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='List')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Query')] [System.String] # The filter to apply to the operation. ${Filter}, [Parameter(ParameterSetName='ResourceId', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.private\Get-AzLabServicesLabPlan_Get'; List = 'Az.LabServices.private\Get-AzLabServicesLabPlan_List'; List1 = 'Az.LabServices.private\Get-AzLabServicesLabPlan_List1'; ListByLabPlanName = 'Az.LabServices.custom\Get-AzLabServicesLabPlan_ListByLabPlanName'; ResourceId = 'Az.LabServices.custom\Get-AzLabServicesLabPlan_ResourceId'; } if (('Get', 'List', 'List1', 'ListByLabPlanName', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Gets an image resource. .Description Gets an image resource. .Example PS C:\> Get-AzLabServicesPlanImage -LabPlanName "Plan Name" -ResourceGroupName "Group Name" Name ---- 128technology.128t_networking_platform.128t_networking_platform 128technology.128technology_conductor_hourly.128technology_conductor_hourly_427 128technology.128technology_conductor_hourly.128technology_conductor_hourly_452 .Example PS C:\> Get-AzLabServicesPlanImage -LabPlanName "Plan Name" -ResourceGroupName "Group Name" -Name 'canonical.0001-com-ubuntu-server-focal.20_04-lts' Name ---- canonical.0001-com-ubuntu-server-focal.20_04-lts .Example PS C:\> Get-AzLabServicesPlanImage -LabPlanName "Plan Name" -ResourceGroupName "Group Name" -DisplayName 'Ubuntu Server 20.04 LTS' Name ---- canonical.0001-com-ubuntu-server-focal.20_04-lts .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan .Inputs System.String .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IImage .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicesplanimage #> function Get-AzLabServicesPlanImage { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IImage])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Parameter(ParameterSetName='ListByDisplayName', Mandatory, ValueFromPipelineByPropertyName)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${LabPlanName}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='LabPlan')] [Alias('ImageName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The image name. ${Name}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Parameter(ParameterSetName='ListByDisplayName', Mandatory, ValueFromPipelineByPropertyName)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ListByDisplayName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${DisplayName}, [Parameter(ParameterSetName='List')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Query')] [System.String] # The filter to apply to the operation. ${Filter}, [Parameter(ParameterSetName='LabPlan', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.private\Get-AzLabServicesPlanImage_Get'; List = 'Az.LabServices.private\Get-AzLabServicesPlanImage_List'; LabPlan = 'Az.LabServices.custom\Get-AzLabServicesPlanImage_LabPlan'; ListByDisplayName = 'Az.LabServices.custom\Get-AzLabServicesPlanImage_ListByDisplayName'; ResourceId = 'Az.LabServices.custom\Get-AzLabServicesPlanImage_ResourceId'; } if (('Get', 'List', 'LabPlan', 'ListByDisplayName', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Returns the properties of a lab Schedule. .Description Returns the properties of a lab Schedule. .Example PS C:\> Get-AzLabSchedule -ResourceGroupName "group name" -LabName "lab name" Name Type ---- ---- schedule Microsoft.LabServices/labs/schedules secondschedule Microsoft.LabServices/labs/schedules .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicesschedule #> function Get-AzLabServicesSchedule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule])] [CmdletBinding(DefaultParameterSetName='LabObject', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='Lab')] [Alias('ScheduleName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the schedule that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='List')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Query')] [System.String] # The filter to apply to the operation. ${Filter}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='LabObject', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.private\Get-AzLabServicesSchedule_Get'; List = 'Az.LabServices.private\Get-AzLabServicesSchedule_List'; Lab = 'Az.LabServices.custom\Get-AzLabServicesSchedule_Lab'; LabObject = 'Az.LabServices.custom\Get-AzLabServicesSchedule_LabObject'; } if (('Get', 'List', 'Lab', 'LabObject') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Returns the properties of a lab user. .Description Returns the properties of a lab user. .Example PS C:\> Get-AzLabServicesUser -LabName "Lab Name" -ResourceGroupName "Group Name" Name ---- testuser .Example PS C:\> Get-AzLabServicesUser -LabName "Lab Name" -ResourceGroupName "Group Name" -Name "testuser" Name ---- testuser .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicesuser #> function Get-AzLabServicesUser { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='Lab')] [Alias('UserName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='List')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Query')] [System.String] # The filter to apply to the operation. ${Filter}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.private\Get-AzLabServicesUser_Get'; List = 'Az.LabServices.private\Get-AzLabServicesUser_List'; Lab = 'Az.LabServices.custom\Get-AzLabServicesUser_Lab'; ResourceId = 'Az.LabServices.custom\Get-AzLabServicesUser_ResourceId'; } if (('Get', 'List', 'Lab', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Returns the properties for a lab virtual machine. .Description Returns the properties for a lab virtual machine. .Example PS C:\> Get-AzLabServicesVM -LabName "Lab Name" -ResourceGroupName "Group Name" Name ---- 0 1 2 .Example PS C:\> Get-AzLabServicesVM -LabName "Lab Name" -ResourceGroupName "Group Name" -Name 2 Name ---- 2 .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicesvm #> function Get-AzLabServicesVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='Lab')] [Alias('VirtualMachineName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='List', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='List')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Query')] [System.String] # The filter to apply to the operation. ${Filter}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.private\Get-AzLabServicesVM_Get'; List = 'Az.LabServices.private\Get-AzLabServicesVM_List'; Lab = 'Az.LabServices.custom\Get-AzLabServicesVM_Lab'; } if (('Get', 'List', 'Lab') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to create or update a Lab Plan resource. .Description Operation to create or update a Lab Plan resource. .Example PS C:\> New-AzLabServicesLabPlan ` -LabPlanName "testplan" ` -ResourceGroupName "Group Name" ` -Location "westus2" ` -AllowedRegion @('westus2', 'eastus2') ` -DefaultAutoShutdownProfileShutdownOnDisconnect Disabled ` -DefaultAutoShutdownProfileShutdownOnIdle None ` -DefaultAutoShutdownProfileShutdownWhenNotConnected Disabled ` -DefaultConnectionProfileClientRdpAccess Public ` -DefaultConnectionProfileClientSshAccess None ` -SupportInfoEmail 'test@contoso.com' ` -SupportInfoInstruction 'test information' ` -SupportInfoPhone '123-456-7890' ` -SupportInfoUrl 'https:\\test.com' ` -DefaultConnectionProfileWebRdpAccess None ` -DefaultConnectionProfileWebSshAccess None Location Name -------- ---- westus2 testplan .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan .Link https://docs.microsoft.com/powershell/module/az.labservices/new-azlabserviceslabplan #> function New-AzLabServicesLabPlan { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Alias('LabPlanName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The geo-location where the resource lives ${Location}, [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String[]] # The allowed regions for the lab creator to use when creating labs using this lab plan. ${AllowedRegion}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running after a user disconnects if this behavior is enabled. ${DefaultAutoShutdownProfileDisconnectDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will idle before it is shutdown if this behavior is enabled. ${DefaultAutoShutdownProfileIdleDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. ${DefaultAutoShutdownProfileNoConnectDelay}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether shutdown on disconnect is enabled ${DefaultAutoShutdownProfileShutdownOnDisconnect}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode] # Whether a VM will get shutdown when it has idled for a period of time. ${DefaultAutoShutdownProfileShutdownOnIdle}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether a VM will get shutdown when it hasn't been connected to after a period of time. ${DefaultAutoShutdownProfileShutdownWhenNotConnected}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over RDP. ${DefaultConnectionProfileClientRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over SSH. ${DefaultConnectionProfileClientSshAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over RDP. ${DefaultConnectionProfileWebRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over SSH. ${DefaultConnectionProfileWebSshAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The external subnet resource id ${DefaultNetworkProfileSubnetId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Base Url of the lms instance this lab plan can link lab rosters against. ${LinkedLmsInstance}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Resource ID of the Shared Image Gallery attached to this lab plan. # When saving a lab template virtual machine image it will be persisted in this gallery. # Shared images from the gallery can be made available to use when creating new labs. ${SharedGalleryId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support contact email address. ${SupportInfoEmail}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support instructions. ${SupportInfoInstruction}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support contact phone number. ${SupportInfoPhone}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support web address. ${SupportInfoUrl}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20.ITrackedResourceTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ CreateExpanded = 'Az.LabServices.private\New-AzLabServicesLabPlan_CreateExpanded'; } if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to create or update a lab schedule. .Description Operation to create or update a lab schedule. .Example PS C:\> New-AzLabServicesSchedule ` -ResourceGroupName "Group Name" ` -LabName "Lab Name" ` -Name "Schedule Name" ` -StartAt "$((Get-Date).AddHours(5))" ` -StopAt "$((Get-Date).AddHours(6))" ` -RecurrencePatternFrequency 'Weekly' ` -RecurrencePatternInterval 1 ` -RecurrencePatternWeekDay @($((Get-Date).DayOfWeek)) ` -RecurrencePatternExpirationDate $((Get-Date).AddDays(20)) ` -TimeZoneId 'America/Los_Angeles' Name ---- Schedule Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/new-azlabservicesschedule #> function New-AzLabServicesSchedule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Alias('ScheduleName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the schedule that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Notes for this schedule. ${Note}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When the recurrence will expire. # This date is inclusive. ${RecurrencePatternExpirationDate}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.RecurrenceFrequency])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.RecurrenceFrequency] # The frequency of the recurrence. ${RecurrencePatternFrequency}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Int32] # The interval to invoke the schedule on. # For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. # When no interval is supplied, an interval of 1 is used. ${RecurrencePatternInterval}, [Parameter()] [AllowEmptyCollection()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.WeekDay])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.WeekDay[]] # The week days the schedule runs. # Used for when the Frequency is set to Weekly. ${RecurrencePatternWeekDay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When lab user virtual machines will be started. # Timestamp offsets will be ignored and timeZoneId is used instead. ${StartAt}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When lab user virtual machines will be stopped. # Timestamp offsets will be ignored and timeZoneId is used instead. ${StopAt}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The IANA timezone id for the schedule. ${TimeZoneId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ CreateExpanded = 'Az.LabServices.private\New-AzLabServicesSchedule_CreateExpanded'; Lab = 'Az.LabServices.custom\New-AzLabServicesSchedule_Lab'; } if (('CreateExpanded', 'Lab') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to create or update a lab user. .Description Operation to create or update a lab user. .Example PS C:\> New-AzLabServicesUser -LabName "Lab Name" -ResourceGroupName "Group Name" -Name "User Name" -Email "User@contoso.com" Name ---- User Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/new-azlabservicesuser #> function New-AzLabServicesUser { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser])] [CmdletBinding(DefaultParameterSetName='CreateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Alias('UserName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='CreateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipelineByPropertyName)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Email address of the user. ${Email}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of usage quota time the user gets in addition to the lab usage quota. ${AdditionalUsageQuota}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ CreateExpanded = 'Az.LabServices.private\New-AzLabServicesUser_CreateExpanded'; Lab = 'Az.LabServices.custom\New-AzLabServicesUser_Lab'; } if (('CreateExpanded', 'Lab') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Publish or re-publish a lab. This will create or update all lab resources, such as virtual machines. .Description Publish or re-publish a lab. This will create or update all lab resources, such as virtual machines. .Example PS C:\> Publish-AzLabServicesLab -Name "Lab Name" -ResourceGroupName "Group Name" Location Name -------- ---- eastus2 Lab Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/publish-azlabserviceslab #> function Publish-AzLabServicesLab { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Publish', Mandatory)] [Alias('LabName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Publish', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='Lab')] [Parameter(ParameterSetName='ResourceId')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Object] ${AdditionalUsageQuota}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='Publish')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Publish = 'Az.LabServices.private\Publish-AzLabServicesLab_Publish'; Lab = 'Az.LabServices.custom\Publish-AzLabServicesLab_Lab'; ResourceId = 'Az.LabServices.custom\Publish-AzLabServicesLab_ResourceId'; } if (('Publish', 'Lab', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to delete a Lab Plan resource. Deleting a lab plan does not delete labs associated with a lab plan, nor does it delete shared images added to a gallery via the lab plan permission container. .Description Operation to delete a Lab Plan resource. Deleting a lab plan does not delete labs associated with a lab plan, nor does it delete shared images added to a gallery via the lab plan permission container. .Example PS C:\> Remove-AzLabServicesLabPlan -ResourceGroupName "Group Name" -Name "Lab Plan Name" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/remove-azlabserviceslabplan #> function Remove-AzLabServicesLabPlan { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='Delete', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Delete', Mandatory)] [Alias('LabPlanName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${Name}, [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='LabPlan', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Delete = 'Az.LabServices.private\Remove-AzLabServicesLabPlan_Delete'; LabPlan = 'Az.LabServices.custom\Remove-AzLabServicesLabPlan_LabPlan'; } if (('Delete', 'LabPlan') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to delete a lab resource. .Description Operation to delete a lab resource. .Example PS C:\> Remove-AzLabServicesLab -ResourceGroupName "Group Name" -Name "Lab Name" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/remove-azlabserviceslab #> function Remove-AzLabServicesLab { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Delete', Mandatory)] [Parameter(ParameterSetName='LabPlan', Mandatory)] [Alias('LabName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='LabPlan', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Delete = 'Az.LabServices.private\Remove-AzLabServicesLab_Delete'; Lab = 'Az.LabServices.custom\Remove-AzLabServicesLab_Lab'; LabPlan = 'Az.LabServices.custom\Remove-AzLabServicesLab_LabPlan'; ResourceId = 'Az.LabServices.custom\Remove-AzLabServicesLab_ResourceId'; } if (('Delete', 'Lab', 'LabPlan', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to delete a schedule resource. .Description Operation to delete a schedule resource. .Example PS C:\> Remove-AzLabServicesSchedule -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "Schedule Name" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Schedule .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. SCHEDULE <Schedule>: [Note <String>]: Notes for this schedule. [RecurrencePatternExpirationDate <DateTime?>]: When the recurrence will expire. This date is inclusive. [RecurrencePatternFrequency <RecurrenceFrequency?>]: The frequency of the recurrence. [RecurrencePatternInterval <Int32?>]: The interval to invoke the schedule on. For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. When no interval is supplied, an interval of 1 is used. [RecurrencePatternWeekDay <WeekDay[]>]: The week days the schedule runs. Used for when the Frequency is set to Weekly. [StartAt <DateTime?>]: When lab user virtual machines will be started. Timestamp offsets will be ignored and timeZoneId is used instead. [StopAt <DateTime?>]: When lab user virtual machines will be stopped. Timestamp offsets will be ignored and timeZoneId is used instead. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [TimeZoneId <String>]: The IANA timezone id for the schedule. .Link https://docs.microsoft.com/powershell/module/az.labservices/remove-azlabservicesschedule #> function Remove-AzLabServicesSchedule { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Delete', Mandatory)] [Alias('ScheduleName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the schedule that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Schedule', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Schedule] # To construct, see NOTES section for SCHEDULE properties and create a hash table. ${Schedule}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Delete = 'Az.LabServices.private\Remove-AzLabServicesSchedule_Delete'; ResourceId = 'Az.LabServices.custom\Remove-AzLabServicesSchedule_ResourceId'; Schedule = 'Az.LabServices.custom\Remove-AzLabServicesSchedule_Schedule'; } if (('Delete', 'ResourceId', 'Schedule') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to delete a user resource. .Description Operation to delete a user resource. .Example PS C:\> Remove-AzLabServicesUser -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "User Name" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/remove-azlabservicesuser #> function Remove-AzLabServicesUser { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Delete', Mandatory)] [Parameter(ParameterSetName='Lab', Mandatory)] [Alias('UserName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Delete', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipelineByPropertyName)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='User', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Delete = 'Az.LabServices.private\Remove-AzLabServicesUser_Delete'; Lab = 'Az.LabServices.custom\Remove-AzLabServicesUser_Lab'; ResourceId = 'Az.LabServices.custom\Remove-AzLabServicesUser_ResourceId'; User = 'Az.LabServices.custom\Remove-AzLabServicesUser_User'; } if (('Delete', 'Lab', 'ResourceId', 'User') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Saves an image from a lab VM to the attached shared image gallery. .Description Saves an image from a lab VM to the attached shared image gallery. .Example PS C:\> Save-AzLabServicesLabPlanImage -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "New Image Name" -LabVirtualMachineId "/subscriptions/<subscription Id>/resourceGroups/<group name>/providers/Microsoft.LabServices/labs/labName/virtualMachines/<vm name>" .Outputs System.Boolean .Link https://docs.microsoft.com/powershell/module/az.labservices/save-azlabserviceslabplanimage #> function Save-AzLabServicesLabPlanImage { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='SaveExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${LabPlanName}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The ID of the lab virtual machine you want to save an image from. ${LabVirtualMachineId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The name for the image we create. ${Name}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ SaveExpanded = 'Az.LabServices.private\Save-AzLabServicesLabPlanImage_SaveExpanded'; } if (('SaveExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to invite a user to a lab. .Description Operation to invite a user to a lab. .Example PS C:\> Send-AzLabServicesUserInvite -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "User Name" -Text "Welcome to the lab." .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/send-azlabservicesuserinvite #> function Send-AzLabServicesUserInvite { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='InviteExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='InviteExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='InviteExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniquely identifies it within containing lab. # Used in resource URIs. ${UserName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Custom text for the invite email. ${Text}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='Users', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='InviteExpanded')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ InviteExpanded = 'Az.LabServices.private\Send-AzLabServicesUserInvite_InviteExpanded'; ResourceId = 'Az.LabServices.custom\Send-AzLabServicesUserInvite_ResourceId'; Users = 'Az.LabServices.custom\Send-AzLabServicesUserInvite_Users'; } if (('InviteExpanded', 'ResourceId', 'Users') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Action to redeploy a lab virtual machine to a different compute node. For troubleshooting connectivity. .Description Action to redeploy a lab virtual machine to a different compute node. For troubleshooting connectivity. .Example PS C:\> Start-AzLabServicesVMRedeployment -LabName "Lab Name" -ResourceGroupName "Group Name" -VirtualMachineName 1 .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Link https://docs.microsoft.com/powershell/module/az.labservices/start-azlabservicesvmredeployment #> function Start-AzLabServicesVMRedeployment { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Redeploy', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Redeploy', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Redeploy', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${VirtualMachineName}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Redeploy = 'Az.LabServices.private\Start-AzLabServicesVMRedeployment_Redeploy'; ResourceId = 'Az.LabServices.custom\Start-AzLabServicesVMRedeployment_ResourceId'; } if (('Redeploy', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Action to start a lab virtual machine. .Description Action to start a lab virtual machine. .Example PS C:\> Start-AzLabServicesVM -ResourceGroupName "Group Name" -LabName "Lab Name" -Name 0 .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. VM <VirtualMachine>: [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/start-azlabservicesvm #> function Start-AzLabServicesVM { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Start', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Start', Mandatory)] [Alias('VirtualMachineName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Start', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='VM', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine] # To construct, see NOTES section for VM properties and create a hash table. ${VM}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='Start')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Start = 'Az.LabServices.private\Start-AzLabServicesVM_Start'; ResourceId = 'Az.LabServices.custom\Start-AzLabServicesVM_ResourceId'; VM = 'Az.LabServices.custom\Start-AzLabServicesVM_VM'; } if (('Start', 'ResourceId', 'VM') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Action to stop a lab virtual machine. .Description Action to stop a lab virtual machine. .Example PS C:\> Stop-AzLabServicesVM -ResourceGroupName "Group Name" -LabName "Lab Name" -Name 0 .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. VM <VirtualMachine>: [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/stop-azlabservicesvm #> function Stop-AzLabServicesVM { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Stop', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Stop', Mandatory)] [Alias('VirtualMachineName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Stop', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='VM', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine] # To construct, see NOTES section for VM properties and create a hash table. ${VM}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='Stop')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Stop = 'Az.LabServices.private\Stop-AzLabServicesVM_Stop'; ResourceId = 'Az.LabServices.custom\Stop-AzLabServicesVM_ResourceId'; VM = 'Az.LabServices.custom\Stop-AzLabServicesVM_VM'; } if (('Stop', 'ResourceId', 'VM') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Action used to manually kick off an AAD group sync job. .Description Action used to manually kick off an AAD group sync job. .Example PS C:\> Sync-AzLabServicesLabUser -ResourceGroupName "Group Name" -LabName "Lab Name" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/sync-azlabserviceslabuser #> function Sync-AzLabServicesLabUser { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser])] [CmdletBinding(DefaultParameterSetName='Sync', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Sync', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Sync', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='Sync')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Sync = 'Az.LabServices.private\Sync-AzLabServicesLabUser_Sync'; Lab = 'Az.LabServices.custom\Sync-AzLabServicesLabUser_Lab'; } if (('Sync', 'Lab') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to update a Lab Plan resource. .Description Operation to update a Lab Plan resource. .Example PS C:\> Update-AzLabServicesLabPlan -ResourceGroupName "Group Name" -Name "LabPlan Name" -DefaultAutoShutdownProfileShutdownOnDisconnect 'Enabled' -DefaultAutoShutdownProfileDisconnectDelay "00:17:00" Location Name -------- ---- westus2 LabPlan Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabserviceslabplan #> function Update-AzLabServicesLabPlan { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILabPlan])] [CmdletBinding(DefaultParameterSetName='UpdateExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Alias('LabPlanName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='LabPlan', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String[]] # The allowed regions for the lab creator to use when creating labs using this lab plan. ${AllowedRegion}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running after a user disconnects if this behavior is enabled. ${DefaultAutoShutdownProfileDisconnectDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will idle before it is shutdown if this behavior is enabled. ${DefaultAutoShutdownProfileIdleDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. ${DefaultAutoShutdownProfileNoConnectDelay}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether shutdown on disconnect is enabled ${DefaultAutoShutdownProfileShutdownOnDisconnect}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode] # Whether a VM will get shutdown when it has idled for a period of time. ${DefaultAutoShutdownProfileShutdownOnIdle}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether a VM will get shutdown when it hasn't been connected to after a period of time. ${DefaultAutoShutdownProfileShutdownWhenNotConnected}, [Parameter(ParameterSetName='UpdateExpanded')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over RDP. ${DefaultConnectionProfileClientRdpAccess}, [Parameter(ParameterSetName='UpdateExpanded')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over SSH. ${DefaultConnectionProfileClientSshAccess}, [Parameter(ParameterSetName='UpdateExpanded')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over RDP. ${DefaultConnectionProfileWebRdpAccess}, [Parameter(ParameterSetName='UpdateExpanded')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over SSH. ${DefaultConnectionProfileWebSshAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The external subnet resource id ${DefaultNetworkProfileSubnetId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Base Url of the lms instance this lab plan can link lab rosters against. ${LinkedLmsInstance}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Resource ID of the Shared Image Gallery attached to this lab plan. # When saving a lab template virtual machine image it will be persisted in this gallery. # Shared images from the gallery can be made available to use when creating new labs. ${SharedGalleryId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support contact email address. ${SupportInfoEmail}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support instructions. ${SupportInfoInstruction}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support contact phone number. ${SupportInfoPhone}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Support web address. ${SupportInfoUrl}, [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String[]] # Resource tags. ${Tag}, [Parameter(ParameterSetName='LabPlan')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] ${DefaultConnectionProfileClientRdpAccessEnabled}, [Parameter(ParameterSetName='LabPlan')] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] ${DefaultConnectionProfileClientSshAccessEnabled}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ UpdateExpanded = 'Az.LabServices.private\Update-AzLabServicesLabPlan_UpdateExpanded'; LabPlan = 'Az.LabServices.custom\Update-AzLabServicesLabPlan_LabPlan'; } if (('UpdateExpanded', 'LabPlan') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Updates an image resource. .Description Updates an image resource. .Example PS C:\> Update-AzLabServicesPlanImage -ResourceGroupName "Group Name" -LabPlanName "LabPlan Name" -Name "Image Name" -EnabledState "Enabled" Name ---- Image Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IImage .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabservicesplanimage #> function Update-AzLabServicesPlanImage { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IImage])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab plan that uniquely identifies it within containing resource group. # Used in resource URIs and in UI. ${LabPlanName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Parameter(ParameterSetName='LabPlan', Mandatory)] [Alias('ImageName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The image name. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='LabPlan', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Is the image enabled ${EnabledState}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials}, [Parameter(ParameterSetName='ResourceId')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] ${AsJob}, [Parameter(ParameterSetName='ResourceId')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] ${NoWait} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ UpdateExpanded = 'Az.LabServices.private\Update-AzLabServicesPlanImage_UpdateExpanded'; LabPlan = 'Az.LabServices.custom\Update-AzLabServicesPlanImage_LabPlan'; ResourceId = 'Az.LabServices.custom\Update-AzLabServicesPlanImage_ResourceId'; } if (('UpdateExpanded', 'LabPlan', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to update a lab schedule. .Description Operation to update a lab schedule. .Example PS C:\> Update-AzLabServicesSchedule -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "Schedule Name" -Note "Update note." Name Type ---- ---- Schedule Name Microsoft.LabServices/labs/schedules .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabservicesschedule #> function Update-AzLabServicesSchedule { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ISchedule])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Parameter(ParameterSetName='Lab', Mandatory)] [Alias('ScheduleName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the schedule that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Notes for this schedule. ${Note}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When the recurrence will expire. # This date is inclusive. ${RecurrencePatternExpirationDate}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.RecurrenceFrequency])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.RecurrenceFrequency] # The frequency of the recurrence. ${RecurrencePatternFrequency}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Int32] # The interval to invoke the schedule on. # For example, interval = 2 and RecurrenceFrequency.Daily will run every 2 days. # When no interval is supplied, an interval of 1 is used. ${RecurrencePatternInterval}, [Parameter()] [AllowEmptyCollection()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.WeekDay])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.WeekDay[]] # The week days the schedule runs. # Used for when the Frequency is set to Weekly. ${RecurrencePatternWeekDay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When lab user virtual machines will be started. # Timestamp offsets will be ignored and timeZoneId is used instead. ${StartAt}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.DateTime] # When lab user virtual machines will be stopped. # Timestamp offsets will be ignored and timeZoneId is used instead. ${StopAt}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The IANA timezone id for the schedule. ${TimeZoneId}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ UpdateExpanded = 'Az.LabServices.private\Update-AzLabServicesSchedule_UpdateExpanded'; Lab = 'Az.LabServices.custom\Update-AzLabServicesSchedule_Lab'; ResourceId = 'Az.LabServices.custom\Update-AzLabServicesSchedule_ResourceId'; } if (('UpdateExpanded', 'Lab', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to update a lab user. .Description Operation to update a lab user. .Example PS C:\> Update-AzLabServicesUser -ResourceGroupName "Group Name" -LabName "Lab Name" -Name "User Name" -AdditionalUsageQuota $(New-TimeSpan -Hours 2) Name ---- User Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabservicesuser #> function Update-AzLabServicesUser { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Parameter(ParameterSetName='Lab', Mandatory)] [Alias('UserName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniquely identifies it within containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='UpdateExpanded', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of usage quota time the user gets in addition to the lab usage quota. ${AdditionalUsageQuota}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ UpdateExpanded = 'Az.LabServices.private\Update-AzLabServicesUser_UpdateExpanded'; Lab = 'Az.LabServices.custom\Update-AzLabServicesUser_Lab'; ResourceId = 'Az.LabServices.custom\Update-AzLabServicesUser_ResourceId'; } if (('UpdateExpanded', 'Lab', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Re-image a lab virtual machine. The virtual machine will be deleted and recreated using the latest published snapshot of the reference environment of the lab. .Description Re-image a lab virtual machine. The virtual machine will be deleted and recreated using the latest published snapshot of the reference environment of the lab. .Example PS C:\> Update-AzLabServicesVMReimage -ResourceGroupName "Group Name" -LabName "Lab Name" -Name 0 Name ---- 0 .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. VM <VirtualMachine>: [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabservicesvmreimage #> function Update-AzLabServicesVMReimage { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Reimage', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Reimage', Mandatory)] [Alias('VirtualMachineName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${Name}, [Parameter(ParameterSetName='Reimage', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='VM', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine] # To construct, see NOTES section for VM properties and create a hash table. ${VM}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(ParameterSetName='Reimage')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Reimage = 'Az.LabServices.private\Update-AzLabServicesVMReimage_Reimage'; ResourceId = 'Az.LabServices.custom\Update-AzLabServicesVMReimage_ResourceId'; VM = 'Az.LabServices.custom\Update-AzLabServicesVMReimage_VM'; } if (('Reimage', 'ResourceId', 'VM') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to add additional user quota. .Description API to add additional user quota. .Example PS C:\> Add-AzLabUserQuota -ResourceGroupName "group name" -LabName "lab name" -Email 'student@contoso.com' -UsageQuotaToAddToExisting $(New-Timespan -Hours 4) Name Type ---- ---- testuser Microsoft.LabServices/labs/users .Example PS C:\> $user = Get-AzLabUser -ResourceGroupName "group name" -LabName "lab name" -UserName 'ContosoUser12345' PS C:\> $user | Add-AzLabUserQuota -UsageQuotaToAddToExisting $(New-Timespan -Hours 5) Name Type ---- ---- ContosoUser12345 Microsoft.LabServices/labs/users .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/add-azlabservicesuserquota #> function Add-AzLabServicesUserQuota { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IUser])] [CmdletBinding(DefaultParameterSetName='User', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Email', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='Email', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter(ParameterSetName='Email', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniqely identifies it within containing lab. # Used in resource URIs. ${Email}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of usage quota time the user gets in addition to the current user quota. ${UsageQuotaToAddToExisting}, [Parameter(ParameterSetName='User', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Email = 'Az.LabServices.custom\Add-AzLabServicesUserQuota_Email'; User = 'Az.LabServices.custom\Add-AzLabServicesUserQuota_User'; } if (('Email', 'User') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to return the lab for a specific VM. .Description API to return the lab for a specific VM. .Example PS C:\> Get-AzLabServicesLabForVm -ResourceId '/subscriptions/<SubscriptionID>/resourceGroups/<GroupName>/providers/Microsoft.LabServices/labs/<labName>/virtualMachines/<VMName>' Location Name Type -------- ---- ---- westus2 labName Microsoft.LabServices/labs .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabserviceslabforvm #> function Get-AzLabServicesLabForVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ __AllParameterSets = 'Az.LabServices.custom\Get-AzLabServicesLabForVM'; } if (('__AllParameterSets') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to get labs. .Description API to get labs. .Example PS C:\> Get-AzLab Location Name Type -------- ---- ---- westus2 Lab1 Microsoft.LabServices/labs westus2 Lab2 Microsoft.LabServices/labs westus2 Lab3 Microsoft.LabServices/labs westus2 Lab4 Microsoft.LabServices/labs .Example PS C:\> Get-AzLab -ResourceGroupName 'yourgroupname' -Name 'yourlabname' Location Name Type -------- ---- ---- westus2 yourlabName Microsoft.LabServices/labs .Example PS C:\> $plan = Get-AzLabPlan -LabPlanName 'lab plan name' PS C:\> $plan | Get-AzLab -Name 'lab name' Location Name Type -------- ---- ---- westus2 lab Name Microsoft.LabServices/labs .Example PS C:\> Get-AzLab -ResourceGroupName 'group name' -Name '*lab name' Location Name Type -------- ---- ---- westus2 yourlab Name Microsoft.LabServices/labs westus2 anotherlab Name Microsoft.LabServices/labs .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LABPLAN <LabPlan>: Location <String>: The geo-location where the resource lives [AllowedRegion <String[]>]: The allowed regions for the lab creator to use when creating labs using this lab plan. [DefaultAutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [DefaultAutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [DefaultAutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [DefaultAutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [DefaultAutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [DefaultAutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [DefaultConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [DefaultConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [DefaultConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [DefaultConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [DefaultNetworkProfileSubnetId <String>]: The external subnet resource id [LinkedLmsInstance <String>]: Base Url of the lms instance this lab plan can link lab rosters against. [SharedGalleryId <String>]: Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs. [SupportInfoEmail <String>]: Support contact email address. [SupportInfoInstruction <String>]: Support instructions. [SupportInfoPhone <String>]: Support contact phone number. [SupportInfoUrl <String>]: Support web address. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabserviceslab #> function Get-AzLabServicesLab { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(DefaultParameterSetName='ListBySubscription', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='LabPlan')] [Parameter(ParameterSetName='ListByLabName', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${Name}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='LabPlan', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.LabPlan] # To construct, see NOTES section for LABPLAN properties and create a hash table. ${LabPlan}, [Parameter(ParameterSetName='ListByLabName')] [Parameter(ParameterSetName='ListByResourceGroup', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ LabPlan = 'Az.LabServices.custom\Get-AzLabServicesLab_LabPlan'; ListByLabName = 'Az.LabServices.custom\Get-AzLabServicesLab_ListByLabName'; ListByResourceGroup = 'Az.LabServices.custom\Get-AzLabServicesLab_ListByResourceGroup'; ListBySubscription = 'Az.LabServices.custom\Get-AzLabServicesLab_ListBySubscription'; ResourceId = 'Az.LabServices.custom\Get-AzLabServicesLab_ResourceId'; } if (('LabPlan', 'ListByLabName', 'ListByResourceGroup', 'ListBySubscription', 'ResourceId') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to get the template vm for the lab. .Description API to get the template vm for the lab. .Example PS C:\> Get-AzLabTemplateVM -ResourceGroupName "group name" -LabName "lab name" Name Type ---- ---- 0 Microsoft.LabServices/labs/virtualMachines .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicestemplatevm #> function Get-AzLabServicesTemplateVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='Get', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.custom\Get-AzLabServicesTemplateVM_Get'; Lab = 'Az.LabServices.custom\Get-AzLabServicesTemplateVM_Lab'; } if (('Get', 'Lab') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to get the assigned vm for the user. .Description API to get the assigned vm for the user. .Example PS C:\> Get-AzLabServicesUserVM -ResourceGroupName "Group Name" -LabName "Lab Name" -Email 'user@contoso.com' Name ---- 0 .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/get-azlabservicesuservm #> function Get-AzLabServicesUserVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='Get', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter(ParameterSetName='Get', Mandatory)] [Parameter(ParameterSetName='Lab', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${Email}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String[]] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Lab', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='User', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Get = 'Az.LabServices.custom\Get-AzLabServicesUserVM_Get'; Lab = 'Az.LabServices.custom\Get-AzLabServicesUserVM_Lab'; ResourceId = 'Az.LabServices.custom\Get-AzLabServicesUserVM_ResourceId'; User = 'Az.LabServices.custom\Get-AzLabServicesUserVM_User'; } if (('Get', 'Lab', 'ResourceId', 'User') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to create a lab resource. .Description Operation to create a lab resource. .Example PS C:\> New-AzLabServicesLab ` -Name "NewLab" ` -ResourceGroupName $ENV:ResourceGroupName ` -Location $ENV:Location ` -AdditionalCapabilityInstallGpuDriver Disabled ` -AdminUserPassword "PlaceholderPassword" ` -AdminUserUsername "PlaceholderAccountName" ` -AutoShutdownProfileShutdownOnDisconnect Disabled ` -AutoShutdownProfileShutdownOnIdle None ` -AutoShutdownProfileShutdownWhenNotConnected Disabled ` -ConnectionProfileClientRdpAccess Public ` -ConnectionProfileClientSshAccess None ` -ConnectionProfileWebRdpAccess None ` -ConnectionProfileWebSshAccess None ` -Description "New lab description" ` -ImageReferenceOffer "Windows-10" ` -ImageReferencePublisher "MicrosoftWindowsDesktop" ` -ImageReferenceSku "20h2-pro" ` -ImageReferenceVersion "latest" ` -SecurityProfileOpenAccess Disabled ` -SkuCapacity 3 ` -SkuName "Standard" ` -Title $ENV:NewLabName ` -VirtualMachineProfileCreateOption "TemplateVM" ` -VirtualMachineProfileUseSharedPassword Enabled Location Name -------- ---- westus2 NewLab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Link https://docs.microsoft.com/powershell/module/az.labservices/new-azlabserviceslab #> function New-AzLabServicesLab { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Alias('LabName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The geo-location where the resource lives ${Location}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Flag to pre-install dedicated GPU drivers. ${AdditionalCapabilityInstallGpuDriver}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Security.SecureString] # The password for the user. # This is required for the TemplateVM createOption. ${AdminUserPassword}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The username to use when signing in to lab VMs. ${AdminUserUsername}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running after a user disconnects if this behavior is enabled. ${AutoShutdownProfileDisconnectDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will idle before it is shutdown if this behavior is enabled. ${AutoShutdownProfileIdleDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. ${AutoShutdownProfileNoConnectDelay}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether shutdown on disconnect is enabled ${AutoShutdownProfileShutdownOnDisconnect}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode] # Whether a VM will get shutdown when it has idled for a period of time. ${AutoShutdownProfileShutdownOnIdle}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether a VM will get shutdown when it hasn't been connected to after a period of time. ${AutoShutdownProfileShutdownWhenNotConnected}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over RDP. ${ConnectionProfileClientRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over SSH. ${ConnectionProfileClientSshAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over RDP. ${ConnectionProfileWebRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over SSH. ${ConnectionProfileWebSshAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The description of the lab. ${Description}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Image resource ID ${ImageReferenceId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image offer if applicable. ${ImageReferenceOffer}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image publisher ${ImageReferencePublisher}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image SKU ${ImageReferenceSku}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image version specified on creation. ${ImageReferenceVersion}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The ID of the lab plan. # Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. # Setting a labPlanId on an existing lab provides organization.. ${LabPlanId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The external load balancer resource id ${NetworkProfileLoadBalancerId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The external public IP resource id ${NetworkProfilePublicIPId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The external subnet resource id ${NetworkProfileSubnetId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Security.SecureString] # The password for the user. # This is required for the TemplateVM createOption. ${NonAdminUserPassword}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The username to use when signing in to lab VMs. ${NonAdminUserUsername}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The AAD group ID which this lab roster is populated from. # Having this set enables AAD sync mode. ${RosterProfileActiveDirectoryGroupId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The base URI identifying the lms instance. ${RosterProfileLmsInstance}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The unique id of the azure lab services tool in the lms. ${RosterProfileLtiClientId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The unique context identifier for the lab in the lms. ${RosterProfileLtiContextId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The uri of the names and roles service endpoint on the lms for the class attached to this lab. ${RosterProfileLtiRosterEndpoint}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether any user or only specified users can register to a lab. ${SecurityProfileOpenAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Int32] # If the SKU supports scale out/in then the capacity integer should be included. # If scale out/in is not possible for the resource this may be omitted. ${SkuCapacity}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # If the service has different generations of hardware, for the same SKU, then that can be captured here. ${SkuFamily}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The name of the SKU. # Ex - P3. # It is typically a letter+number code ${SkuName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The SKU size. # When the name field is the combination of tier and some other value, this would be the standalone code. ${SkuSize}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.SkuTier])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.SkuTier] # This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. ${SkuTier}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.Info(PossibleTypes=([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20.ITrackedResourceTags]))] [System.Collections.Hashtable] # Resource tags. ${Tag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The title of the lab. ${Title}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.CreateOption])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.CreateOption] # Indicates what lab virtual machines are created from. ${VirtualMachineProfileCreateOption}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The initial quota alloted to each lab user. # Must be a time span between 0 and 9999 hours. ${VirtualMachineProfileUsageQuota}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Enabling this option will use the same password for all user VMs. ${VirtualMachineProfileUseSharedPassword}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ __AllParameterSets = 'Az.LabServices.custom\New-AzLabServicesLab'; } if (('__AllParameterSets') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Resets a lab virtual machine password. .Description Resets a lab virtual machine password. .Example PS C:\> Reset-AzLabServicesVMPassword -ResourceGroupName "Group Name" -LabName "Lab Name" -VirtualMachineName 0 -Password "New Password" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Outputs System.Boolean .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. VM <VirtualMachine>: [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/reset-azlabservicesvmpassword #> function Reset-AzLabServicesVMPassword { [OutputType([System.Boolean], [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='ResourceId', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Reset', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${LabName}, [Parameter(ParameterSetName='Reset', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter(ParameterSetName='Reset', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The ID of the virtual machine that uniquely identifies it within the containing lab. # Used in resource URIs. ${VirtualMachineName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Security.SecureString] # The password ${Password}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The user whose password is being reset ${Username}, [Parameter(ParameterSetName='ResourceId', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] ${ResourceId}, [Parameter(ParameterSetName='VM', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.VirtualMachine] # To construct, see NOTES section for VM properties and create a hash table. ${VM}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Returns true when the command succeeds ${PassThru}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Reset = 'Az.LabServices.custom\Reset-AzLabServicesVMPassword_Reset'; ResourceId = 'Az.LabServices.custom\Reset-AzLabServicesVMPassword_ResourceId'; VM = 'Az.LabServices.custom\Reset-AzLabServicesVMPassword_VM'; } if (('Reset', 'ResourceId', 'VM') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to start the assigned vm for the user. .Description API to start the assigned vm for the user. .Example PS C:\> Start-AzLabServicesUserVM -ResourceGroupName "Group Name" -LabName "Lab Name" -Email "user@contoso.com" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/start-azlabservicesuservm #> function Start-AzLabServicesUserVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='Start', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Start', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='Start', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter(ParameterSetName='Start', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniqely identifies it within containing lab. # Used in resource URIs. ${Email}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='User', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Start = 'Az.LabServices.custom\Start-AzLabServicesUserVM_Start'; User = 'Az.LabServices.custom\Start-AzLabServicesUserVM_User'; } if (('Start', 'User') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to stop the assigned vm for the user. .Description API to stop the assigned vm for the user. .Example PS C:\> Stop-AzLabServicesUserVM -ResourceGroupName "Group Name" -LabName "Lab Name" -Email "user@contoso.com" .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. USER <User>: Email <String>: Email address of the user. [AdditionalUsageQuota <TimeSpan?>]: The amount of usage quota time the user gets in addition to the lab usage quota. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. .Link https://docs.microsoft.com/powershell/module/az.labservices/stop-azlabservicesuservm #> function Stop-AzLabServicesUserVM { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.IVirtualMachine])] [CmdletBinding(DefaultParameterSetName='Stop', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Stop', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${ResourceGroupName}, [Parameter(ParameterSetName='Stop', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter(ParameterSetName='Stop', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the user that uniqely identifies it within containing lab. # Used in resource URIs. ${Email}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='User', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.User] # To construct, see NOTES section for USER properties and create a hash table. ${User}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Stop = 'Az.LabServices.custom\Stop-AzLabServicesUserVM_Stop'; User = 'Az.LabServices.custom\Stop-AzLabServicesUserVM_User'; } if (('Stop', 'User') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis Operation to update a lab resource. .Description Operation to update a lab resource. .Example PS C:\> Update-AzLabServicesLab -ResourceGroupName "Group Name" -Name "Lab Name" -AutoShutdownProfileShutdownOnDisconnect Enabled -AutoShutdownProfileDisconnectDelay "00:25:00" Location Name -------- ---- westus2 Lab Name .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabserviceslab #> function Update-AzLabServicesLab { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(DefaultParameterSetName='Update', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(Mandatory)] [Alias('LabName')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the lab that uniquely identifies it within containing lab account. # Used in resource URIs. ${Name}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Flag to pre-install dedicated GPU drivers. ${AdditionalCapabilityInstallGpuDriver}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Security.SecureString] # The password for the user. # This is required for the TemplateVM createOption. ${AdminUserPassword}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The username to use when signing in to lab VMs. ${AdminUserUsername}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running after a user disconnects if this behavior is enabled. ${AutoShutdownProfileDisconnectDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will idle before it is shutdown if this behavior is enabled. ${AutoShutdownProfileIdleDelay}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. ${AutoShutdownProfileNoConnectDelay}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether shutdown on disconnect is enabled ${AutoShutdownProfileShutdownOnDisconnect}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ShutdownOnIdleMode] # Whether a VM will get shutdown when it has idled for a period of time. ${AutoShutdownProfileShutdownOnIdle}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether a VM will get shutdown when it hasn't been connected to after a period of time. ${AutoShutdownProfileShutdownWhenNotConnected}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over RDP. ${ConnectionProfileClientRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Client Access over SSH. ${ConnectionProfileClientSshAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over RDP. ${ConnectionProfileWebRdpAccess}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.ConnectionType] # The enabled access level for Web Access over SSH. ${ConnectionProfileWebSshAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The description of the lab. ${Description}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # Image resource ID ${ImageReferenceId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image offer if applicable. ${ImageReferenceOffer}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image publisher ${ImageReferencePublisher}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image SKU ${ImageReferenceSku}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The image version specified on creation. ${ImageReferenceVersion}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The ID of the lab plan. # Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. # Setting a labPlanId on an existing lab provides organization.. ${LabPlanId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Security.SecureString] # The password for the user. # This is required for the TemplateVM createOption. ${NonAdminUserPassword}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The username to use when signing in to lab VMs. ${NonAdminUserUsername}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The AAD group ID which this lab roster is populated from. # Having this set enables AAD sync mode. ${RosterProfileActiveDirectoryGroupId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The base URI identifying the lms instance. ${RosterProfileLmsInstance}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The unique id of the azure lab services tool in the lms. ${RosterProfileLtiClientId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The unique context identifier for the lab in the lms. ${RosterProfileLtiContextId}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The uri of the names and roles service endpoint on the lms for the class attached to this lab. ${RosterProfileLtiRosterEndpoint}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Whether any user or only specified users can register to a lab. ${SecurityProfileOpenAccess}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.Int32] # If the SKU supports scale out/in then the capacity integer should be included. # If scale out/in is not possible for the resource this may be omitted. ${SkuCapacity}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # If the service has different generations of hardware, for the same SKU, then that can be captured here. ${SkuFamily}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The name of the SKU. # Ex - P3. # It is typically a letter+number code ${SkuName}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The SKU size. # When the name field is the combination of tier and some other value, this would be the standalone code. ${SkuSize}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.SkuTier])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.SkuTier] # This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. ${SkuTier}, [Parameter()] [AllowEmptyCollection()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String[]] # Resource tags. ${Tag}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The title of the lab. ${Title}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.CreateOption])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.CreateOption] # Indicates what lab virtual machines are created from. ${VirtualMachineProfileCreateOption}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] # The initial quota alloted to each lab user. # Must be a time span between 0 and 9999 hours. ${VirtualMachineProfileUsageQuota}, [Parameter()] [ArgumentCompleter([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState])] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Support.EnableState] # Enabling this option will use the same password for all user VMs. ${VirtualMachineProfileUseSharedPassword}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Update = 'Az.LabServices.custom\Update-AzLabServicesLab_Update'; } if (('Update') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } <# .Synopsis API to update the lab quota. .Description API to update the lab quota. .Example PS C:\> Update-AzLabServicesQuota -ResourceGroupName "Group Name" -LabName "Lab Name" -LabQuota $(New-TimeSpan -Hours 3) Location Name -------- ---- westus2 Lab Name .Inputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .Notes COMPLEX PARAMETER PROPERTIES To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables. LAB <Lab>: Location <String>: The geo-location where the resource lives [AdditionalCapabilityInstallGpuDriver <EnableState?>]: Flag to pre-install dedicated GPU drivers. [AdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [AdminUserUsername <String>]: The username to use when signing in to lab VMs. [AutoShutdownProfileDisconnectDelay <TimeSpan?>]: The amount of time a VM will stay running after a user disconnects if this behavior is enabled. [AutoShutdownProfileIdleDelay <TimeSpan?>]: The amount of time a VM will idle before it is shutdown if this behavior is enabled. [AutoShutdownProfileNoConnectDelay <TimeSpan?>]: The amount of time a VM will stay running before it is shutdown if no connection is made and this behavior is enabled. [AutoShutdownProfileShutdownOnDisconnect <EnableState?>]: Whether shutdown on disconnect is enabled [AutoShutdownProfileShutdownOnIdle <ShutdownOnIdleMode?>]: Whether a VM will get shutdown when it has idled for a period of time. [AutoShutdownProfileShutdownWhenNotConnected <EnableState?>]: Whether a VM will get shutdown when it hasn't been connected to after a period of time. [ConnectionProfileClientRdpAccess <ConnectionType?>]: The enabled access level for Client Access over RDP. [ConnectionProfileClientSshAccess <ConnectionType?>]: The enabled access level for Client Access over SSH. [ConnectionProfileWebRdpAccess <ConnectionType?>]: The enabled access level for Web Access over RDP. [ConnectionProfileWebSshAccess <ConnectionType?>]: The enabled access level for Web Access over SSH. [Description <String>]: The description of the lab. [ImageReferenceId <String>]: Image resource ID [ImageReferenceOffer <String>]: The image offer if applicable. [ImageReferencePublisher <String>]: The image publisher [ImageReferenceSku <String>]: The image SKU [ImageReferenceVersion <String>]: The image version specified on creation. [NetworkProfileLoadBalancerId <String>]: The external load balancer resource id [NetworkProfilePublicIPId <String>]: The external public IP resource id [NetworkProfileSubnetId <String>]: The external subnet resource id [NonAdminUserPassword <String>]: The password for the user. This is required for the TemplateVM createOption. [NonAdminUserUsername <String>]: The username to use when signing in to lab VMs. [PlanId <String>]: The ID of the lab plan. Used during resource creation to provide defaults and acts as a permission container when creating a lab via labs.azure.com. Setting a labPlanId on an existing lab provides organization.. [RosterProfileActiveDirectoryGroupId <String>]: The AAD group ID which this lab roster is populated from. Having this set enables AAD sync mode. [RosterProfileLmsInstance <String>]: The base URI identifying the lms instance. [RosterProfileLtiClientId <String>]: The unique id of the azure lab services tool in the lms. [RosterProfileLtiContextId <String>]: The unique context identifier for the lab in the lms. [RosterProfileLtiRosterEndpoint <String>]: The uri of the names and roles service endpoint on the lms for the class attached to this lab. [SecurityProfileOpenAccess <EnableState?>]: Whether any user or only specified users can register to a lab. [SkuCapacity <Int32?>]: If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. [SkuFamily <String>]: If the service has different generations of hardware, for the same SKU, then that can be captured here. [SkuName <String>]: The name of the SKU. Ex - P3. It is typically a letter+number code [SkuSize <String>]: The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. [SkuTier <SkuTier?>]: This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. [SystemDataCreatedAt <DateTime?>]: The timestamp of resource creation (UTC). [SystemDataCreatedBy <String>]: The identity that created the resource. [SystemDataCreatedByType <CreatedByType?>]: The type of identity that created the resource. [SystemDataLastModifiedAt <DateTime?>]: The timestamp of resource last modification (UTC) [SystemDataLastModifiedBy <String>]: The identity that last modified the resource. [SystemDataLastModifiedByType <CreatedByType?>]: The type of identity that last modified the resource. [Title <String>]: The title of the lab. [VirtualMachineProfileCreateOption <CreateOption?>]: Indicates what lab virtual machines are created from. [VirtualMachineProfileUsageQuota <TimeSpan?>]: The initial quota alloted to each lab user. Must be a time span between 0 and 9999 hours. [VirtualMachineProfileUseSharedPassword <EnableState?>]: Enabling this option will use the same password for all user VMs. [Tag <ITrackedResourceTags>]: Resource tags. [(Any) <String>]: This indicates any property can be added to this object. .Link https://docs.microsoft.com/powershell/module/az.labservices/update-azlabservicesquota #> function Update-AzLabServicesQuota { [OutputType([Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab])] [CmdletBinding(DefaultParameterSetName='Lab', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(ParameterSetName='Lab', Mandatory, ValueFromPipeline)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.Lab] # To construct, see NOTES section for LAB properties and create a hash table. ${Lab}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.DefaultInfo(Script='(Get-AzContext).Subscription.Id')] [System.String] # The ID of the target subscription. ${SubscriptionId}, [Parameter(ParameterSetName='Set', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter(ParameterSetName='Set', Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] ${LabName}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.TimeSpan] ${LabQuota}, [Parameter()] [Alias('AzureRMContext', 'AzureCredential')] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Azure')] [System.Management.Automation.PSObject] # The credentials, account, tenant, and subscription used for communication with Azure. ${DefaultProfile}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command as a job ${AsJob}, [Parameter()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Run the command asynchronously ${NoWait}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Wait for .NET debugger to attach ${Break}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be appended to the front of the pipeline ${HttpPipelineAppend}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.SendAsyncStep[]] # SendAsync Pipeline Steps to be prepended to the front of the pipeline ${HttpPipelinePrepend}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Uri] # The URI for the proxy server to use ${Proxy}, [Parameter(DontShow)] [ValidateNotNull()] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.PSCredential] # Credentials for a proxy server to use for the remote call ${ProxyCredential}, [Parameter(DontShow)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Runtime')] [System.Management.Automation.SwitchParameter] # Use the default credentials for the proxy ${ProxyUseDefaultCredentials} ) begin { try { $outBuffer = $null if ($PSBoundParameters.TryGetValue('OutBuffer', [ref]$outBuffer)) { $PSBoundParameters['OutBuffer'] = 1 } $parameterSet = $PSCmdlet.ParameterSetName $mapping = @{ Lab = 'Az.LabServices.custom\Update-AzLabServicesQuota_Lab'; Set = 'Az.LabServices.custom\Update-AzLabServicesQuota_Set'; } if (('Lab', 'Set') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $cmdInfo = Get-Command -Name $mapping[$parameterSet] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Runtime.MessageAttributeHelper]::ProcessCustomAttributesAtRuntime($cmdInfo, $MyInvocation, $parameterSet, $PSCmdlet) $wrappedCmd = $ExecutionContext.InvokeCommand.GetCommand(($mapping[$parameterSet]), [System.Management.Automation.CommandTypes]::Cmdlet) $scriptCmd = {& $wrappedCmd @PSBoundParameters} $steppablePipeline = $scriptCmd.GetSteppablePipeline($MyInvocation.CommandOrigin) $steppablePipeline.Begin($PSCmdlet) } catch { throw } } process { try { $steppablePipeline.Process($_) } catch { throw } } end { try { $steppablePipeline.End() } catch { throw } } } # SIG # Begin signature block # MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCASpcOg0ujPZSV8 # gxoZ+qs5/9S0MDUkll3SrzMfVFGUZqCCDYEwggX/MIID56ADAgECAhMzAAACUosz # qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p # bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw # CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u # ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB # AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I # sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O # L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA # v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o # RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 # q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE # AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw # UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 # ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu # ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu # bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w # Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 # Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx # MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 # uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp # kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 # l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u # TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 # o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti # yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z # 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf # 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK # WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW # esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F # 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS # AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 # ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla # MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS # ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT # H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG # OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S # 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz # y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 # 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u # M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 # X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl # XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP # 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB # l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF # RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM # CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ # BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud # DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO # 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 # LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p # Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y # Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB # FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw # cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA # XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY # 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj # 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd # d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ # Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf # wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ # aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j # NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B # xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 # eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 # r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I # RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN # BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggTFxBgXc # Tx224hAx0XY3NBvwWBV/XzAVS3c1/CrG9l0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS # AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN # BgkqhkiG9w0BAQEFAASCAQBeQH6PEo+0q7YXjYYkx5DeBtlX2i/lXvLEnKRGaQ4V # 0rKqhmu4ImR+l8K/XrOIaLRNJtYrSt9mmv3G6HEgklnDCCmecBcLwzWJIW6zpvus # oG6yJPZpd7Eq7fXPkt6EMZQn/40I8JBZ5a31ef9V0QyQJen8RdK9N+r6EenaUNhc # SFPir++sytst77NGl6MONsI7NgOt1qyeEydCum4WsH8lqsqnY1qOh6f7PBZ/3Gbv # J+JhMG1Y5TQOBgxlFulWF9kMBqO2aXwGedpEMbjVzOQCZJW5Svzo1ouT1ZZKlT/c # nxxbHMJC8cJ+1wOEMjW3szDnpxXc0n++Vj+HIoOMuB3DoYIXGTCCFxUGCisGAQQB # gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME # AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB # MDEwDQYJYIZIAWUDBAIBBQAEIGr7ROa0pYejtKM7QtzZZNcnNfhhIeN78IwrzsNs # FlGpAgZh8s1ar5AYEzIwMjIwMjAyMTMxNzU4LjQ3OFowBIACAfSggdikgdUwgdIx # CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt # b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p # Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh # bGVzIFRTUyBFU046RDA4Mi00QkZELUVFQkExJTAjBgNVBAMTHE1pY3Jvc29mdCBU # aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAY/zUajrWnLd # zAABAAABjzANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK # V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 # IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg # MjAxMDAeFw0yMTEwMjgxOTI3NDZaFw0yMzAxMjYxOTI3NDZaMIHSMQswCQYDVQQG # EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG # A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg # SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg # RVNOOkQwODItNEJGRC1FRUJBMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt # cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmVc+/rXP # Fx6Fk4+CpLrubDrLTa3QuAHRVXuy+zsxXwkogkT0a+XWuBabwHyqj8RRiZQQvdvb # Oq5NRExOeHiaCtkUsQ02ESAe9Cz+loBNtsfCq846u3otWHCJlqkvDrSr7mMBqwcR # Y7cfhAGfLvlpMSojoAnk7Rej+jcJnYxIeN34F3h9JwANY360oGYCIS7pLOosWV+b # xug9uiTZYE/XclyYNF6XdzZ/zD/4U5pxT4MZQmzBGvDs+8cDdA/stZfj/ry+i0XU # YNFPhuqc+UKkwm/XNHB+CDsGQl+ZS0GcbUUun4VPThHJm6mRAwL5y8zptWEIocbT # eRSTmZnUa2iYH2EOBV7eCjx0Sdb6kLc1xdFRckDeQGR4J1yFyybuZsUP8x0dOsEE # oLQuOhuKlDLQEg7D6ZxmZJnS8B03ewk/SpVLqsb66U2qyF4BwDt1uZkjEZ7finIo # UgSz4B7fWLYIeO2OCYxIE0XvwsVop9PvTXTZtGPzzmHU753GarKyuM6oa/qaTzYv # rAfUb7KYhvVQKxGUPkL9+eKiM7G0qenJCFrXzZPwRWoccAR33PhNEuuzzKZFJ4De # aTCLg/8uK0Q4QjFRef5n4H+2KQIEibZ7zIeBX3jgsrICbzzSm0QX3SRVmZH//Aqp # 8YxkwcoI1WCBizv84z9eqwRBdQ4HYcNbQMMCAwEAAaOCATYwggEyMB0GA1UdDgQW # BBTzBuZ0a65JzuKhzoWb25f7NyNxvDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl # pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx # MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 # Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh # bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG # CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDNf9Oo9zyhC5n1jC8iU7NJY39F # izjhxZwJbJY/Ytwn63plMlTSaBperan566fuRojGJSv3EwZs+RruOU2T/ZRDx4VH # esLHtclE8GmMM1qTMaZPL8I2FrRmf5Oop4GqcxNdNECBClVZmn0KzFdPMqRa5/0R # 6CmgqJh0muvImikgHubvohsavPEyyHQa94HD4/LNKd/YIaCKKPz9SA5fAa4phQ4E # vz2auY9SUluId5MK9H5cjWVwBxCvYAD+1CW9z7GshJlNjqBvWtKO6J0Aemfg6z28 # g7qc7G/tCtrlH4/y27y+stuwWXNvwdsSd1lvB4M63AuMl9Yp6au/XFknGzJPF6n/ # uWR6JhQvzh40ILgeThLmYhf8z+aDb4r2OBLG1P2B6aCTW2YQkt7TpUnzI0cKGr21 # 3CbKtGk/OOIHSsDOxasmeGJ+FiUJCiV15wh3aZT/VT/PkL9E4hDBAwGt49G88gSC # O0x9jfdDZWdWGbELXlSmA3EP4eTYq7RrolY04G8fGtF0pzuZu43A29zaI9lIr5ul # KRz8EoQHU6cu0PxUw0B9H8cAkvQxaMumRZ/4fCbqNb4TcPkPcWOI24QYlvpbtT9p # 31flYElmc5wjGplAky/nkJcT0HZENXenxWtPvt4gcoqppeJPA3S/1D57KL3667ep # Ir0yV290E2otZbAW8DCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw # DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n # dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y # YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv # cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z # b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw # ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg # 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO # RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 # JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 # LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL # 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 # QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj # 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE # UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 # kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 # UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB # 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE # mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG # A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 # d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV # HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV # HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo # 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m # dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j # cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv # c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN # BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 # sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 # 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX # ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew # VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 # DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd # QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr # DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh # bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n # tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ # oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw # ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI # EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv # ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh # dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046RDA4Mi00QkZE # LUVFQkExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB # ATAHBgUrDgMCGgMVAD5NL4IEdudIBwdGoCaV0WBbQZpqoIGDMIGApH4wfDELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z # b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlpIvDMCIY # DzIwMjIwMjAyMTI0OTA3WhgPMjAyMjAyMDMxMjQ5MDdaMHcwPQYKKwYBBAGEWQoE # ATEvMC0wCgIFAOWki8MCAQAwCgIBAAICFp0CAf8wBwIBAAICEX0wCgIFAOWl3UMC # AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK # MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAjDoVspOtlVRW8BlYSqjyISvM7 # gNUXdCbHUQ6jJq0jmBJXv0L0u94+k4hOgi2ubXVyRuEpIBebP+5OIg9A7VjSHBZe # 583jiue4jMwNlVEGZ/gEREnmv4+2J5N7DhaJkseGLhV1FloxUeNRwcebkvwDbLyd # Nt50VoXzx6wLaRNV/zGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD # VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy # b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w # IFBDQSAyMDEwAhMzAAABj/NRqOtact3MAAEAAAGPMA0GCWCGSAFlAwQCAQUAoIIB # SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIKEm # SG0unJ5djDq/T0dYgScs2b/7ecnjeYttZT7YdddOMIH6BgsqhkiG9w0BCRACLzGB # 6jCB5zCB5DCBvQQgl3IFT+LGxguVjiKm22ItmO6dFDWW8nShu6O6g8yFxx8wgZgw # gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE # BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD # VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAY/zUajrWnLd # zAABAAABjzAiBCDr6gtzfcNDBdLpJysL0/KrgWmV0ChxEDEAvcwluTVyijANBgkq # hkiG9w0BAQsFAASCAgAwQJOp+55OBlDYNVPvpc60PIcjGPCAlR5ajBva53mpIyrQ # Lc+1wzttCwij7rQnh6QU0llxCOjzN4UKIuxVlWWdWzOpUKpbLZSkWQ1XvkZ3san0 # mIJbjYMXBtENjisbro6fLfJqJH95qJNjHnj0hiM8smZVVb2cvJxZgcfRWwpvdsuk # v/cTZSooJ3eWrbuYkrUyVwHFJNu/nsQGu6JUlJGXAwtLWMZ4R+wOJn2WskXA9H7W # svi6J6+Qp4a33WpZVyW9lZ3aPp0WRLfNLnWpCyhFBYS3Tq6KLbZkZueWyyj8x/WP # InQbBLd8bw6KEAJmmW8/79cFszFSpBcI+gYuIDuwW5kTJvjDXY9Tdc/8M4obJ7Fg # 4SihCMZO046pj5MGFexjp6lXC6YHHP+jf7yA9nIfl1shVHhzCfYooK4jFekCwwHu # 2djcXg9rtMKWP9fJoxNVc6BMdZYtvDJ5VUBM/Q+jlGThZ3DVSh4iElMi9MU2lUav # 5Rw1tgcm1v7jeCXJ460O5ExURvYcbQSCmVvZ3ft2WVMLm5RKxrGCrdEzTDqD3bII # uDZ/9I3MyqBCJnStRECAYYo/SBv8v68oCtSzVzCRXmhHskkzkq/cAZSQZEXp+LRJ # 0SNFJEh2Pu54gwvdn2yrFQn05hO8MBC6BbA0V0SUGDdB0/mvANuU9D0kjCwgeA== # SIG # End signature block |