1. Packages
  2. Azure DevOps Provider
  3. API Docs
  4. WorkitemtrackingprocessInheritedPage
Viewing docs for Azure DevOps v3.14.0
published on Tuesday, Mar 24, 2026 by Pulumi
azuredevops logo
Viewing docs for Azure DevOps v3.14.0
published on Tuesday, Mar 24, 2026 by Pulumi

    Manages inherited page customizations for a work item type.

    Inherited pages are pages that exist in the parent process template and are inherited by derived processes.

    Note: When the resource is deleted, the page 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",
    });
    // Relabel the Details page
    const exampleWorkitemtrackingprocessInheritedPage = new azuredevops.WorkitemtrackingprocessInheritedPage("example", {
        processId: example.id,
        workItemTypeId: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
        pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
        label: "Custom Details",
    });
    
    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")
    # Relabel the Details page
    example_workitemtrackingprocess_inherited_page = azuredevops.WorkitemtrackingprocessInheritedPage("example",
        process_id=example.id,
        work_item_type_id=example_workitemtrackingprocess_workitemtype.reference_name,
        page_id=example_workitemtrackingprocess_workitemtype.pages[0].id,
        label="Custom Details")
    
    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
    		}
    		// Relabel the Details page
    		_, err = azuredevops.NewWorkitemtrackingprocessInheritedPage(ctx, "example", &azuredevops.WorkitemtrackingprocessInheritedPageArgs{
    			ProcessId:      example.ID(),
    			WorkItemTypeId: exampleWorkitemtrackingprocessWorkitemtype.ReferenceName,
    			PageId: pulumi.String(exampleWorkitemtrackingprocessWorkitemtype.Pages.ApplyT(func(pages []azuredevops.WorkitemtrackingprocessWorkitemtypePage) (*string, error) {
    				return &pages[0].Id, nil
    			}).(pulumi.StringPtrOutput)),
    			Label: pulumi.String("Custom Details"),
    		})
    		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",
        });
    
        // Relabel the Details page
        var exampleWorkitemtrackingprocessInheritedPage = new AzureDevOps.WorkitemtrackingprocessInheritedPage("example", new()
        {
            ProcessId = example.Id,
            WorkItemTypeId = exampleWorkitemtrackingprocessWorkitemtype.ReferenceName,
            PageId = exampleWorkitemtrackingprocessWorkitemtype.Pages.Apply(pages => pages[0].Id),
            Label = "Custom Details",
        });
    
    });
    
    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.WorkitemtrackingprocessInheritedPage;
    import com.pulumi.azuredevops.WorkitemtrackingprocessInheritedPageArgs;
    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());
    
            // Relabel the Details page
            var exampleWorkitemtrackingprocessInheritedPage = new WorkitemtrackingprocessInheritedPage("exampleWorkitemtrackingprocessInheritedPage", WorkitemtrackingprocessInheritedPageArgs.builder()
                .processId(example.id())
                .workItemTypeId(exampleWorkitemtrackingprocessWorkitemtype.referenceName())
                .pageId(exampleWorkitemtrackingprocessWorkitemtype.pages().applyValue(_pages -> _pages[0].id()))
                .label("Custom Details")
                .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
      # Relabel the Details page
      exampleWorkitemtrackingprocessInheritedPage:
        type: azuredevops:WorkitemtrackingprocessInheritedPage
        name: example
        properties:
          processId: ${example.id}
          workItemTypeId: ${exampleWorkitemtrackingprocessWorkitemtype.referenceName}
          pageId: ${exampleWorkitemtrackingprocessWorkitemtype.pages[0].id}
          label: Custom Details
    

    Create WorkitemtrackingprocessInheritedPage Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new WorkitemtrackingprocessInheritedPage(name: string, args: WorkitemtrackingprocessInheritedPageArgs, opts?: CustomResourceOptions);
    @overload
    def WorkitemtrackingprocessInheritedPage(resource_name: str,
                                             args: WorkitemtrackingprocessInheritedPageArgs,
                                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def WorkitemtrackingprocessInheritedPage(resource_name: str,
                                             opts: Optional[ResourceOptions] = None,
                                             label: Optional[str] = None,
                                             page_id: Optional[str] = None,
                                             process_id: Optional[str] = None,
                                             work_item_type_id: Optional[str] = None)
    func NewWorkitemtrackingprocessInheritedPage(ctx *Context, name string, args WorkitemtrackingprocessInheritedPageArgs, opts ...ResourceOption) (*WorkitemtrackingprocessInheritedPage, error)
    public WorkitemtrackingprocessInheritedPage(string name, WorkitemtrackingprocessInheritedPageArgs args, CustomResourceOptions? opts = null)
    public WorkitemtrackingprocessInheritedPage(String name, WorkitemtrackingprocessInheritedPageArgs args)
    public WorkitemtrackingprocessInheritedPage(String name, WorkitemtrackingprocessInheritedPageArgs args, CustomResourceOptions options)
    
    type: azuredevops:WorkitemtrackingprocessInheritedPage
    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 WorkitemtrackingprocessInheritedPageArgs
    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 WorkitemtrackingprocessInheritedPageArgs
    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 WorkitemtrackingprocessInheritedPageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkitemtrackingprocessInheritedPageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkitemtrackingprocessInheritedPageArgs
    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 workitemtrackingprocessInheritedPageResource = new AzureDevOps.WorkitemtrackingprocessInheritedPage("workitemtrackingprocessInheritedPageResource", new()
    {
        Label = "string",
        PageId = "string",
        ProcessId = "string",
        WorkItemTypeId = "string",
    });
    
    example, err := azuredevops.NewWorkitemtrackingprocessInheritedPage(ctx, "workitemtrackingprocessInheritedPageResource", &azuredevops.WorkitemtrackingprocessInheritedPageArgs{
    	Label:          pulumi.String("string"),
    	PageId:         pulumi.String("string"),
    	ProcessId:      pulumi.String("string"),
    	WorkItemTypeId: pulumi.String("string"),
    })
    
    var workitemtrackingprocessInheritedPageResource = new WorkitemtrackingprocessInheritedPage("workitemtrackingprocessInheritedPageResource", WorkitemtrackingprocessInheritedPageArgs.builder()
        .label("string")
        .pageId("string")
        .processId("string")
        .workItemTypeId("string")
        .build());
    
    workitemtrackingprocess_inherited_page_resource = azuredevops.WorkitemtrackingprocessInheritedPage("workitemtrackingprocessInheritedPageResource",
        label="string",
        page_id="string",
        process_id="string",
        work_item_type_id="string")
    
    const workitemtrackingprocessInheritedPageResource = new azuredevops.WorkitemtrackingprocessInheritedPage("workitemtrackingprocessInheritedPageResource", {
        label: "string",
        pageId: "string",
        processId: "string",
        workItemTypeId: "string",
    });
    
    type: azuredevops:WorkitemtrackingprocessInheritedPage
    properties:
        label: string
        pageId: string
        processId: string
        workItemTypeId: string
    

    WorkitemtrackingprocessInheritedPage 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 WorkitemtrackingprocessInheritedPage resource accepts the following input properties:

    Label string
    Label for the page.
    PageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    ProcessId string
    The ID of the process. Changing this forces a new resource to be created.
    WorkItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    Label string
    Label for the page.
    PageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    ProcessId string
    The ID of the process. Changing this forces a new resource to be created.
    WorkItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label String
    Label for the page.
    pageId String
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId String
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId String
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label string
    Label for the page.
    pageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId string
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label str
    Label for the page.
    page_id str
    The ID of the inherited page to customize. 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_type_id str
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label String
    Label for the page.
    pageId String
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId String
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId String
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the WorkitemtrackingprocessInheritedPage 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 WorkitemtrackingprocessInheritedPage Resource

    Get an existing WorkitemtrackingprocessInheritedPage 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?: WorkitemtrackingprocessInheritedPageState, opts?: CustomResourceOptions): WorkitemtrackingprocessInheritedPage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            label: Optional[str] = None,
            page_id: Optional[str] = None,
            process_id: Optional[str] = None,
            work_item_type_id: Optional[str] = None) -> WorkitemtrackingprocessInheritedPage
    func GetWorkitemtrackingprocessInheritedPage(ctx *Context, name string, id IDInput, state *WorkitemtrackingprocessInheritedPageState, opts ...ResourceOption) (*WorkitemtrackingprocessInheritedPage, error)
    public static WorkitemtrackingprocessInheritedPage Get(string name, Input<string> id, WorkitemtrackingprocessInheritedPageState? state, CustomResourceOptions? opts = null)
    public static WorkitemtrackingprocessInheritedPage get(String name, Output<String> id, WorkitemtrackingprocessInheritedPageState state, CustomResourceOptions options)
    resources:  _:    type: azuredevops:WorkitemtrackingprocessInheritedPage    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.
    The following state arguments are supported:
    Label string
    Label for the page.
    PageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    ProcessId string
    The ID of the process. Changing this forces a new resource to be created.
    WorkItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    Label string
    Label for the page.
    PageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    ProcessId string
    The ID of the process. Changing this forces a new resource to be created.
    WorkItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label String
    Label for the page.
    pageId String
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId String
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId String
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label string
    Label for the page.
    pageId string
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId string
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId string
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label str
    Label for the page.
    page_id str
    The ID of the inherited page to customize. 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_type_id str
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.
    label String
    Label for the page.
    pageId String
    The ID of the inherited page to customize. Changing this forces a new resource to be created.
    processId String
    The ID of the process. Changing this forces a new resource to be created.
    workItemTypeId String
    The ID (reference name) of the work item type. Changing this forces a new resource to be created.

    Import

    Inherited page customizations can be imported using the complete resource id process_id/work_item_type_id/page_id, e.g.

    $ pulumi import azuredevops:index/workitemtrackingprocessInheritedPage:WorkitemtrackingprocessInheritedPage example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/page-id
    

    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 azuredevops Terraform Provider.
    azuredevops logo
    Viewing docs for Azure DevOps v3.14.0
    published on Tuesday, Mar 24, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.