public/api-v2/workflow/Invoke-JiraUpdateWorkflowScheme.ps1
#https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-workflowscheme-put function Invoke-JiraUpdateWorkflowScheme { [CmdletBinding()] param ( # The ID of the scheme to update [Parameter(Mandatory,Position=0)] [int64] $SchemeId, # The name of the new workflow [Parameter(Position=1)] [ValidateNotNullOrEmpty()] [ValidateLength(1,255)] [string] $Name, # The description of the new workflow [Parameter(Position=2)] [string] $Description, # The name of the workflow to set as default. Will be set to the default jira workflow if not specified. [Parameter(Position=3)] [string] $DefaultWorkflow, # An array of issue type workflow mappings (use New-JiraIssueTypeWorkflowMapping for objects to add to the array) [Parameter(Position=4)] [ValidateScript({ Test-MaxOccurrence ($_ | ForEach-Object { $_.type }) 1 })] [hashtable[]] $IssueTypeMappings, # Set this flag to update a draft if the workflow is currently being used [Parameter()] [switch] $UpdateDraft, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/workflowscheme/$SchemeId" $verb = "PUT" $body = New-PACRestMethodJsonBody if($PSBoundParameters.ContainsKey("Name")){$body.Add("name",$Name)} if($PSBoundParameters.ContainsKey("Description")){$body.Add("description",$Description)} if($PSBoundParameters.ContainsKey("DefaultWorkflow")){$body.Add("defaultWorkflow",$DefaultWorkflow)} if($PSBoundParameters.ContainsKey("IssueTypeMappings")){$body.Add("issueTypeMappings",($IssueTypeMappings | ForEach-Object {$h=@{}} {$type=$_.type;$h.Add("$type",$_.workflow)} {$h}))} if($PSBoundParameters.ContainsKey("UpdateDraft")){$body.Add("updateDraftIfNeeded",$true)} $method = New-PACRestMethod $functionPath $verb $null $body $method.Invoke($JiraContext) } } |