Manages a process.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azuredevops from "@pulumi/azuredevops";
const customAgile = new azuredevops.WorkitemtrackingprocessProcess("custom_agile", {
name: "custom_agile",
parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
});
import pulumi
import pulumi_azuredevops as azuredevops
custom_agile = azuredevops.WorkitemtrackingprocessProcess("custom_agile",
name="custom_agile",
parent_process_type_id="adcc42ab-9882-485e-a3ed-7678f01f66bc")
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 {
_, err := azuredevops.NewWorkitemtrackingprocessProcess(ctx, "custom_agile", &azuredevops.WorkitemtrackingprocessProcessArgs{
Name: pulumi.String("custom_agile"),
ParentProcessTypeId: pulumi.String("adcc42ab-9882-485e-a3ed-7678f01f66bc"),
})
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 customAgile = new AzureDevOps.WorkitemtrackingprocessProcess("custom_agile", new()
{
Name = "custom_agile",
ParentProcessTypeId = "adcc42ab-9882-485e-a3ed-7678f01f66bc",
});
});
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 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 customAgile = new WorkitemtrackingprocessProcess("customAgile", WorkitemtrackingprocessProcessArgs.builder()
.name("custom_agile")
.parentProcessTypeId("adcc42ab-9882-485e-a3ed-7678f01f66bc")
.build());
}
}
resources:
customAgile:
type: azuredevops:WorkitemtrackingprocessProcess
name: custom_agile
properties:
name: custom_agile
parentProcessTypeId: adcc42ab-9882-485e-a3ed-7678f01f66bc
Relevant Links
Create WorkitemtrackingprocessProcess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkitemtrackingprocessProcess(name: string, args: WorkitemtrackingprocessProcessArgs, opts?: CustomResourceOptions);@overload
def WorkitemtrackingprocessProcess(resource_name: str,
args: WorkitemtrackingprocessProcessArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkitemtrackingprocessProcess(resource_name: str,
opts: Optional[ResourceOptions] = None,
parent_process_type_id: Optional[str] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None,
is_enabled: Optional[bool] = None,
name: Optional[str] = None,
reference_name: Optional[str] = None)func NewWorkitemtrackingprocessProcess(ctx *Context, name string, args WorkitemtrackingprocessProcessArgs, opts ...ResourceOption) (*WorkitemtrackingprocessProcess, error)public WorkitemtrackingprocessProcess(string name, WorkitemtrackingprocessProcessArgs args, CustomResourceOptions? opts = null)
public WorkitemtrackingprocessProcess(String name, WorkitemtrackingprocessProcessArgs args)
public WorkitemtrackingprocessProcess(String name, WorkitemtrackingprocessProcessArgs args, CustomResourceOptions options)
type: azuredevops:WorkitemtrackingprocessProcess
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 WorkitemtrackingprocessProcessArgs
- 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 WorkitemtrackingprocessProcessArgs
- 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 WorkitemtrackingprocessProcessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkitemtrackingprocessProcessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkitemtrackingprocessProcessArgs
- 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 workitemtrackingprocessProcessResource = new AzureDevOps.WorkitemtrackingprocessProcess("workitemtrackingprocessProcessResource", new()
{
ParentProcessTypeId = "string",
Description = "string",
IsDefault = false,
IsEnabled = false,
Name = "string",
ReferenceName = "string",
});
example, err := azuredevops.NewWorkitemtrackingprocessProcess(ctx, "workitemtrackingprocessProcessResource", &azuredevops.WorkitemtrackingprocessProcessArgs{
ParentProcessTypeId: pulumi.String("string"),
Description: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
IsEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
ReferenceName: pulumi.String("string"),
})
var workitemtrackingprocessProcessResource = new WorkitemtrackingprocessProcess("workitemtrackingprocessProcessResource", WorkitemtrackingprocessProcessArgs.builder()
.parentProcessTypeId("string")
.description("string")
.isDefault(false)
.isEnabled(false)
.name("string")
.referenceName("string")
.build());
workitemtrackingprocess_process_resource = azuredevops.WorkitemtrackingprocessProcess("workitemtrackingprocessProcessResource",
parent_process_type_id="string",
description="string",
is_default=False,
is_enabled=False,
name="string",
reference_name="string")
const workitemtrackingprocessProcessResource = new azuredevops.WorkitemtrackingprocessProcess("workitemtrackingprocessProcessResource", {
parentProcessTypeId: "string",
description: "string",
isDefault: false,
isEnabled: false,
name: "string",
referenceName: "string",
});
type: azuredevops:WorkitemtrackingprocessProcess
properties:
description: string
isDefault: false
isEnabled: false
name: string
parentProcessTypeId: string
referenceName: string
WorkitemtrackingprocessProcess 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 WorkitemtrackingprocessProcess resource accepts the following input properties:
- Parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- Description string
- Description of the process. Default: ""
- Is
Default bool - Is the process default? Default: false
- Is
Enabled bool - Is the process enabled? Default: true
- Name string
- Name of the process.
- Reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- Parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- Description string
- Description of the process. Default: ""
- Is
Default bool - Is the process default? Default: false
- Is
Enabled bool - Is the process enabled? Default: true
- Name string
- Name of the process.
- Reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- parent
Process StringType Id - ID of the parent process. Changing this forces a new process to be created.
- description String
- Description of the process. Default: ""
- is
Default Boolean - Is the process default? Default: false
- is
Enabled Boolean - Is the process enabled? Default: true
- name String
- Name of the process.
- reference
Name String - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- description string
- Description of the process. Default: ""
- is
Default boolean - Is the process default? Default: false
- is
Enabled boolean - Is the process enabled? Default: true
- name string
- Name of the process.
- reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- parent_
process_ strtype_ id - ID of the parent process. Changing this forces a new process to be created.
- description str
- Description of the process. Default: ""
- is_
default bool - Is the process default? Default: false
- is_
enabled bool - Is the process enabled? Default: true
- name str
- Name of the process.
- reference_
name str - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- parent
Process StringType Id - ID of the parent process. Changing this forces a new process to be created.
- description String
- Description of the process. Default: ""
- is
Default Boolean - Is the process default? Default: false
- is
Enabled Boolean - Is the process enabled? Default: true
- name String
- Name of the process.
- reference
Name String - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkitemtrackingprocessProcess resource produces the following output properties:
- Customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- Id string
- The provider-assigned unique ID for this managed resource.
- Customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- Id string
- The provider-assigned unique ID for this managed resource.
- customization
Type String - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- id String
- The provider-assigned unique ID for this managed resource.
- customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- id string
- The provider-assigned unique ID for this managed resource.
- customization_
type str - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- id str
- The provider-assigned unique ID for this managed resource.
- customization
Type String - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkitemtrackingprocessProcess Resource
Get an existing WorkitemtrackingprocessProcess 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?: WorkitemtrackingprocessProcessState, opts?: CustomResourceOptions): WorkitemtrackingprocessProcess@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
customization_type: Optional[str] = None,
description: Optional[str] = None,
is_default: Optional[bool] = None,
is_enabled: Optional[bool] = None,
name: Optional[str] = None,
parent_process_type_id: Optional[str] = None,
reference_name: Optional[str] = None) -> WorkitemtrackingprocessProcessfunc GetWorkitemtrackingprocessProcess(ctx *Context, name string, id IDInput, state *WorkitemtrackingprocessProcessState, opts ...ResourceOption) (*WorkitemtrackingprocessProcess, error)public static WorkitemtrackingprocessProcess Get(string name, Input<string> id, WorkitemtrackingprocessProcessState? state, CustomResourceOptions? opts = null)public static WorkitemtrackingprocessProcess get(String name, Output<String> id, WorkitemtrackingprocessProcessState state, CustomResourceOptions options)resources: _: type: azuredevops:WorkitemtrackingprocessProcess 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.
- Customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- Description string
- Description of the process. Default: ""
- Is
Default bool - Is the process default? Default: false
- Is
Enabled bool - Is the process enabled? Default: true
- Name string
- Name of the process.
- Parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- Reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- Customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- Description string
- Description of the process. Default: ""
- Is
Default bool - Is the process default? Default: false
- Is
Enabled bool - Is the process enabled? Default: true
- Name string
- Name of the process.
- Parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- Reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- customization
Type String - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- description String
- Description of the process. Default: ""
- is
Default Boolean - Is the process default? Default: false
- is
Enabled Boolean - Is the process enabled? Default: true
- name String
- Name of the process.
- parent
Process StringType Id - ID of the parent process. Changing this forces a new process to be created.
- reference
Name String - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- customization
Type string - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- description string
- Description of the process. Default: ""
- is
Default boolean - Is the process default? Default: false
- is
Enabled boolean - Is the process enabled? Default: true
- name string
- Name of the process.
- parent
Process stringType Id - ID of the parent process. Changing this forces a new process to be created.
- reference
Name string - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- customization_
type str - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- description str
- Description of the process. Default: ""
- is_
default bool - Is the process default? Default: false
- is_
enabled bool - Is the process enabled? Default: true
- name str
- Name of the process.
- parent_
process_ strtype_ id - ID of the parent process. Changing this forces a new process to be created.
- reference_
name str - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
- customization
Type String - Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
- description String
- Description of the process. Default: ""
- is
Default Boolean - Is the process default? Default: false
- is
Enabled Boolean - Is the process enabled? Default: true
- name String
- Name of the process.
- parent
Process StringType Id - ID of the parent process. Changing this forces a new process to be created.
- reference
Name String - Reference name of process being created. If not specified, server will assign a unique reference name. Changing this forces a new process to be created.
Import
A process can be imported using the process id, e.g.
$ pulumi import azuredevops:index/workitemtrackingprocessProcess:WorkitemtrackingprocessProcess example 00000000-0000-0000-0000-000000000000
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.
