Update-ADODashboard.ps1
function Update-ADODashboard { <# .Synopsis Creates Dashboards and Widgets .Description Creates Dashboards from Azure DevOps, or Creates Widgets in a Dashboard in Azure Devops. .Example Get-ADODashboard -Organization StartAutomating -Project PSDevOps -Team 'PSDevOps Team' | Get-ADODashboard -Widget | Select-Object -First 1 | Update-ADODashboard -WhatIf -Setting @{ Owner = 'StartAutomating' Project = 'PSDevOps' } .Link Get-ADODashboard #> [CmdletBinding(SupportsShouldProcess)] [OutputType('PSDevOps.Dashboard', 'PSDevOps.Widget')] [Diagnostics.CodeAnalysis.SuppressMessageAttribute("Test-ForParameterSetAmbiguity", "", Justification="Ambiguity Desired")] param( # The Organization. [Parameter(Mandatory,ValueFromPipelineByPropertyName)] [Alias('Org')] [string] $Organization, # The Project. [Parameter(Mandatory,ValueFromPipelineByPropertyName)] [string] $Project, # The Team. [Parameter(ValueFromPipelineByPropertyName)] [string] $Team, # The name of the dashboard or widget. [Parameter(ValueFromPipelineByPropertyName)] [string] $Name, # A description of the dashboard [Parameter(ParameterSetName='dashboard/dashboards/{DashboardId}', ValueFromPipelineByPropertyName)] [string] $Description, # Widgets created with the dashboard. [Parameter(ParameterSetName='dashboard/dashboards/{DashboardId}', ValueFromPipelineByPropertyName)] [PSObject[]] $Widget, # The DashboardID. This dashboard will contain the new widgets. [Parameter(Mandatory,ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}')] [Parameter(Mandatory,ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [string] $DashboardID, # The WidgetID. [Parameter(Mandatory,ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [string] $WidgetID, # The ContributionID. This describes the exact extension contribution the widget will use. [Parameter(Mandatory,ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [string] $ContributionID, # The row of the widget. [Parameter(ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [int] $Row, # The column of the widget. [Parameter(ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [int] $Column, # The number of rows the widget should occupy. [Parameter(ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [int] $RowSpan, # The number of columns the widget should occupy. [Parameter(ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [int] $ColumnSpan, # The widget settings. Settings are specific to each widget. [Parameter(ValueFromPipelineByPropertyName, ParameterSetName='dashboard/dashboards/{DashboardId}/widgets/{WidgetId}')] [Alias('Settings')] [PSObject] $Setting, # The server. By default https://dev.azure.com/. # To use against TFS, provide the tfs server URL (e.g. http://tfsserver:8080/tfs). [Parameter(ValueFromPipelineByPropertyName)] [uri] $Server = "https://dev.azure.com/", # The api version. By default, 5.1-preview. # If targeting TFS, this will need to change to match your server version. # See: https://docs.microsoft.com/en-us/azure/devops/integrate/concepts/rest-api-versioning?view=azure-devops [string] $ApiVersion = "5.1-preview" ) dynamicParam { . $GetInvokeParameters -DynamicParameter } begin { #region Copy Invoke-ADORestAPI parameters $invokeParams = . $getInvokeParameters $PSBoundParameters #endregion Copy Invoke-ADORestAPI parameters $q = [Collections.Queue]::new() } process { $ParameterSet = $psCmdlet.ParameterSetName $q.Enqueue(@{ParameterSet=$ParameterSet} + $PSBoundParameters) } end { $c, $t, $id = 0, $q.Count, [Random]::new().Next() $originalInvokeParams = @{} + $invokeParams while ($q.Count) { . $DQ $q # Pop one off the queue and declare all of it's variables (see /parts/DQ.ps1). $c++ Write-Progress "Updating $(@($ParameterSet -split '/')[-1])" "$Organization $Project $Team" -Id $id -PercentComplete ($c * 100/$t) $uri = # The URI is comprised of: @( "$server".TrimEnd('/') # the Server (minus any trailing slashes), $Organization # the Organization, $Project if ($Team) { $team } '_apis' # the API Root ('_apis'), (. $ReplaceRouteParameter $ParameterSet) # and any parameterized URLs in this parameter set. ) -as [string[]] -ne '' -join '/' $uri += '?' # The URI has a query string containing: $uri += @( if ($Server -ne 'https://dev.azure.com/' -and -not $PSBoundParameters.ApiVersion) { $ApiVersion = '2.0' } if ($ApiVersion) { # the api-version "api-version=$apiVersion" } ) -join '&' $invokeParams.Uri = $uri $additionalProperty = @{Organization=$Organization;Project=$Project} if ($Team) { $additionalProperty += @{Team=$team} } $invokeParams.Property = $additionalProperty $body = @{ name = $Name } if (-not $WidgetID) { # If we're not passing a WidgetID, we're updating dashboards. $invokeParams.PSTypeName = "$Organization.Dashboard", "$Organization.$project.Dashboard", 'PSDevOps.Dashboard' $body += @{ description = $Description } if ($Widget) { $body.widgets= $Widget } $invokeParams.Method = 'PUT' } else { $dashParams = @{ Organization = $Organization;Project=$Project DashboardID = $DashboardID;WidgetID=$WidgetID } if ($team) { $dashParams.Team = $team} $widgetState = Get-ADODashboard @originalInvokeParams @dashParams $invokeParams.Method = 'PUT' $additionalProperty.DashboardID = $DashboardID $body += @{ contributionID = $ContributionID id = $WidgetID dashboard = @{ eTag = $widgetState.dashboard.eTag } } if ($row -and $column) { $body.position = @{row=$row;column=$Column} } else { $body.position = $widgetState.position } if ($ColumnSpan -and $RowSpan) { $body.size = @{rowSpan=$RowSpan;columnSpan=$ColumnSpan} } else { $body.size = $widgetState.size } if ($Setting -or $dequedInput.ContainsKey('Setting')) { $body.settings = if ($setting -and $Setting -notmatch '^\s{0,}[\[\{]') { if ($null -eq $Setting.isValid) { $Setting | Add-Member NoteProperty IsValid $true } $Setting | ConvertTo-Json -Depth 100 } elseif ($Setting) { $Setting } else { 'null' } } $body.settingsVersion = $widgetState.settingsVersion #$body.eTag = Get-Random $invokeParams.PSTypeName = "$Organization.Widget", "$Organization.$project.Widget", 'PSDevOps.Widget' } $invokeParams.Body = $body if ($WhatIfPreference) { $invokeParams.Remove('PersonalAccessToken') $invokeParams continue } if (-not $psCmdlet.ShouldProcess("POST $($invokeParams.uri)")) {continue } Invoke-ADORestAPI @invokeParams } Write-Progress "Updating $(@($ParameterSet -split '/')[-1])" "$Organization $Project $Team" -Id $id -Completed } } |