internal/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 Returns the properties of a lab resource. .Description Returns the properties of a lab resource. .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 .Outputs Microsoft.Azure.PowerShell.Cmdlets.LabServices.Models.Api20211001Preview.ILab .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='List', PositionalBinding=$false)] param( [Parameter(ParameterSetName='Get', 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='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()] [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-AzLabServicesLab_Get'; List = 'Az.LabServices.private\Get-AzLabServicesLab_List'; List1 = 'Az.LabServices.private\Get-AzLabServicesLab_List1'; } if (('Get', 'List', 'List1') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $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 resource. .Description Operation to create or update 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(DefaultParameterSetName='CreateExpanded', 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.String] # 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.String] # 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(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-AzLabServicesLab_CreateExpanded'; } if (('CreateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $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" .Outputs System.Boolean .Link https://docs.microsoft.com/powershell/module/az.labservices/reset-azlabservicesvmpassword #> function Reset-AzLabServicesVMPassword { [OutputType([System.Boolean])] [CmdletBinding(DefaultParameterSetName='ResetExpanded', PositionalBinding=$false, SupportsShouldProcess, ConfirmImpact='Medium')] param( [Parameter(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(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Path')] [System.String] # The name of the resource group. # The name is case insensitive. ${ResourceGroupName}, [Parameter(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.String] # The password ${Password}, [Parameter(Mandatory)] [Microsoft.Azure.PowerShell.Cmdlets.LabServices.Category('Body')] [System.String] # The user whose password is being reset ${Username}, [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 = @{ ResetExpanded = 'Az.LabServices.private\Reset-AzLabServicesVMPassword_ResetExpanded'; } if (('ResetExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $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='UpdateExpanded', 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.String] # 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 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(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-AzLabServicesLab_UpdateExpanded'; } if (('UpdateExpanded') -contains $parameterSet -and -not $PSBoundParameters.ContainsKey('SubscriptionId')) { $PSBoundParameters['SubscriptionId'] = (Get-AzContext).Subscription.Id } $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 # MIIjkgYJKoZIhvcNAQcCoIIjgzCCI38CAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCC6AsuQA2GVoh3A # hKJJGyQefuisXHM3br2CPfzpvgfUqaCCDYEwggX/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/BvW1taslScxMNelDNMYIVZzCCFWMCAQEwgZUwfjELMAkG # A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx # HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z # b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN # BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor # BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQg4nMDV/pd # XX0I5NfIlpr6JgIxJYvHR3V8BGL8eNgWs6cwQgYKKwYBBAGCNwIBDDE0MDKgFIAS # AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN # BgkqhkiG9w0BAQEFAASCAQDJVp4TQQ+r+rjdx3K7p546wxS8bfpeKGV5CIDwSkcv # Ze8DSYEgufrVsAozmACWNft8h3N5LCmXGxlbfVMsUsahrEUV0Bs+jpCObIJyjsTM # AQp1Byer1KetJGuOnrArGuF6KKT6LX/cxuBFZ9xKDNyfsWbxIcygdZ1RD3BN2Bot # DG2OTHfZlqT2xQtMbjmZXGOhhPmS7m+RX+XdKehOH2FSD8k02zN0z3DrtlWyR2Oe # 5qvSboEYe90e5YhvCMTpAhkA8J0+CT0v+TD6JO/KPPjXF8JpacWZXFQFy765yfGN # a1WZMGz32CeMH+w8BVGVZoXy0Ql37cm9OnLifsG/Vn3SoYIS8TCCEu0GCisGAQQB # gjcDAwExghLdMIIS2QYJKoZIhvcNAQcCoIISyjCCEsYCAQMxDzANBglghkgBZQME # AgEFADCCAVUGCyqGSIb3DQEJEAEEoIIBRASCAUAwggE8AgEBBgorBgEEAYRZCgMB # MDEwDQYJYIZIAWUDBAIBBQAEIEziIKD6sMUE2Wp+MDm/pvZCSXCfkyEq9d9yX5TA # xhOkAgZh8Cb2E08YEzIwMjIwMjAyMTMxNzU2LjIwNVowBIACAfSggdSkgdEwgc4x # CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt # b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1p # Y3Jvc29mdCBPcGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMg # VFNTIEVTTjozMkJELUUzRDUtM0IxRDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUt # U3RhbXAgU2VydmljZaCCDkQwggT1MIID3aADAgECAhMzAAABYtD+AvMB5c1JAAAA # AAFiMA0GCSqGSIb3DQEBCwUAMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNo # aW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29y # cG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEw # MB4XDTIxMDExNDE5MDIyMloXDTIyMDQxMTE5MDIyMlowgc4xCzAJBgNVBAYTAlVT # MRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQK # ExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVy # YXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjozMkJE # LUUzRDUtM0IxRDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vydmlj # ZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAO+GodT2ucL3Mr2DQsv2 # ELNbSvKyBpYdUKtUBWiZmFVy18pG/pucgkrc5i9tu8CY7GpWV/CQNmHG2mVeSHMJ # vbwCc/AAv7JP3bFCt6Zg75IbVSNOGA1eqLbmQiC6UAfSKXLN3dHtQ5diihb3Ymzp # NP9K0cVPZfv2MXm+ZVU0RES8cyPkXel7+UEGE+kqdiBNDdb8yBXd8sju+90+V4nz # YC+ZWW7SFJ2FFZlASpVaHpjv+eGohXlQaSBvmM4Q0xe3LhzQM8ViGz9cLeFSKgFf # SY7qizL7wUg+eqYvDUyjPX8axEQHmk0th23wWH5p0Wduws43qNIo0OQ0mRotBK71 # nykCAwEAAaOCARswggEXMB0GA1UdDgQWBBTLxEoRYEpDtzp84B5WlZN2kP4qazAf # BgNVHSMEGDAWgBTVYzpcijGQ80N7fEYbxTNoWoVtVTBWBgNVHR8ETzBNMEugSaBH # hkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNU # aW1TdGFQQ0FfMjAxMC0wNy0wMS5jcmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUF # BzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1RpbVN0 # YVBDQV8yMDEwLTA3LTAxLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoGCCsG # AQUFBwMIMA0GCSqGSIb3DQEBCwUAA4IBAQAtQa3DoXYbW/cXACbcVSFGe4gC8GXs # FxSHT3JgwFU/NdJOcbkcFTVvTp6vlmTvHm6sIjknRBB0Xi1NBTqPw20u6u/T7Cnc # /z0gT6mf9crI0VR9C+R1CtjezYKZEdZZ7fuNQWjsyftNDhQy+Rqnqryt0VoezLal # heiinHzZD/4Y4hZYPf0u8TSv1ZfKtdBweWG3QU0Lp/I9SbIoemDG97RULMcPvq2u # fhUp3OMiYQGL1WqkykSnqRJsM2IcA4l4dmoPNP6dLg5Dr7NVoYKIMInaQVZjSwDM # ZhWryvfizX0SrzyLgkMPhLMVkfLxQQSQ37NeFk7F1RfeAkNWAh6mCORBMIIGcTCC # BFmgAwIBAgIKYQmBKgAAAAAAAjANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMC # VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJv # b3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTAwHhcNMTAwNzAxMjEzNjU1WhcN # MjUwNzAxMjE0NjU1WjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv # bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 # aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDCCASIw # DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKkdDbx3EYo6IOz8E5f1+n9plGt0 # VBDVpQoAgoX77XxoSyxfxcPlYcJ2tz5mK1vwFVMnBDEfQRsalR3OCROOfGEwWbEw # RA/xYIiEVEMM1024OAizQt2TrNZzMFcmgqNFDdDq9UeBzb8kYDJYYEbyWEeGMoQe # dGFnkV+BVLHPk0ySwcSmXdFhE24oxhr5hoC732H8RsEnHSRnEnIaIYqvS2SJUGKx # Xf13Hz3wV3WsvYpCTUBR0Q+cBj5nf/VmwAOWRH7v0Ev9buWayrGo8noqCjHw2k4G # kbaICDXoeByw6ZnNPOcvRLqn9NxkvaQBwSAJk3jN/LzAyURdXhacAQVPIk0CAwEA # AaOCAeYwggHiMBAGCSsGAQQBgjcVAQQDAgEAMB0GA1UdDgQWBBTVYzpcijGQ80N7 # fEYbxTNoWoVtVTAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNVHQ8EBAMC # AYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo0T2UkFvX # zpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20v # cGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcmwwWgYI # KwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j # b20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDCBoAYDVR0g # AQH/BIGVMIGSMIGPBgkrBgEEAYI3LgMwgYEwPQYIKwYBBQUHAgEWMWh0dHA6Ly93 # d3cubWljcm9zb2Z0LmNvbS9QS0kvZG9jcy9DUFMvZGVmYXVsdC5odG0wQAYIKwYB # BQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AUABvAGwAaQBjAHkAXwBTAHQAYQB0AGUA # bQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAAfmiFEN4sbgmD+BcQM9naOh # IW+z66bM9TG+zwXiqf76V20ZMLPCxWbJat/15/B4vceoniXj+bzta1RXCCtRgkQS # +7lTjMz0YBKKdsxAQEGb3FwX/1z5Xhc1mCRWS3TvQhDIr79/xn/yN31aPxzymXlK # kVIArzgPF/UveYFl2am1a+THzvbKegBvSzBEJCI8z+0DpZaPWSm8tv0E4XCfMkon # /VWvL/625Y4zu2JfmttXQOnxzplmkIz/amJ/3cVKC5Em4jnsGUpxY517IW3DnKOi # PPp/fZZqkHimbdLhnPkd/DjYlPTGpQqWhqS9nhquBEKDuLWAmyI4ILUl5WTs9/S/ # fmNZJQ96LjlXdqJxqgaKD4kWumGnEcua2A5HmoDF0M2n0O99g/DhO3EJ3110mCII # YdqwUB5vvfHhAN/nMQekkzr3ZUd46PioSKv33nJ+YWtvd6mBy6cJrDm77MbL2IK0 # cs0d9LiFAR6A+xuJKlQ5slvayA1VmXqHczsI5pgt6o3gMy4SKfXAL1QnIffIrE7a # KLixqduWsqdCosnPGUFN4Ib5KpqjEWYw07t0MkvfY3v1mYovG8chr1m1rtxEPJdQ # cdeh0sVV42neV8HR3jDA/czmTfsNv11P6Z0eGTgvvM9YBS7vDaBQNdrvCScc1bN+ # NR4Iuto229Nfj950iEkSoYIC0jCCAjsCAQEwgfyhgdSkgdEwgc4xCzAJBgNVBAYT # AlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYD # VQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKTAnBgNVBAsTIE1pY3Jvc29mdCBP # cGVyYXRpb25zIFB1ZXJ0byBSaWNvMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVTTjoz # MkJELUUzRDUtM0IxRDElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAgU2Vy # dmljZaIjCgEBMAcGBSsOAwIaAxUAmrP6Chrbz0ax7s57n5Pop3VC8gyggYMwgYCk # fjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMH # UmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQD # Ex1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMDANBgkqhkiG9w0BAQUFAAIF # AOWkiBUwIhgPMjAyMjAyMDIwODMzMjVaGA8yMDIyMDIwMzA4MzMyNVowdzA9Bgor # BgEEAYRZCgQBMS8wLTAKAgUA5aSIFQIBADAKAgEAAgIojgIB/zAHAgEAAgIRdjAK # AgUA5aXZlQIBADA2BgorBgEEAYRZCgQCMSgwJjAMBgorBgEEAYRZCgMCoAowCAIB # AAIDB6EgoQowCAIBAAIDAYagMA0GCSqGSIb3DQEBBQUAA4GBAIKh0bpA6UiViAWq # vCagCaHb2dQAguRJbUi7EYFdNI0w9qsGJ+2ljAF5+5i8O92LwCx5Q67AnevfEAOZ # Y8Sb96rncGPuDlHvC9nmyhQMtmojEJDkyb3uWYVSTbA3KeCnpEpLzuzvg+8eXnow # le70pVIPvSW+izJBvRuTSf9lEKboMYIDDTCCAwkCAQEwgZMwfDELMAkGA1UEBhMC # VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV # BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRp # bWUtU3RhbXAgUENBIDIwMTACEzMAAAFi0P4C8wHlzUkAAAAAAWIwDQYJYIZIAWUD # BAIBBQCgggFKMBoGCSqGSIb3DQEJAzENBgsqhkiG9w0BCRABBDAvBgkqhkiG9w0B # CQQxIgQgCmWmhAV2d6pe8yH+CaPxu5p26XwibVa/W8u9ID6Q77YwgfoGCyqGSIb3 # DQEJEAIvMYHqMIHnMIHkMIG9BCCKqhiV+zwNDrpU7DRB7Mi57xi6GBNYsGjgZqq2 # qVMKMjCBmDCBgKR+MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u # MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp # b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwAhMzAAAB # YtD+AvMB5c1JAAAAAAFiMCIEIADjgiDCaFWgQtRQjSOIH3nLLmoX7U1m3FanCDwv # 6WfQMA0GCSqGSIb3DQEBCwUABIIBAEzJb/cop8P6dQCH0buqYyyIWvyq/RYuP3g8 # Z974oBOvpIphN3A1+8RZxWgcIR3St4+97cN9RgqgcVg2eP18/pFzEPxprclsGYyU # wRKCoGxejP14EtdeSbM6vvTxmAH4OvynERzUrcSsgfOf+l0SKZCgErDR/S2kmnjO # dgJ0pqeWF1r84wCPpNFwK8ggaMHQg0cEYFzlMdrMdM/ljc2ezSiRkc+rPbKne9ba # QMTgcjg+uJ83lTMhFoi7FHh1eb/O1ucNgQJGt9h2TBp9eB/hk2lYs5vJhRBAHROG # tCauN/WtHWqbI0KRzo4fVJy1CTZaTEY5nCrA21EJtuWlu5/ilZI= # SIG # End signature block |