@pulumi/azuredevops 3.12.0-alpha.1767072475 → 3.12.0-alpha.1767930396
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getWorkitemtrackingprocessWorkitemtype.d.ts +112 -0
- package/getWorkitemtrackingprocessWorkitemtype.js +64 -0
- package/getWorkitemtrackingprocessWorkitemtype.js.map +1 -0
- package/getWorkitemtrackingprocessWorkitemtypes.d.ts +74 -0
- package/getWorkitemtrackingprocessWorkitemtypes.js +60 -0
- package/getWorkitemtrackingprocessWorkitemtypes.js.map +1 -0
- package/index.d.ts +21 -0
- package/index.js +34 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +130 -0
- package/types/output.d.ts +168 -0
- package/variableGroupVariable.d.ts +158 -0
- package/variableGroupVariable.js +121 -0
- package/variableGroupVariable.js.map +1 -0
- package/workitemtrackingprocessControl.d.ts +291 -0
- package/workitemtrackingprocessControl.js +174 -0
- package/workitemtrackingprocessControl.js.map +1 -0
- package/workitemtrackingprocessGroup.d.ts +237 -0
- package/workitemtrackingprocessGroup.js +181 -0
- package/workitemtrackingprocessGroup.js.map +1 -0
- package/workitemtrackingprocessProcessPermissions.d.ts +192 -0
- package/workitemtrackingprocessProcessPermissions.js +124 -0
- package/workitemtrackingprocessProcessPermissions.js.map +1 -0
- package/workitemtrackingprocessWorkitemtype.d.ts +180 -0
- package/workitemtrackingprocessWorkitemtype.js +104 -0
- package/workitemtrackingprocessWorkitemtype.js.map +1 -0
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.WorkitemtrackingprocessControl = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a control within a group for a work item type. Controls can be field controls or contribution controls (extensions).
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Basic Field Control
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
18
|
+
*
|
|
19
|
+
* const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
|
|
20
|
+
* name: "example-process",
|
|
21
|
+
* parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
22
|
+
* });
|
|
23
|
+
* const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
|
|
24
|
+
* processId: example.id,
|
|
25
|
+
* name: "example",
|
|
26
|
+
* });
|
|
27
|
+
* const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
28
|
+
* processId: example.id,
|
|
29
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
30
|
+
* pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
|
|
31
|
+
* sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
|
|
32
|
+
* label: "Custom Group",
|
|
33
|
+
* });
|
|
34
|
+
* const exampleWorkitemtrackingprocessControl = new azuredevops.WorkitemtrackingprocessControl("example", {
|
|
35
|
+
* processId: example.id,
|
|
36
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
37
|
+
* groupId: exampleWorkitemtrackingprocessGroup.id,
|
|
38
|
+
* controlId: "System.Title",
|
|
39
|
+
* label: "Title",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*
|
|
43
|
+
* ### Contribution Control (Extension)
|
|
44
|
+
*
|
|
45
|
+
* ```typescript
|
|
46
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
47
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
48
|
+
*
|
|
49
|
+
* const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
|
|
50
|
+
* name: "example-process",
|
|
51
|
+
* parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
52
|
+
* });
|
|
53
|
+
* const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
|
|
54
|
+
* processId: example.id,
|
|
55
|
+
* name: "example",
|
|
56
|
+
* });
|
|
57
|
+
* const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
58
|
+
* processId: example.id,
|
|
59
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
60
|
+
* pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
|
|
61
|
+
* sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
|
|
62
|
+
* label: "Custom Group",
|
|
63
|
+
* });
|
|
64
|
+
* const exampleWorkitemtrackingprocessControl = new azuredevops.WorkitemtrackingprocessControl("example", {
|
|
65
|
+
* processId: example.id,
|
|
66
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
67
|
+
* groupId: exampleWorkitemtrackingprocessGroup.id,
|
|
68
|
+
* controlId: "MultiValueControl",
|
|
69
|
+
* isContribution: true,
|
|
70
|
+
* contribution: {
|
|
71
|
+
* contributionId: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
|
|
72
|
+
* height: 50,
|
|
73
|
+
* inputs: {
|
|
74
|
+
* FieldName: "System.Tags",
|
|
75
|
+
* Values: "Option1;Option2;Option3",
|
|
76
|
+
* },
|
|
77
|
+
* },
|
|
78
|
+
* });
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
81
|
+
* ## Relevant Links
|
|
82
|
+
*
|
|
83
|
+
* - [Azure DevOps Service REST API 7.1 - Controls](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/controls?view=azure-devops-rest-7.1)
|
|
84
|
+
*
|
|
85
|
+
* ## Import
|
|
86
|
+
*
|
|
87
|
+
* Controls can be imported using the complete resource id `process_id/work_item_type_reference_name/group_id/control_id`, e.g.
|
|
88
|
+
*
|
|
89
|
+
* ```sh
|
|
90
|
+
* $ pulumi import azuredevops:index/workitemtrackingprocessControl:WorkitemtrackingprocessControl example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/group-id/System.Title
|
|
91
|
+
* ```
|
|
92
|
+
*/
|
|
93
|
+
class WorkitemtrackingprocessControl extends pulumi.CustomResource {
|
|
94
|
+
/**
|
|
95
|
+
* Get an existing WorkitemtrackingprocessControl resource's state with the given name, ID, and optional extra
|
|
96
|
+
* properties used to qualify the lookup.
|
|
97
|
+
*
|
|
98
|
+
* @param name The _unique_ name of the resulting resource.
|
|
99
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
100
|
+
* @param state Any extra arguments used during the lookup.
|
|
101
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
102
|
+
*/
|
|
103
|
+
static get(name, id, state, opts) {
|
|
104
|
+
return new WorkitemtrackingprocessControl(name, state, { ...opts, id: id });
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* Returns true if the given object is an instance of WorkitemtrackingprocessControl. This is designed to work even
|
|
108
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
109
|
+
*/
|
|
110
|
+
static isInstance(obj) {
|
|
111
|
+
if (obj === undefined || obj === null) {
|
|
112
|
+
return false;
|
|
113
|
+
}
|
|
114
|
+
return obj['__pulumiType'] === WorkitemtrackingprocessControl.__pulumiType;
|
|
115
|
+
}
|
|
116
|
+
constructor(name, argsOrState, opts) {
|
|
117
|
+
let resourceInputs = {};
|
|
118
|
+
opts = opts || {};
|
|
119
|
+
if (opts.id) {
|
|
120
|
+
const state = argsOrState;
|
|
121
|
+
resourceInputs["contribution"] = state?.contribution;
|
|
122
|
+
resourceInputs["controlId"] = state?.controlId;
|
|
123
|
+
resourceInputs["controlType"] = state?.controlType;
|
|
124
|
+
resourceInputs["groupId"] = state?.groupId;
|
|
125
|
+
resourceInputs["inherited"] = state?.inherited;
|
|
126
|
+
resourceInputs["isContribution"] = state?.isContribution;
|
|
127
|
+
resourceInputs["label"] = state?.label;
|
|
128
|
+
resourceInputs["metadata"] = state?.metadata;
|
|
129
|
+
resourceInputs["order"] = state?.order;
|
|
130
|
+
resourceInputs["overridden"] = state?.overridden;
|
|
131
|
+
resourceInputs["processId"] = state?.processId;
|
|
132
|
+
resourceInputs["readOnly"] = state?.readOnly;
|
|
133
|
+
resourceInputs["visible"] = state?.visible;
|
|
134
|
+
resourceInputs["watermark"] = state?.watermark;
|
|
135
|
+
resourceInputs["workItemTypeReferenceName"] = state?.workItemTypeReferenceName;
|
|
136
|
+
}
|
|
137
|
+
else {
|
|
138
|
+
const args = argsOrState;
|
|
139
|
+
if (args?.controlId === undefined && !opts.urn) {
|
|
140
|
+
throw new Error("Missing required property 'controlId'");
|
|
141
|
+
}
|
|
142
|
+
if (args?.groupId === undefined && !opts.urn) {
|
|
143
|
+
throw new Error("Missing required property 'groupId'");
|
|
144
|
+
}
|
|
145
|
+
if (args?.processId === undefined && !opts.urn) {
|
|
146
|
+
throw new Error("Missing required property 'processId'");
|
|
147
|
+
}
|
|
148
|
+
if (args?.workItemTypeReferenceName === undefined && !opts.urn) {
|
|
149
|
+
throw new Error("Missing required property 'workItemTypeReferenceName'");
|
|
150
|
+
}
|
|
151
|
+
resourceInputs["contribution"] = args?.contribution;
|
|
152
|
+
resourceInputs["controlId"] = args?.controlId;
|
|
153
|
+
resourceInputs["groupId"] = args?.groupId;
|
|
154
|
+
resourceInputs["isContribution"] = args?.isContribution;
|
|
155
|
+
resourceInputs["label"] = args?.label;
|
|
156
|
+
resourceInputs["metadata"] = args?.metadata;
|
|
157
|
+
resourceInputs["order"] = args?.order;
|
|
158
|
+
resourceInputs["processId"] = args?.processId;
|
|
159
|
+
resourceInputs["readOnly"] = args?.readOnly;
|
|
160
|
+
resourceInputs["visible"] = args?.visible;
|
|
161
|
+
resourceInputs["watermark"] = args?.watermark;
|
|
162
|
+
resourceInputs["workItemTypeReferenceName"] = args?.workItemTypeReferenceName;
|
|
163
|
+
resourceInputs["controlType"] = undefined /*out*/;
|
|
164
|
+
resourceInputs["inherited"] = undefined /*out*/;
|
|
165
|
+
resourceInputs["overridden"] = undefined /*out*/;
|
|
166
|
+
}
|
|
167
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
168
|
+
super(WorkitemtrackingprocessControl.__pulumiType, name, resourceInputs, opts);
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
exports.WorkitemtrackingprocessControl = WorkitemtrackingprocessControl;
|
|
172
|
+
/** @internal */
|
|
173
|
+
WorkitemtrackingprocessControl.__pulumiType = 'azuredevops:index/workitemtrackingprocessControl:WorkitemtrackingprocessControl';
|
|
174
|
+
//# sourceMappingURL=workitemtrackingprocessControl.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workitemtrackingprocessControl.js","sourceRoot":"","sources":["../workitemtrackingprocessControl.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,237 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manages a group within a page and section for a work item type.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ### Basic Group
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
14
|
+
*
|
|
15
|
+
* const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
|
|
16
|
+
* name: "example-process",
|
|
17
|
+
* parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
18
|
+
* });
|
|
19
|
+
* const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
|
|
20
|
+
* processId: example.id,
|
|
21
|
+
* name: "example",
|
|
22
|
+
* description: "Example work item type",
|
|
23
|
+
* color: "#FF5733",
|
|
24
|
+
* icon: "icon_clipboard",
|
|
25
|
+
* });
|
|
26
|
+
* const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
27
|
+
* processId: example.id,
|
|
28
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
29
|
+
* pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
|
|
30
|
+
* sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
|
|
31
|
+
* label: "Custom Group",
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* ### Group with Controls
|
|
36
|
+
*
|
|
37
|
+
* This example creates a group with multiple controls, including an HTML field control (System.Description) which can only be added when creating the group.
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
42
|
+
*
|
|
43
|
+
* const example = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
44
|
+
* processId: exampleAzuredevopsWorkitemtrackingprocessProcess.id,
|
|
45
|
+
* workItemTypeReferenceName: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
46
|
+
* pageId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].id,
|
|
47
|
+
* sectionId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].id,
|
|
48
|
+
* label: "Details Group",
|
|
49
|
+
* controls: [
|
|
50
|
+
* {
|
|
51
|
+
* id: "System.Description",
|
|
52
|
+
* label: "Description",
|
|
53
|
+
* },
|
|
54
|
+
* {
|
|
55
|
+
* id: "System.Title",
|
|
56
|
+
* label: "Title",
|
|
57
|
+
* },
|
|
58
|
+
* ],
|
|
59
|
+
* });
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* ### Group with Contribution Control (Extension)
|
|
63
|
+
*
|
|
64
|
+
* ```typescript
|
|
65
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
66
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
67
|
+
*
|
|
68
|
+
* const multivalue = new azuredevops.Extension("multivalue", {
|
|
69
|
+
* publisherId: "ms-devlabs",
|
|
70
|
+
* extensionId: "vsts-extensions-multivalue-control",
|
|
71
|
+
* });
|
|
72
|
+
* const example = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
73
|
+
* processId: exampleAzuredevopsWorkitemtrackingprocessProcess.id,
|
|
74
|
+
* workItemTypeReferenceName: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
75
|
+
* pageId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].id,
|
|
76
|
+
* sectionId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].id,
|
|
77
|
+
* label: "Extension Group",
|
|
78
|
+
* controls: [{
|
|
79
|
+
* id: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
|
|
80
|
+
* isContribution: true,
|
|
81
|
+
* contribution: {
|
|
82
|
+
* contributionId: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
|
|
83
|
+
* height: 50,
|
|
84
|
+
* inputs: {
|
|
85
|
+
* FieldName: "System.Tags",
|
|
86
|
+
* Values: "Option1;Option2;Option3",
|
|
87
|
+
* },
|
|
88
|
+
* },
|
|
89
|
+
* }],
|
|
90
|
+
* }, {
|
|
91
|
+
* dependsOn: [multivalue],
|
|
92
|
+
* });
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* ## Relevant Links
|
|
96
|
+
*
|
|
97
|
+
* - [Azure DevOps Service REST API 7.1 - Groups](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/groups?view=azure-devops-rest-7.1)
|
|
98
|
+
*
|
|
99
|
+
* ## Import
|
|
100
|
+
*
|
|
101
|
+
* Groups can be imported using the complete resource id `process_id/work_item_type_reference_name/page_id/section_id/group_id`, e.g.
|
|
102
|
+
*
|
|
103
|
+
* ```sh
|
|
104
|
+
* $ pulumi import azuredevops:index/workitemtrackingprocessGroup:WorkitemtrackingprocessGroup example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/page-id/section-id/group-id
|
|
105
|
+
* ```
|
|
106
|
+
*/
|
|
107
|
+
export declare class WorkitemtrackingprocessGroup extends pulumi.CustomResource {
|
|
108
|
+
/**
|
|
109
|
+
* Get an existing WorkitemtrackingprocessGroup resource's state with the given name, ID, and optional extra
|
|
110
|
+
* properties used to qualify the lookup.
|
|
111
|
+
*
|
|
112
|
+
* @param name The _unique_ name of the resulting resource.
|
|
113
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
114
|
+
* @param state Any extra arguments used during the lookup.
|
|
115
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
116
|
+
*/
|
|
117
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WorkitemtrackingprocessGroupState, opts?: pulumi.CustomResourceOptions): WorkitemtrackingprocessGroup;
|
|
118
|
+
/**
|
|
119
|
+
* Returns true if the given object is an instance of WorkitemtrackingprocessGroup. This is designed to work even
|
|
120
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
121
|
+
*/
|
|
122
|
+
static isInstance(obj: any): obj is WorkitemtrackingprocessGroup;
|
|
123
|
+
/**
|
|
124
|
+
* Controls to be created with the group. Required for HTML controls which cannot be added to existing groups. This is mutally exclusive with 'azuredevops_workitemtrackingprocess_control' resources. A `control` block as defined below.
|
|
125
|
+
*/
|
|
126
|
+
readonly controls: pulumi.Output<outputs.WorkitemtrackingprocessGroupControl[]>;
|
|
127
|
+
/**
|
|
128
|
+
* Label for the group.
|
|
129
|
+
*/
|
|
130
|
+
readonly label: pulumi.Output<string>;
|
|
131
|
+
/**
|
|
132
|
+
* Order in which the group should appear in the section.
|
|
133
|
+
*/
|
|
134
|
+
readonly order: pulumi.Output<number>;
|
|
135
|
+
/**
|
|
136
|
+
* The ID of the page to add the group to. Changing this moves the group to the new page.
|
|
137
|
+
*/
|
|
138
|
+
readonly pageId: pulumi.Output<string>;
|
|
139
|
+
/**
|
|
140
|
+
* The ID of the process. Changing this forces a new group to be created.
|
|
141
|
+
*/
|
|
142
|
+
readonly processId: pulumi.Output<string>;
|
|
143
|
+
/**
|
|
144
|
+
* The ID of the section to add the group to. Changing this moves the group to the new section.
|
|
145
|
+
*/
|
|
146
|
+
readonly sectionId: pulumi.Output<string>;
|
|
147
|
+
/**
|
|
148
|
+
* A value indicating if the group should be visible or not. Default: `true`
|
|
149
|
+
*/
|
|
150
|
+
readonly visible: pulumi.Output<boolean | undefined>;
|
|
151
|
+
/**
|
|
152
|
+
* The reference name of the work item type. Changing this forces a new group to be created.
|
|
153
|
+
*/
|
|
154
|
+
readonly workItemTypeReferenceName: pulumi.Output<string>;
|
|
155
|
+
/**
|
|
156
|
+
* Create a WorkitemtrackingprocessGroup resource with the given unique name, arguments, and options.
|
|
157
|
+
*
|
|
158
|
+
* @param name The _unique_ name of the resource.
|
|
159
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
160
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
161
|
+
*/
|
|
162
|
+
constructor(name: string, args: WorkitemtrackingprocessGroupArgs, opts?: pulumi.CustomResourceOptions);
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* Input properties used for looking up and filtering WorkitemtrackingprocessGroup resources.
|
|
166
|
+
*/
|
|
167
|
+
export interface WorkitemtrackingprocessGroupState {
|
|
168
|
+
/**
|
|
169
|
+
* Controls to be created with the group. Required for HTML controls which cannot be added to existing groups. This is mutally exclusive with 'azuredevops_workitemtrackingprocess_control' resources. A `control` block as defined below.
|
|
170
|
+
*/
|
|
171
|
+
controls?: pulumi.Input<pulumi.Input<inputs.WorkitemtrackingprocessGroupControl>[]>;
|
|
172
|
+
/**
|
|
173
|
+
* Label for the group.
|
|
174
|
+
*/
|
|
175
|
+
label?: pulumi.Input<string>;
|
|
176
|
+
/**
|
|
177
|
+
* Order in which the group should appear in the section.
|
|
178
|
+
*/
|
|
179
|
+
order?: pulumi.Input<number>;
|
|
180
|
+
/**
|
|
181
|
+
* The ID of the page to add the group to. Changing this moves the group to the new page.
|
|
182
|
+
*/
|
|
183
|
+
pageId?: pulumi.Input<string>;
|
|
184
|
+
/**
|
|
185
|
+
* The ID of the process. Changing this forces a new group to be created.
|
|
186
|
+
*/
|
|
187
|
+
processId?: pulumi.Input<string>;
|
|
188
|
+
/**
|
|
189
|
+
* The ID of the section to add the group to. Changing this moves the group to the new section.
|
|
190
|
+
*/
|
|
191
|
+
sectionId?: pulumi.Input<string>;
|
|
192
|
+
/**
|
|
193
|
+
* A value indicating if the group should be visible or not. Default: `true`
|
|
194
|
+
*/
|
|
195
|
+
visible?: pulumi.Input<boolean>;
|
|
196
|
+
/**
|
|
197
|
+
* The reference name of the work item type. Changing this forces a new group to be created.
|
|
198
|
+
*/
|
|
199
|
+
workItemTypeReferenceName?: pulumi.Input<string>;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* The set of arguments for constructing a WorkitemtrackingprocessGroup resource.
|
|
203
|
+
*/
|
|
204
|
+
export interface WorkitemtrackingprocessGroupArgs {
|
|
205
|
+
/**
|
|
206
|
+
* Controls to be created with the group. Required for HTML controls which cannot be added to existing groups. This is mutally exclusive with 'azuredevops_workitemtrackingprocess_control' resources. A `control` block as defined below.
|
|
207
|
+
*/
|
|
208
|
+
controls?: pulumi.Input<pulumi.Input<inputs.WorkitemtrackingprocessGroupControl>[]>;
|
|
209
|
+
/**
|
|
210
|
+
* Label for the group.
|
|
211
|
+
*/
|
|
212
|
+
label: pulumi.Input<string>;
|
|
213
|
+
/**
|
|
214
|
+
* Order in which the group should appear in the section.
|
|
215
|
+
*/
|
|
216
|
+
order?: pulumi.Input<number>;
|
|
217
|
+
/**
|
|
218
|
+
* The ID of the page to add the group to. Changing this moves the group to the new page.
|
|
219
|
+
*/
|
|
220
|
+
pageId: pulumi.Input<string>;
|
|
221
|
+
/**
|
|
222
|
+
* The ID of the process. Changing this forces a new group to be created.
|
|
223
|
+
*/
|
|
224
|
+
processId: pulumi.Input<string>;
|
|
225
|
+
/**
|
|
226
|
+
* The ID of the section to add the group to. Changing this moves the group to the new section.
|
|
227
|
+
*/
|
|
228
|
+
sectionId: pulumi.Input<string>;
|
|
229
|
+
/**
|
|
230
|
+
* A value indicating if the group should be visible or not. Default: `true`
|
|
231
|
+
*/
|
|
232
|
+
visible?: pulumi.Input<boolean>;
|
|
233
|
+
/**
|
|
234
|
+
* The reference name of the work item type. Changing this forces a new group to be created.
|
|
235
|
+
*/
|
|
236
|
+
workItemTypeReferenceName: pulumi.Input<string>;
|
|
237
|
+
}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.WorkitemtrackingprocessGroup = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages a group within a page and section for a work item type.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Basic Group
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
18
|
+
*
|
|
19
|
+
* const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
|
|
20
|
+
* name: "example-process",
|
|
21
|
+
* parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
22
|
+
* });
|
|
23
|
+
* const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
|
|
24
|
+
* processId: example.id,
|
|
25
|
+
* name: "example",
|
|
26
|
+
* description: "Example work item type",
|
|
27
|
+
* color: "#FF5733",
|
|
28
|
+
* icon: "icon_clipboard",
|
|
29
|
+
* });
|
|
30
|
+
* const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
31
|
+
* processId: example.id,
|
|
32
|
+
* workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
33
|
+
* pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
|
|
34
|
+
* sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
|
|
35
|
+
* label: "Custom Group",
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* ### Group with Controls
|
|
40
|
+
*
|
|
41
|
+
* This example creates a group with multiple controls, including an HTML field control (System.Description) which can only be added when creating the group.
|
|
42
|
+
*
|
|
43
|
+
* ```typescript
|
|
44
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
45
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
46
|
+
*
|
|
47
|
+
* const example = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
48
|
+
* processId: exampleAzuredevopsWorkitemtrackingprocessProcess.id,
|
|
49
|
+
* workItemTypeReferenceName: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
50
|
+
* pageId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].id,
|
|
51
|
+
* sectionId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].id,
|
|
52
|
+
* label: "Details Group",
|
|
53
|
+
* controls: [
|
|
54
|
+
* {
|
|
55
|
+
* id: "System.Description",
|
|
56
|
+
* label: "Description",
|
|
57
|
+
* },
|
|
58
|
+
* {
|
|
59
|
+
* id: "System.Title",
|
|
60
|
+
* label: "Title",
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* ### Group with Contribution Control (Extension)
|
|
67
|
+
*
|
|
68
|
+
* ```typescript
|
|
69
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
70
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
71
|
+
*
|
|
72
|
+
* const multivalue = new azuredevops.Extension("multivalue", {
|
|
73
|
+
* publisherId: "ms-devlabs",
|
|
74
|
+
* extensionId: "vsts-extensions-multivalue-control",
|
|
75
|
+
* });
|
|
76
|
+
* const example = new azuredevops.WorkitemtrackingprocessGroup("example", {
|
|
77
|
+
* processId: exampleAzuredevopsWorkitemtrackingprocessProcess.id,
|
|
78
|
+
* workItemTypeReferenceName: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.referenceName,
|
|
79
|
+
* pageId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].id,
|
|
80
|
+
* sectionId: exampleAzuredevopsWorkitemtrackingprocessWorkitemtype.pages[0].sections[0].id,
|
|
81
|
+
* label: "Extension Group",
|
|
82
|
+
* controls: [{
|
|
83
|
+
* id: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
|
|
84
|
+
* isContribution: true,
|
|
85
|
+
* contribution: {
|
|
86
|
+
* contributionId: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
|
|
87
|
+
* height: 50,
|
|
88
|
+
* inputs: {
|
|
89
|
+
* FieldName: "System.Tags",
|
|
90
|
+
* Values: "Option1;Option2;Option3",
|
|
91
|
+
* },
|
|
92
|
+
* },
|
|
93
|
+
* }],
|
|
94
|
+
* }, {
|
|
95
|
+
* dependsOn: [multivalue],
|
|
96
|
+
* });
|
|
97
|
+
* ```
|
|
98
|
+
*
|
|
99
|
+
* ## Relevant Links
|
|
100
|
+
*
|
|
101
|
+
* - [Azure DevOps Service REST API 7.1 - Groups](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/groups?view=azure-devops-rest-7.1)
|
|
102
|
+
*
|
|
103
|
+
* ## Import
|
|
104
|
+
*
|
|
105
|
+
* Groups can be imported using the complete resource id `process_id/work_item_type_reference_name/page_id/section_id/group_id`, e.g.
|
|
106
|
+
*
|
|
107
|
+
* ```sh
|
|
108
|
+
* $ pulumi import azuredevops:index/workitemtrackingprocessGroup:WorkitemtrackingprocessGroup example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/page-id/section-id/group-id
|
|
109
|
+
* ```
|
|
110
|
+
*/
|
|
111
|
+
class WorkitemtrackingprocessGroup extends pulumi.CustomResource {
|
|
112
|
+
/**
|
|
113
|
+
* Get an existing WorkitemtrackingprocessGroup resource's state with the given name, ID, and optional extra
|
|
114
|
+
* properties used to qualify the lookup.
|
|
115
|
+
*
|
|
116
|
+
* @param name The _unique_ name of the resulting resource.
|
|
117
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
118
|
+
* @param state Any extra arguments used during the lookup.
|
|
119
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
120
|
+
*/
|
|
121
|
+
static get(name, id, state, opts) {
|
|
122
|
+
return new WorkitemtrackingprocessGroup(name, state, { ...opts, id: id });
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* Returns true if the given object is an instance of WorkitemtrackingprocessGroup. This is designed to work even
|
|
126
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
127
|
+
*/
|
|
128
|
+
static isInstance(obj) {
|
|
129
|
+
if (obj === undefined || obj === null) {
|
|
130
|
+
return false;
|
|
131
|
+
}
|
|
132
|
+
return obj['__pulumiType'] === WorkitemtrackingprocessGroup.__pulumiType;
|
|
133
|
+
}
|
|
134
|
+
constructor(name, argsOrState, opts) {
|
|
135
|
+
let resourceInputs = {};
|
|
136
|
+
opts = opts || {};
|
|
137
|
+
if (opts.id) {
|
|
138
|
+
const state = argsOrState;
|
|
139
|
+
resourceInputs["controls"] = state?.controls;
|
|
140
|
+
resourceInputs["label"] = state?.label;
|
|
141
|
+
resourceInputs["order"] = state?.order;
|
|
142
|
+
resourceInputs["pageId"] = state?.pageId;
|
|
143
|
+
resourceInputs["processId"] = state?.processId;
|
|
144
|
+
resourceInputs["sectionId"] = state?.sectionId;
|
|
145
|
+
resourceInputs["visible"] = state?.visible;
|
|
146
|
+
resourceInputs["workItemTypeReferenceName"] = state?.workItemTypeReferenceName;
|
|
147
|
+
}
|
|
148
|
+
else {
|
|
149
|
+
const args = argsOrState;
|
|
150
|
+
if (args?.label === undefined && !opts.urn) {
|
|
151
|
+
throw new Error("Missing required property 'label'");
|
|
152
|
+
}
|
|
153
|
+
if (args?.pageId === undefined && !opts.urn) {
|
|
154
|
+
throw new Error("Missing required property 'pageId'");
|
|
155
|
+
}
|
|
156
|
+
if (args?.processId === undefined && !opts.urn) {
|
|
157
|
+
throw new Error("Missing required property 'processId'");
|
|
158
|
+
}
|
|
159
|
+
if (args?.sectionId === undefined && !opts.urn) {
|
|
160
|
+
throw new Error("Missing required property 'sectionId'");
|
|
161
|
+
}
|
|
162
|
+
if (args?.workItemTypeReferenceName === undefined && !opts.urn) {
|
|
163
|
+
throw new Error("Missing required property 'workItemTypeReferenceName'");
|
|
164
|
+
}
|
|
165
|
+
resourceInputs["controls"] = args?.controls;
|
|
166
|
+
resourceInputs["label"] = args?.label;
|
|
167
|
+
resourceInputs["order"] = args?.order;
|
|
168
|
+
resourceInputs["pageId"] = args?.pageId;
|
|
169
|
+
resourceInputs["processId"] = args?.processId;
|
|
170
|
+
resourceInputs["sectionId"] = args?.sectionId;
|
|
171
|
+
resourceInputs["visible"] = args?.visible;
|
|
172
|
+
resourceInputs["workItemTypeReferenceName"] = args?.workItemTypeReferenceName;
|
|
173
|
+
}
|
|
174
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
175
|
+
super(WorkitemtrackingprocessGroup.__pulumiType, name, resourceInputs, opts);
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
exports.WorkitemtrackingprocessGroup = WorkitemtrackingprocessGroup;
|
|
179
|
+
/** @internal */
|
|
180
|
+
WorkitemtrackingprocessGroup.__pulumiType = 'azuredevops:index/workitemtrackingprocessGroup:WorkitemtrackingprocessGroup';
|
|
181
|
+
//# sourceMappingURL=workitemtrackingprocessGroup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"workitemtrackingprocessGroup.js","sourceRoot":"","sources":["../workitemtrackingprocessGroup.ts"],"names":[],"mappings":"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"}
|