published on Tuesday, Mar 24, 2026 by Pulumi
published on Tuesday, Mar 24, 2026 by Pulumi
Manages an inherited control customization for a work item type.
Inherited controls are controls that exist in the parent process template and are inherited by derived processes. This resource allows you to customize inherited controls.
Note: This resource customizes inherited controls. When the resource is deleted, the control reverts to its inherited state rather than being removed.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
name: "example-process",
parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
});
const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
processId: example.id,
name: "example",
});
// Customize the first control in the first group
const exampleWorkitemtrackingprocessInheritedControl = new azuredevops.WorkitemtrackingprocessInheritedControl("example", {
processId: example.id,
workItemTypeId: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
groupId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.groups?.[0]?.id),
controlId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.groups?.[0]?.controls?.[0]?.id),
visible: false,
});
import pulumi
import pulumi_azuredevops as azuredevops
example = azuredevops.WorkitemtrackingprocessProcess("example",
name="example-process",
parent_process_type_id="adcc42ab-9882-485e-a3ed-7678f01f66bc")
example_workitemtrackingprocess_workitemtype = azuredevops.WorkitemtrackingprocessWorkitemtype("example",
process_id=example.id,
name="example")
# Customize the first control in the first group
example_workitemtrackingprocess_inherited_control = azuredevops.WorkitemtrackingprocessInheritedControl("example",
process_id=example.id,
work_item_type_id=example_workitemtrackingprocess_workitemtype.reference_name,
group_id=example_workitemtrackingprocess_workitemtype.pages[0].sections[0].groups[0].id,
control_id=example_workitemtrackingprocess_workitemtype.pages[0].sections[0].groups[0].controls[0].id,
visible=False)
package main
import (
"github.com/pulumi/pulumi-azuredevops/sdk/v3/go/azuredevops"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := azuredevops.NewWorkitemtrackingprocessProcess(ctx, "example", &azuredevops.WorkitemtrackingprocessProcessArgs{
Name: pulumi.String("example-process"),
ParentProcessTypeId: pulumi.String("adcc42ab-9882-485e-a3ed-7678f01f66bc"),
})
if err != nil {
return err
}
exampleWorkitemtrackingprocessWorkitemtype, err := azuredevops.NewWorkitemtrackingprocessWorkitemtype(ctx, "example", &azuredevops.WorkitemtrackingprocessWorkitemtypeArgs{
ProcessId: example.ID(),
Name: pulumi.String("example"),
})
if err != nil {
return err
}
// Customize the first control in the first group
_, err = azuredevops.NewWorkitemtrackingprocessInheritedControl(ctx, "example", &azuredevops.WorkitemtrackingprocessInheritedControlArgs{
ProcessId: example.ID(),
WorkItemTypeId: exampleWorkitemtrackingprocessWorkitemtype.ReferenceName,
GroupId: pulumi.String(exampleWorkitemtrackingprocessWorkitemtype.Pages.ApplyT(func(pages []azuredevops.WorkitemtrackingprocessWorkitemtypePage) (*string, error) {
return &pages[0].Sections[0].Groups[0].Id, nil
}).(pulumi.StringPtrOutput)),
ControlId: pulumi.String(exampleWorkitemtrackingprocessWorkitemtype.Pages.ApplyT(func(pages []azuredevops.WorkitemtrackingprocessWorkitemtypePage) (*string, error) {
return &pages[0].Sections[0].Groups[0].Controls[0].Id, nil
}).(pulumi.StringPtrOutput)),
Visible: pulumi.Bool(false),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureDevOps = Pulumi.AzureDevOps;
return await Deployment.RunAsync(() =>
{
var example = new AzureDevOps.WorkitemtrackingprocessProcess("example", new()
{
Name = "example-process",
ParentProcessTypeId = "adcc42ab-9882-485e-a3ed-7678f01f66bc",
});
var exampleWorkitemtrackingprocessWorkitemtype = new AzureDevOps.WorkitemtrackingprocessWorkitemtype("example", new()
{
ProcessId = example.Id,
Name = "example",
});
// Customize the first control in the first group
var exampleWorkitemtrackingprocessInheritedControl = new AzureDevOps.WorkitemtrackingprocessInheritedControl("example", new()
{
ProcessId = example.Id,
WorkItemTypeId = exampleWorkitemtrackingprocessWorkitemtype.ReferenceName,
GroupId = exampleWorkitemtrackingprocessWorkitemtype.Pages.Apply(pages => pages[0].Sections[0]?.Groups[0]?.Id),
ControlId = exampleWorkitemtrackingprocessWorkitemtype.Pages.Apply(pages => pages[0].Sections[0]?.Groups[0]?.Controls[0]?.Id),
Visible = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azuredevops.WorkitemtrackingprocessProcess;
import com.pulumi.azuredevops.WorkitemtrackingprocessProcessArgs;
import com.pulumi.azuredevops.WorkitemtrackingprocessWorkitemtype;
import com.pulumi.azuredevops.WorkitemtrackingprocessWorkitemtypeArgs;
import com.pulumi.azuredevops.WorkitemtrackingprocessInheritedControl;
import com.pulumi.azuredevops.WorkitemtrackingprocessInheritedControlArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new WorkitemtrackingprocessProcess("example", WorkitemtrackingprocessProcessArgs.builder()
.name("example-process")
.parentProcessTypeId("adcc42ab-9882-485e-a3ed-7678f01f66bc")
.build());
var exampleWorkitemtrackingprocessWorkitemtype = new WorkitemtrackingprocessWorkitemtype("exampleWorkitemtrackingprocessWorkitemtype", WorkitemtrackingprocessWorkitemtypeArgs.builder()
.processId(example.id())
.name("example")
.build());
// Customize the first control in the first group
var exampleWorkitemtrackingprocessInheritedControl = new WorkitemtrackingprocessInheritedControl("exampleWorkitemtrackingprocessInheritedControl", WorkitemtrackingprocessInheritedControlArgs.builder()
.processId(example.id())
.workItemTypeId(exampleWorkitemtrackingprocessWorkitemtype.referenceName())
.groupId(exampleWorkitemtrackingprocessWorkitemtype.pages().applyValue(_pages -> _pages[0].sections()[0].groups()[0].id()))
.controlId(exampleWorkitemtrackingprocessWorkitemtype.pages().applyValue(_pages -> _pages[0].sections()[0].groups()[0].controls()[0].id()))
.visible(false)
.build());
}
}
resources:
example:
type: azuredevops:WorkitemtrackingprocessProcess
properties:
name: example-process
parentProcessTypeId: adcc42ab-9882-485e-a3ed-7678f01f66bc
exampleWorkitemtrackingprocessWorkitemtype:
type: azuredevops:WorkitemtrackingprocessWorkitemtype
name: example
properties:
processId: ${example.id}
name: example
# Customize the first control in the first group
exampleWorkitemtrackingprocessInheritedControl:
type: azuredevops:WorkitemtrackingprocessInheritedControl
name: example
properties:
processId: ${example.id}
workItemTypeId: ${exampleWorkitemtrackingprocessWorkitemtype.referenceName}
groupId: ${exampleWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].groups[0].id}
controlId: ${exampleWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].groups[0].controls[0].id}
visible: false
Relevant Links
Create WorkitemtrackingprocessInheritedControl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkitemtrackingprocessInheritedControl(name: string, args: WorkitemtrackingprocessInheritedControlArgs, opts?: CustomResourceOptions);@overload
def WorkitemtrackingprocessInheritedControl(resource_name: str,
args: WorkitemtrackingprocessInheritedControlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkitemtrackingprocessInheritedControl(resource_name: str,
opts: Optional[ResourceOptions] = None,
control_id: Optional[str] = None,
group_id: Optional[str] = None,
process_id: Optional[str] = None,
work_item_type_id: Optional[str] = None,
label: Optional[str] = None,
visible: Optional[bool] = None)func NewWorkitemtrackingprocessInheritedControl(ctx *Context, name string, args WorkitemtrackingprocessInheritedControlArgs, opts ...ResourceOption) (*WorkitemtrackingprocessInheritedControl, error)public WorkitemtrackingprocessInheritedControl(string name, WorkitemtrackingprocessInheritedControlArgs args, CustomResourceOptions? opts = null)
public WorkitemtrackingprocessInheritedControl(String name, WorkitemtrackingprocessInheritedControlArgs args)
public WorkitemtrackingprocessInheritedControl(String name, WorkitemtrackingprocessInheritedControlArgs args, CustomResourceOptions options)
type: azuredevops:WorkitemtrackingprocessInheritedControl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkitemtrackingprocessInheritedControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkitemtrackingprocessInheritedControlArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkitemtrackingprocessInheritedControlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkitemtrackingprocessInheritedControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkitemtrackingprocessInheritedControlArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workitemtrackingprocessInheritedControlResource = new AzureDevOps.WorkitemtrackingprocessInheritedControl("workitemtrackingprocessInheritedControlResource", new()
{
ControlId = "string",
GroupId = "string",
ProcessId = "string",
WorkItemTypeId = "string",
Label = "string",
Visible = false,
});
example, err := azuredevops.NewWorkitemtrackingprocessInheritedControl(ctx, "workitemtrackingprocessInheritedControlResource", &azuredevops.WorkitemtrackingprocessInheritedControlArgs{
ControlId: pulumi.String("string"),
GroupId: pulumi.String("string"),
ProcessId: pulumi.String("string"),
WorkItemTypeId: pulumi.String("string"),
Label: pulumi.String("string"),
Visible: pulumi.Bool(false),
})
var workitemtrackingprocessInheritedControlResource = new WorkitemtrackingprocessInheritedControl("workitemtrackingprocessInheritedControlResource", WorkitemtrackingprocessInheritedControlArgs.builder()
.controlId("string")
.groupId("string")
.processId("string")
.workItemTypeId("string")
.label("string")
.visible(false)
.build());
workitemtrackingprocess_inherited_control_resource = azuredevops.WorkitemtrackingprocessInheritedControl("workitemtrackingprocessInheritedControlResource",
control_id="string",
group_id="string",
process_id="string",
work_item_type_id="string",
label="string",
visible=False)
const workitemtrackingprocessInheritedControlResource = new azuredevops.WorkitemtrackingprocessInheritedControl("workitemtrackingprocessInheritedControlResource", {
controlId: "string",
groupId: "string",
processId: "string",
workItemTypeId: "string",
label: "string",
visible: false,
});
type: azuredevops:WorkitemtrackingprocessInheritedControl
properties:
controlId: string
groupId: string
label: string
processId: string
visible: false
workItemTypeId: string
WorkitemtrackingprocessInheritedControl Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkitemtrackingprocessInheritedControl resource accepts the following input properties:
- Control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- Group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- Process
Id string - The ID of the process. Changing this forces a new resource to be created.
- Work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- Label string
- Label for the control.
- Visible bool
- Whether the control should be visible.
- Control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- Group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- Process
Id string - The ID of the process. Changing this forces a new resource to be created.
- Work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- Label string
- Label for the control.
- Visible bool
- Whether the control should be visible.
- control
Id String - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id String - The ID of the group containing the control. Changing this forces a new resource to be created.
- process
Id String - The ID of the process. Changing this forces a new resource to be created.
- work
Item StringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- label String
- Label for the control.
- visible Boolean
- Whether the control should be visible.
- control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- process
Id string - The ID of the process. Changing this forces a new resource to be created.
- work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- label string
- Label for the control.
- visible boolean
- Whether the control should be visible.
- control_
id str - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group_
id str - The ID of the group containing the control. Changing this forces a new resource to be created.
- process_
id str - The ID of the process. Changing this forces a new resource to be created.
- work_
item_ strtype_ id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- label str
- Label for the control.
- visible bool
- Whether the control should be visible.
- control
Id String - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id String - The ID of the group containing the control. Changing this forces a new resource to be created.
- process
Id String - The ID of the process. Changing this forces a new resource to be created.
- work
Item StringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- label String
- Label for the control.
- visible Boolean
- Whether the control should be visible.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkitemtrackingprocessInheritedControl resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkitemtrackingprocessInheritedControl Resource
Get an existing WorkitemtrackingprocessInheritedControl resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkitemtrackingprocessInheritedControlState, opts?: CustomResourceOptions): WorkitemtrackingprocessInheritedControl@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
control_id: Optional[str] = None,
group_id: Optional[str] = None,
label: Optional[str] = None,
process_id: Optional[str] = None,
visible: Optional[bool] = None,
work_item_type_id: Optional[str] = None) -> WorkitemtrackingprocessInheritedControlfunc GetWorkitemtrackingprocessInheritedControl(ctx *Context, name string, id IDInput, state *WorkitemtrackingprocessInheritedControlState, opts ...ResourceOption) (*WorkitemtrackingprocessInheritedControl, error)public static WorkitemtrackingprocessInheritedControl Get(string name, Input<string> id, WorkitemtrackingprocessInheritedControlState? state, CustomResourceOptions? opts = null)public static WorkitemtrackingprocessInheritedControl get(String name, Output<String> id, WorkitemtrackingprocessInheritedControlState state, CustomResourceOptions options)resources: _: type: azuredevops:WorkitemtrackingprocessInheritedControl get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- Group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- Label string
- Label for the control.
- Process
Id string - The ID of the process. Changing this forces a new resource to be created.
- Visible bool
- Whether the control should be visible.
- Work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- Control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- Group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- Label string
- Label for the control.
- Process
Id string - The ID of the process. Changing this forces a new resource to be created.
- Visible bool
- Whether the control should be visible.
- Work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- control
Id String - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id String - The ID of the group containing the control. Changing this forces a new resource to be created.
- label String
- Label for the control.
- process
Id String - The ID of the process. Changing this forces a new resource to be created.
- visible Boolean
- Whether the control should be visible.
- work
Item StringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- control
Id string - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id string - The ID of the group containing the control. Changing this forces a new resource to be created.
- label string
- Label for the control.
- process
Id string - The ID of the process. Changing this forces a new resource to be created.
- visible boolean
- Whether the control should be visible.
- work
Item stringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- control_
id str - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group_
id str - The ID of the group containing the control. Changing this forces a new resource to be created.
- label str
- Label for the control.
- process_
id str - The ID of the process. Changing this forces a new resource to be created.
- visible bool
- Whether the control should be visible.
- work_
item_ strtype_ id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
- control
Id String - The ID of the inherited control to customize. Changing this forces a new resource to be created.
- group
Id String - The ID of the group containing the control. Changing this forces a new resource to be created.
- label String
- Label for the control.
- process
Id String - The ID of the process. Changing this forces a new resource to be created.
- visible Boolean
- Whether the control should be visible.
- work
Item StringType Id - The ID (reference name) of the work item type. Changing this forces a new resource to be created.
Import
Inherited control customizations can be imported using the complete resource id process_id/work_item_type_id/group_id/control_id, e.g.
$ pulumi import azuredevops:index/workitemtrackingprocessInheritedControl:WorkitemtrackingprocessInheritedControl example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/group-id/System.Title
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure DevOps pulumi/pulumi-azuredevops
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azuredevopsTerraform Provider.
published on Tuesday, Mar 24, 2026 by Pulumi
