@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.
@@ -0,0 +1,158 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Manages variable group variables within a variable group.
4
+ *
5
+ * > **Note** Variable group variables can also be managed inlined in the `variable` blocks in `azuredevops.VariableGroup`.
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ### Basic usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as azuredevops from "@pulumi/azuredevops";
14
+ *
15
+ * const example = new azuredevops.Project("example", {
16
+ * name: "Example Project",
17
+ * workItemTemplate: "Agile",
18
+ * versionControl: "Git",
19
+ * visibility: "private",
20
+ * description: "Managed by Pulumi",
21
+ * });
22
+ * const exampleVariableGroup = new azuredevops.VariableGroup("example", {
23
+ * projectId: example.id,
24
+ * name: "Example Variable Group",
25
+ * description: "Example Variable Group Description",
26
+ * allowAccess: true,
27
+ * variables: [{
28
+ * name: "key1",
29
+ * value: "val1",
30
+ * }],
31
+ * });
32
+ * const exampleVariableGroupVariable = new azuredevops.VariableGroupVariable("example", {
33
+ * projectId: example.id,
34
+ * variableGroupId: exampleVariableGroup.id,
35
+ * name: "key2",
36
+ * value: "val2",
37
+ * });
38
+ * ```
39
+ *
40
+ * ## Relevant Links
41
+ *
42
+ * - [Azure DevOps Service REST API 7.0 - Variable Groups](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/variablegroups?view=azure-devops-rest-7.0)
43
+ *
44
+ * ## PAT Permissions Required
45
+ *
46
+ * - **Variable Groups**: Read, Create, & Manage
47
+ *
48
+ * ## Import
49
+ *
50
+ * **Secret variable cannot be imported.**
51
+ *
52
+ * Azure DevOps Variable group variables can be imported using the `project ID/variable group ID/variable name`, e.g.
53
+ *
54
+ * ```sh
55
+ * $ pulumi import azuredevops:index/variableGroupVariable:VariableGroupVariable example 00000000-0000-0000-0000-000000000000/0/key1
56
+ * ```
57
+ */
58
+ export declare class VariableGroupVariable extends pulumi.CustomResource {
59
+ /**
60
+ * Get an existing VariableGroupVariable resource's state with the given name, ID, and optional extra
61
+ * properties used to qualify the lookup.
62
+ *
63
+ * @param name The _unique_ name of the resulting resource.
64
+ * @param id The _unique_ provider ID of the resource to lookup.
65
+ * @param state Any extra arguments used during the lookup.
66
+ * @param opts Optional settings to control the behavior of the CustomResource.
67
+ */
68
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: VariableGroupVariableState, opts?: pulumi.CustomResourceOptions): VariableGroupVariable;
69
+ /**
70
+ * Returns true if the given object is an instance of VariableGroupVariable. This is designed to work even
71
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
72
+ */
73
+ static isInstance(obj: any): obj is VariableGroupVariable;
74
+ /**
75
+ * The name of the variable. Must be unique within the Variable Group.
76
+ */
77
+ readonly name: pulumi.Output<string>;
78
+ /**
79
+ * The ID of the project.
80
+ */
81
+ readonly projectId: pulumi.Output<string>;
82
+ /**
83
+ * The value of the secret variable.
84
+ *
85
+ * > **NOTE** Exactly one of `value` and `secretValue` must be specified.
86
+ */
87
+ readonly secretValue: pulumi.Output<string | undefined>;
88
+ /**
89
+ * The value of the variable.
90
+ */
91
+ readonly value: pulumi.Output<string | undefined>;
92
+ /**
93
+ * The ID of the variable group.
94
+ */
95
+ readonly variableGroupId: pulumi.Output<string>;
96
+ /**
97
+ * Create a VariableGroupVariable resource with the given unique name, arguments, and options.
98
+ *
99
+ * @param name The _unique_ name of the resource.
100
+ * @param args The arguments to use to populate this resource's properties.
101
+ * @param opts A bag of options that control this resource's behavior.
102
+ */
103
+ constructor(name: string, args: VariableGroupVariableArgs, opts?: pulumi.CustomResourceOptions);
104
+ }
105
+ /**
106
+ * Input properties used for looking up and filtering VariableGroupVariable resources.
107
+ */
108
+ export interface VariableGroupVariableState {
109
+ /**
110
+ * The name of the variable. Must be unique within the Variable Group.
111
+ */
112
+ name?: pulumi.Input<string>;
113
+ /**
114
+ * The ID of the project.
115
+ */
116
+ projectId?: pulumi.Input<string>;
117
+ /**
118
+ * The value of the secret variable.
119
+ *
120
+ * > **NOTE** Exactly one of `value` and `secretValue` must be specified.
121
+ */
122
+ secretValue?: pulumi.Input<string>;
123
+ /**
124
+ * The value of the variable.
125
+ */
126
+ value?: pulumi.Input<string>;
127
+ /**
128
+ * The ID of the variable group.
129
+ */
130
+ variableGroupId?: pulumi.Input<string>;
131
+ }
132
+ /**
133
+ * The set of arguments for constructing a VariableGroupVariable resource.
134
+ */
135
+ export interface VariableGroupVariableArgs {
136
+ /**
137
+ * The name of the variable. Must be unique within the Variable Group.
138
+ */
139
+ name?: pulumi.Input<string>;
140
+ /**
141
+ * The ID of the project.
142
+ */
143
+ projectId: pulumi.Input<string>;
144
+ /**
145
+ * The value of the secret variable.
146
+ *
147
+ * > **NOTE** Exactly one of `value` and `secretValue` must be specified.
148
+ */
149
+ secretValue?: pulumi.Input<string>;
150
+ /**
151
+ * The value of the variable.
152
+ */
153
+ value?: pulumi.Input<string>;
154
+ /**
155
+ * The ID of the variable group.
156
+ */
157
+ variableGroupId: pulumi.Input<string>;
158
+ }
@@ -0,0 +1,121 @@
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.VariableGroupVariable = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * Manages variable group variables within a variable group.
10
+ *
11
+ * > **Note** Variable group variables can also be managed inlined in the `variable` blocks in `azuredevops.VariableGroup`.
12
+ *
13
+ * ## Example Usage
14
+ *
15
+ * ### Basic usage
16
+ *
17
+ * ```typescript
18
+ * import * as pulumi from "@pulumi/pulumi";
19
+ * import * as azuredevops from "@pulumi/azuredevops";
20
+ *
21
+ * const example = new azuredevops.Project("example", {
22
+ * name: "Example Project",
23
+ * workItemTemplate: "Agile",
24
+ * versionControl: "Git",
25
+ * visibility: "private",
26
+ * description: "Managed by Pulumi",
27
+ * });
28
+ * const exampleVariableGroup = new azuredevops.VariableGroup("example", {
29
+ * projectId: example.id,
30
+ * name: "Example Variable Group",
31
+ * description: "Example Variable Group Description",
32
+ * allowAccess: true,
33
+ * variables: [{
34
+ * name: "key1",
35
+ * value: "val1",
36
+ * }],
37
+ * });
38
+ * const exampleVariableGroupVariable = new azuredevops.VariableGroupVariable("example", {
39
+ * projectId: example.id,
40
+ * variableGroupId: exampleVariableGroup.id,
41
+ * name: "key2",
42
+ * value: "val2",
43
+ * });
44
+ * ```
45
+ *
46
+ * ## Relevant Links
47
+ *
48
+ * - [Azure DevOps Service REST API 7.0 - Variable Groups](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/variablegroups?view=azure-devops-rest-7.0)
49
+ *
50
+ * ## PAT Permissions Required
51
+ *
52
+ * - **Variable Groups**: Read, Create, & Manage
53
+ *
54
+ * ## Import
55
+ *
56
+ * **Secret variable cannot be imported.**
57
+ *
58
+ * Azure DevOps Variable group variables can be imported using the `project ID/variable group ID/variable name`, e.g.
59
+ *
60
+ * ```sh
61
+ * $ pulumi import azuredevops:index/variableGroupVariable:VariableGroupVariable example 00000000-0000-0000-0000-000000000000/0/key1
62
+ * ```
63
+ */
64
+ class VariableGroupVariable extends pulumi.CustomResource {
65
+ /**
66
+ * Get an existing VariableGroupVariable resource's state with the given name, ID, and optional extra
67
+ * properties used to qualify the lookup.
68
+ *
69
+ * @param name The _unique_ name of the resulting resource.
70
+ * @param id The _unique_ provider ID of the resource to lookup.
71
+ * @param state Any extra arguments used during the lookup.
72
+ * @param opts Optional settings to control the behavior of the CustomResource.
73
+ */
74
+ static get(name, id, state, opts) {
75
+ return new VariableGroupVariable(name, state, { ...opts, id: id });
76
+ }
77
+ /**
78
+ * Returns true if the given object is an instance of VariableGroupVariable. This is designed to work even
79
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
80
+ */
81
+ static isInstance(obj) {
82
+ if (obj === undefined || obj === null) {
83
+ return false;
84
+ }
85
+ return obj['__pulumiType'] === VariableGroupVariable.__pulumiType;
86
+ }
87
+ constructor(name, argsOrState, opts) {
88
+ let resourceInputs = {};
89
+ opts = opts || {};
90
+ if (opts.id) {
91
+ const state = argsOrState;
92
+ resourceInputs["name"] = state?.name;
93
+ resourceInputs["projectId"] = state?.projectId;
94
+ resourceInputs["secretValue"] = state?.secretValue;
95
+ resourceInputs["value"] = state?.value;
96
+ resourceInputs["variableGroupId"] = state?.variableGroupId;
97
+ }
98
+ else {
99
+ const args = argsOrState;
100
+ if (args?.projectId === undefined && !opts.urn) {
101
+ throw new Error("Missing required property 'projectId'");
102
+ }
103
+ if (args?.variableGroupId === undefined && !opts.urn) {
104
+ throw new Error("Missing required property 'variableGroupId'");
105
+ }
106
+ resourceInputs["name"] = args?.name;
107
+ resourceInputs["projectId"] = args?.projectId;
108
+ resourceInputs["secretValue"] = args?.secretValue ? pulumi.secret(args.secretValue) : undefined;
109
+ resourceInputs["value"] = args?.value;
110
+ resourceInputs["variableGroupId"] = args?.variableGroupId;
111
+ }
112
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
113
+ const secretOpts = { additionalSecretOutputs: ["secretValue"] };
114
+ opts = pulumi.mergeOptions(opts, secretOpts);
115
+ super(VariableGroupVariable.__pulumiType, name, resourceInputs, opts);
116
+ }
117
+ }
118
+ exports.VariableGroupVariable = VariableGroupVariable;
119
+ /** @internal */
120
+ VariableGroupVariable.__pulumiType = 'azuredevops:index/variableGroupVariable:VariableGroupVariable';
121
+ //# sourceMappingURL=variableGroupVariable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"variableGroupVariable.js","sourceRoot":"","sources":["../variableGroupVariable.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuDG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,OAAO,IAAI,qBAAqB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,qBAAqB,CAAC,YAAY,CAAC;IACtE,CAAC;IAiCD,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqD,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;SAC9D;aAAM;YACH,MAAM,IAAI,GAAG,WAAoD,CAAC;YAClE,IAAI,IAAI,EAAE,SAAS,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC5C,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,IAAI,IAAI,EAAE,eAAe,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;aAClE;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,EAAE,SAAS,CAAC;YAC9C,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,EAAE,KAAK,CAAC;YACtC,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;SAC7D;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,aAAa,CAAC,EAAE,CAAC;QAChE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,qBAAqB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1E,CAAC;;AAvFL,sDAwFC;AA1EG,gBAAgB;AACO,kCAAY,GAAG,+DAA+D,CAAC"}
@@ -0,0 +1,291 @@
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 control within a group for a work item type. Controls can be field controls or contribution controls (extensions).
6
+ *
7
+ * ## Example Usage
8
+ *
9
+ * ### Basic Field Control
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
+ * });
23
+ * const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
24
+ * processId: example.id,
25
+ * workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
26
+ * pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
27
+ * sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
28
+ * label: "Custom Group",
29
+ * });
30
+ * const exampleWorkitemtrackingprocessControl = new azuredevops.WorkitemtrackingprocessControl("example", {
31
+ * processId: example.id,
32
+ * workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
33
+ * groupId: exampleWorkitemtrackingprocessGroup.id,
34
+ * controlId: "System.Title",
35
+ * label: "Title",
36
+ * });
37
+ * ```
38
+ *
39
+ * ### Contribution Control (Extension)
40
+ *
41
+ * ```typescript
42
+ * import * as pulumi from "@pulumi/pulumi";
43
+ * import * as azuredevops from "@pulumi/azuredevops";
44
+ *
45
+ * const example = new azuredevops.WorkitemtrackingprocessProcess("example", {
46
+ * name: "example-process",
47
+ * parentProcessTypeId: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
48
+ * });
49
+ * const exampleWorkitemtrackingprocessWorkitemtype = new azuredevops.WorkitemtrackingprocessWorkitemtype("example", {
50
+ * processId: example.id,
51
+ * name: "example",
52
+ * });
53
+ * const exampleWorkitemtrackingprocessGroup = new azuredevops.WorkitemtrackingprocessGroup("example", {
54
+ * processId: example.id,
55
+ * workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
56
+ * pageId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].id),
57
+ * sectionId: exampleWorkitemtrackingprocessWorkitemtype.pages.apply(pages => pages[0].sections?.[0]?.id),
58
+ * label: "Custom Group",
59
+ * });
60
+ * const exampleWorkitemtrackingprocessControl = new azuredevops.WorkitemtrackingprocessControl("example", {
61
+ * processId: example.id,
62
+ * workItemTypeReferenceName: exampleWorkitemtrackingprocessWorkitemtype.referenceName,
63
+ * groupId: exampleWorkitemtrackingprocessGroup.id,
64
+ * controlId: "MultiValueControl",
65
+ * isContribution: true,
66
+ * contribution: {
67
+ * contributionId: "ms-devlabs.vsts-extensions-multivalue-control.multivalue-form-control",
68
+ * height: 50,
69
+ * inputs: {
70
+ * FieldName: "System.Tags",
71
+ * Values: "Option1;Option2;Option3",
72
+ * },
73
+ * },
74
+ * });
75
+ * ```
76
+ *
77
+ * ## Relevant Links
78
+ *
79
+ * - [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)
80
+ *
81
+ * ## Import
82
+ *
83
+ * Controls can be imported using the complete resource id `process_id/work_item_type_reference_name/group_id/control_id`, e.g.
84
+ *
85
+ * ```sh
86
+ * $ pulumi import azuredevops:index/workitemtrackingprocessControl:WorkitemtrackingprocessControl example 00000000-0000-0000-0000-000000000000/MyProcess.CustomWorkItemType/group-id/System.Title
87
+ * ```
88
+ */
89
+ export declare class WorkitemtrackingprocessControl extends pulumi.CustomResource {
90
+ /**
91
+ * Get an existing WorkitemtrackingprocessControl resource's state with the given name, ID, and optional extra
92
+ * properties used to qualify the lookup.
93
+ *
94
+ * @param name The _unique_ name of the resulting resource.
95
+ * @param id The _unique_ provider ID of the resource to lookup.
96
+ * @param state Any extra arguments used during the lookup.
97
+ * @param opts Optional settings to control the behavior of the CustomResource.
98
+ */
99
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WorkitemtrackingprocessControlState, opts?: pulumi.CustomResourceOptions): WorkitemtrackingprocessControl;
100
+ /**
101
+ * Returns true if the given object is an instance of WorkitemtrackingprocessControl. This is designed to work even
102
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
103
+ */
104
+ static isInstance(obj: any): obj is WorkitemtrackingprocessControl;
105
+ /**
106
+ * Contribution configuration for extension controls. A `contribution` block as defined below.
107
+ */
108
+ readonly contribution: pulumi.Output<outputs.WorkitemtrackingprocessControlContribution | undefined>;
109
+ /**
110
+ * The ID for the control. For field controls, this is the field reference name. Changing this forces a new control to be created.
111
+ */
112
+ readonly controlId: pulumi.Output<string>;
113
+ /**
114
+ * The type of the control (e.g., FieldControl, HtmlFieldControl, DateTimeControl).
115
+ */
116
+ readonly controlType: pulumi.Output<string>;
117
+ /**
118
+ * The ID of the group to add the control to. Changing this moves the control to the new group.
119
+ */
120
+ readonly groupId: pulumi.Output<string>;
121
+ /**
122
+ * A value indicating whether this layout node has been inherited from a parent layout.
123
+ */
124
+ readonly inherited: pulumi.Output<boolean>;
125
+ /**
126
+ * A value indicating if the control is a contribution (extension) control. Default: `false`
127
+ */
128
+ readonly isContribution: pulumi.Output<boolean | undefined>;
129
+ /**
130
+ * Label for the control.
131
+ */
132
+ readonly label: pulumi.Output<string>;
133
+ /**
134
+ * Inner text of the control.
135
+ */
136
+ readonly metadata: pulumi.Output<string>;
137
+ /**
138
+ * Order in which the control should appear in its group.
139
+ */
140
+ readonly order: pulumi.Output<number>;
141
+ /**
142
+ * A value indicating whether this layout node has been overridden by a child layout.
143
+ */
144
+ readonly overridden: pulumi.Output<boolean>;
145
+ /**
146
+ * The ID of the process. Changing this forces a new control to be created.
147
+ */
148
+ readonly processId: pulumi.Output<string>;
149
+ /**
150
+ * A value indicating if the control is readonly. Default: `false`
151
+ */
152
+ readonly readOnly: pulumi.Output<boolean | undefined>;
153
+ /**
154
+ * A value indicating if the control should be visible or not. Default: `true`
155
+ */
156
+ readonly visible: pulumi.Output<boolean | undefined>;
157
+ /**
158
+ * Watermark text for the textbox.
159
+ */
160
+ readonly watermark: pulumi.Output<string>;
161
+ /**
162
+ * The reference name of the work item type. Changing this forces a new control to be created.
163
+ */
164
+ readonly workItemTypeReferenceName: pulumi.Output<string>;
165
+ /**
166
+ * Create a WorkitemtrackingprocessControl resource with the given unique name, arguments, and options.
167
+ *
168
+ * @param name The _unique_ name of the resource.
169
+ * @param args The arguments to use to populate this resource's properties.
170
+ * @param opts A bag of options that control this resource's behavior.
171
+ */
172
+ constructor(name: string, args: WorkitemtrackingprocessControlArgs, opts?: pulumi.CustomResourceOptions);
173
+ }
174
+ /**
175
+ * Input properties used for looking up and filtering WorkitemtrackingprocessControl resources.
176
+ */
177
+ export interface WorkitemtrackingprocessControlState {
178
+ /**
179
+ * Contribution configuration for extension controls. A `contribution` block as defined below.
180
+ */
181
+ contribution?: pulumi.Input<inputs.WorkitemtrackingprocessControlContribution>;
182
+ /**
183
+ * The ID for the control. For field controls, this is the field reference name. Changing this forces a new control to be created.
184
+ */
185
+ controlId?: pulumi.Input<string>;
186
+ /**
187
+ * The type of the control (e.g., FieldControl, HtmlFieldControl, DateTimeControl).
188
+ */
189
+ controlType?: pulumi.Input<string>;
190
+ /**
191
+ * The ID of the group to add the control to. Changing this moves the control to the new group.
192
+ */
193
+ groupId?: pulumi.Input<string>;
194
+ /**
195
+ * A value indicating whether this layout node has been inherited from a parent layout.
196
+ */
197
+ inherited?: pulumi.Input<boolean>;
198
+ /**
199
+ * A value indicating if the control is a contribution (extension) control. Default: `false`
200
+ */
201
+ isContribution?: pulumi.Input<boolean>;
202
+ /**
203
+ * Label for the control.
204
+ */
205
+ label?: pulumi.Input<string>;
206
+ /**
207
+ * Inner text of the control.
208
+ */
209
+ metadata?: pulumi.Input<string>;
210
+ /**
211
+ * Order in which the control should appear in its group.
212
+ */
213
+ order?: pulumi.Input<number>;
214
+ /**
215
+ * A value indicating whether this layout node has been overridden by a child layout.
216
+ */
217
+ overridden?: pulumi.Input<boolean>;
218
+ /**
219
+ * The ID of the process. Changing this forces a new control to be created.
220
+ */
221
+ processId?: pulumi.Input<string>;
222
+ /**
223
+ * A value indicating if the control is readonly. Default: `false`
224
+ */
225
+ readOnly?: pulumi.Input<boolean>;
226
+ /**
227
+ * A value indicating if the control should be visible or not. Default: `true`
228
+ */
229
+ visible?: pulumi.Input<boolean>;
230
+ /**
231
+ * Watermark text for the textbox.
232
+ */
233
+ watermark?: pulumi.Input<string>;
234
+ /**
235
+ * The reference name of the work item type. Changing this forces a new control to be created.
236
+ */
237
+ workItemTypeReferenceName?: pulumi.Input<string>;
238
+ }
239
+ /**
240
+ * The set of arguments for constructing a WorkitemtrackingprocessControl resource.
241
+ */
242
+ export interface WorkitemtrackingprocessControlArgs {
243
+ /**
244
+ * Contribution configuration for extension controls. A `contribution` block as defined below.
245
+ */
246
+ contribution?: pulumi.Input<inputs.WorkitemtrackingprocessControlContribution>;
247
+ /**
248
+ * The ID for the control. For field controls, this is the field reference name. Changing this forces a new control to be created.
249
+ */
250
+ controlId: pulumi.Input<string>;
251
+ /**
252
+ * The ID of the group to add the control to. Changing this moves the control to the new group.
253
+ */
254
+ groupId: pulumi.Input<string>;
255
+ /**
256
+ * A value indicating if the control is a contribution (extension) control. Default: `false`
257
+ */
258
+ isContribution?: pulumi.Input<boolean>;
259
+ /**
260
+ * Label for the control.
261
+ */
262
+ label?: pulumi.Input<string>;
263
+ /**
264
+ * Inner text of the control.
265
+ */
266
+ metadata?: pulumi.Input<string>;
267
+ /**
268
+ * Order in which the control should appear in its group.
269
+ */
270
+ order?: pulumi.Input<number>;
271
+ /**
272
+ * The ID of the process. Changing this forces a new control to be created.
273
+ */
274
+ processId: pulumi.Input<string>;
275
+ /**
276
+ * A value indicating if the control is readonly. Default: `false`
277
+ */
278
+ readOnly?: pulumi.Input<boolean>;
279
+ /**
280
+ * A value indicating if the control should be visible or not. Default: `true`
281
+ */
282
+ visible?: pulumi.Input<boolean>;
283
+ /**
284
+ * Watermark text for the textbox.
285
+ */
286
+ watermark?: pulumi.Input<string>;
287
+ /**
288
+ * The reference name of the work item type. Changing this forces a new control to be created.
289
+ */
290
+ workItemTypeReferenceName: pulumi.Input<string>;
291
+ }