@pulumi/azuredevops 3.12.0-alpha.1767139460 → 3.12.0
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,112 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to access information about an existing work item type for a process.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
10
|
+
*
|
|
11
|
+
* const example = azuredevops.getWorkitemtrackingprocessWorkitemtype({
|
|
12
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
13
|
+
* referenceName: "MyProcess.Example",
|
|
14
|
+
* });
|
|
15
|
+
* export const name = example.then(example => example.name);
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* ## Relevant Links
|
|
19
|
+
*
|
|
20
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/get?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
21
|
+
*/
|
|
22
|
+
export declare function getWorkitemtrackingprocessWorkitemtype(args: GetWorkitemtrackingprocessWorkitemtypeArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkitemtrackingprocessWorkitemtypeResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessWorkitemtype.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetWorkitemtrackingprocessWorkitemtypeArgs {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the process.
|
|
29
|
+
*/
|
|
30
|
+
processId: string;
|
|
31
|
+
/**
|
|
32
|
+
* The reference name of the work item type.
|
|
33
|
+
*/
|
|
34
|
+
referenceName: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getWorkitemtrackingprocessWorkitemtype.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetWorkitemtrackingprocessWorkitemtypeResult {
|
|
40
|
+
/**
|
|
41
|
+
* Color hexadecimal code to represent the work item type.
|
|
42
|
+
*/
|
|
43
|
+
readonly color: string;
|
|
44
|
+
/**
|
|
45
|
+
* Indicates the type of customization on this work item type.
|
|
46
|
+
*/
|
|
47
|
+
readonly customization: string;
|
|
48
|
+
/**
|
|
49
|
+
* Description of the work item type.
|
|
50
|
+
*/
|
|
51
|
+
readonly description: string;
|
|
52
|
+
/**
|
|
53
|
+
* Icon to represent the work item type.
|
|
54
|
+
*/
|
|
55
|
+
readonly icon: string;
|
|
56
|
+
/**
|
|
57
|
+
* The provider-assigned unique ID for this managed resource.
|
|
58
|
+
*/
|
|
59
|
+
readonly id: string;
|
|
60
|
+
/**
|
|
61
|
+
* Indicates if the work item type is enabled.
|
|
62
|
+
*/
|
|
63
|
+
readonly isEnabled: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Name of the work item type.
|
|
66
|
+
*/
|
|
67
|
+
readonly name: string;
|
|
68
|
+
/**
|
|
69
|
+
* Reference name of the parent work item type.
|
|
70
|
+
*/
|
|
71
|
+
readonly parentWorkItemReferenceName: string;
|
|
72
|
+
readonly processId: string;
|
|
73
|
+
readonly referenceName: string;
|
|
74
|
+
/**
|
|
75
|
+
* URL of the work item type.
|
|
76
|
+
*/
|
|
77
|
+
readonly url: string;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Use this data source to access information about an existing work item type for a process.
|
|
81
|
+
*
|
|
82
|
+
* ## Example Usage
|
|
83
|
+
*
|
|
84
|
+
* ```typescript
|
|
85
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
86
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
87
|
+
*
|
|
88
|
+
* const example = azuredevops.getWorkitemtrackingprocessWorkitemtype({
|
|
89
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
90
|
+
* referenceName: "MyProcess.Example",
|
|
91
|
+
* });
|
|
92
|
+
* export const name = example.then(example => example.name);
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
95
|
+
* ## Relevant Links
|
|
96
|
+
*
|
|
97
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/get?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
98
|
+
*/
|
|
99
|
+
export declare function getWorkitemtrackingprocessWorkitemtypeOutput(args: GetWorkitemtrackingprocessWorkitemtypeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkitemtrackingprocessWorkitemtypeResult>;
|
|
100
|
+
/**
|
|
101
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessWorkitemtype.
|
|
102
|
+
*/
|
|
103
|
+
export interface GetWorkitemtrackingprocessWorkitemtypeOutputArgs {
|
|
104
|
+
/**
|
|
105
|
+
* The ID of the process.
|
|
106
|
+
*/
|
|
107
|
+
processId: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The reference name of the work item type.
|
|
110
|
+
*/
|
|
111
|
+
referenceName: pulumi.Input<string>;
|
|
112
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
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.getWorkitemtrackingprocessWorkitemtypeOutput = exports.getWorkitemtrackingprocessWorkitemtype = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about an existing work item type for a process.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
16
|
+
*
|
|
17
|
+
* const example = azuredevops.getWorkitemtrackingprocessWorkitemtype({
|
|
18
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
19
|
+
* referenceName: "MyProcess.Example",
|
|
20
|
+
* });
|
|
21
|
+
* export const name = example.then(example => example.name);
|
|
22
|
+
* ```
|
|
23
|
+
*
|
|
24
|
+
* ## Relevant Links
|
|
25
|
+
*
|
|
26
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/get?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
27
|
+
*/
|
|
28
|
+
function getWorkitemtrackingprocessWorkitemtype(args, opts) {
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invoke("azuredevops:index/getWorkitemtrackingprocessWorkitemtype:getWorkitemtrackingprocessWorkitemtype", {
|
|
31
|
+
"processId": args.processId,
|
|
32
|
+
"referenceName": args.referenceName,
|
|
33
|
+
}, opts);
|
|
34
|
+
}
|
|
35
|
+
exports.getWorkitemtrackingprocessWorkitemtype = getWorkitemtrackingprocessWorkitemtype;
|
|
36
|
+
/**
|
|
37
|
+
* Use this data source to access information about an existing work item type for a process.
|
|
38
|
+
*
|
|
39
|
+
* ## Example Usage
|
|
40
|
+
*
|
|
41
|
+
* ```typescript
|
|
42
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
44
|
+
*
|
|
45
|
+
* const example = azuredevops.getWorkitemtrackingprocessWorkitemtype({
|
|
46
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
47
|
+
* referenceName: "MyProcess.Example",
|
|
48
|
+
* });
|
|
49
|
+
* export const name = example.then(example => example.name);
|
|
50
|
+
* ```
|
|
51
|
+
*
|
|
52
|
+
* ## Relevant Links
|
|
53
|
+
*
|
|
54
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/get?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
55
|
+
*/
|
|
56
|
+
function getWorkitemtrackingprocessWorkitemtypeOutput(args, opts) {
|
|
57
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
58
|
+
return pulumi.runtime.invokeOutput("azuredevops:index/getWorkitemtrackingprocessWorkitemtype:getWorkitemtrackingprocessWorkitemtype", {
|
|
59
|
+
"processId": args.processId,
|
|
60
|
+
"referenceName": args.referenceName,
|
|
61
|
+
}, opts);
|
|
62
|
+
}
|
|
63
|
+
exports.getWorkitemtrackingprocessWorkitemtypeOutput = getWorkitemtrackingprocessWorkitemtypeOutput;
|
|
64
|
+
//# sourceMappingURL=getWorkitemtrackingprocessWorkitemtype.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getWorkitemtrackingprocessWorkitemtype.js","sourceRoot":"","sources":["../getWorkitemtrackingprocessWorkitemtype.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,sCAAsC,CAAC,IAAgD,EAAE,IAA2B;IAChI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iGAAiG,EAAE;QAC5H,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wFAMC;AA2DD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,4CAA4C,CAAC,IAAsD,EAAE,IAAiC;IAClJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iGAAiG,EAAE;QAClI,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oGAMC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to access information about all work item types in a process.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
11
|
+
*
|
|
12
|
+
* const customProcess = azuredevops.getWorkitemtrackingprocessWorkitemtypes({
|
|
13
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
14
|
+
* });
|
|
15
|
+
* export const workItemTypes = customProcess.then(customProcess => customProcess.workItemTypes);
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* ## Relevant Links
|
|
19
|
+
*
|
|
20
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/list?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
21
|
+
*/
|
|
22
|
+
export declare function getWorkitemtrackingprocessWorkitemtypes(args: GetWorkitemtrackingprocessWorkitemtypesArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkitemtrackingprocessWorkitemtypesResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessWorkitemtypes.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetWorkitemtrackingprocessWorkitemtypesArgs {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the process.
|
|
29
|
+
*/
|
|
30
|
+
processId: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getWorkitemtrackingprocessWorkitemtypes.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetWorkitemtrackingprocessWorkitemtypesResult {
|
|
36
|
+
/**
|
|
37
|
+
* The provider-assigned unique ID for this managed resource.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
readonly processId: string;
|
|
41
|
+
/**
|
|
42
|
+
* A `workItemTypes` block as defined below. A list of work item types for the process.
|
|
43
|
+
*/
|
|
44
|
+
readonly workItemTypes: outputs.GetWorkitemtrackingprocessWorkitemtypesWorkItemType[];
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* Use this data source to access information about all work item types in a process.
|
|
48
|
+
*
|
|
49
|
+
* ## Example Usage
|
|
50
|
+
*
|
|
51
|
+
* ```typescript
|
|
52
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
53
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
54
|
+
*
|
|
55
|
+
* const customProcess = azuredevops.getWorkitemtrackingprocessWorkitemtypes({
|
|
56
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
57
|
+
* });
|
|
58
|
+
* export const workItemTypes = customProcess.then(customProcess => customProcess.workItemTypes);
|
|
59
|
+
* ```
|
|
60
|
+
*
|
|
61
|
+
* ## Relevant Links
|
|
62
|
+
*
|
|
63
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/list?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
64
|
+
*/
|
|
65
|
+
export declare function getWorkitemtrackingprocessWorkitemtypesOutput(args: GetWorkitemtrackingprocessWorkitemtypesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkitemtrackingprocessWorkitemtypesResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessWorkitemtypes.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetWorkitemtrackingprocessWorkitemtypesOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The ID of the process.
|
|
72
|
+
*/
|
|
73
|
+
processId: pulumi.Input<string>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
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.getWorkitemtrackingprocessWorkitemtypesOutput = exports.getWorkitemtrackingprocessWorkitemtypes = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about all work item types in a process.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
16
|
+
*
|
|
17
|
+
* const customProcess = azuredevops.getWorkitemtrackingprocessWorkitemtypes({
|
|
18
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
19
|
+
* });
|
|
20
|
+
* export const workItemTypes = customProcess.then(customProcess => customProcess.workItemTypes);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Relevant Links
|
|
24
|
+
*
|
|
25
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/list?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
26
|
+
*/
|
|
27
|
+
function getWorkitemtrackingprocessWorkitemtypes(args, opts) {
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("azuredevops:index/getWorkitemtrackingprocessWorkitemtypes:getWorkitemtrackingprocessWorkitemtypes", {
|
|
30
|
+
"processId": args.processId,
|
|
31
|
+
}, opts);
|
|
32
|
+
}
|
|
33
|
+
exports.getWorkitemtrackingprocessWorkitemtypes = getWorkitemtrackingprocessWorkitemtypes;
|
|
34
|
+
/**
|
|
35
|
+
* Use this data source to access information about all work item types in a process.
|
|
36
|
+
*
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
42
|
+
*
|
|
43
|
+
* const customProcess = azuredevops.getWorkitemtrackingprocessWorkitemtypes({
|
|
44
|
+
* processId: "f22ab9cc-acad-47ab-b31d-e43ef8d72b89",
|
|
45
|
+
* });
|
|
46
|
+
* export const workItemTypes = customProcess.then(customProcess => customProcess.workItemTypes);
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* ## Relevant Links
|
|
50
|
+
*
|
|
51
|
+
* - [Azure DevOps Service REST API 7.1 - Work Item Types - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/work-item-types/list?view=azure-devops-rest-7.1&tabs=HTTP)
|
|
52
|
+
*/
|
|
53
|
+
function getWorkitemtrackingprocessWorkitemtypesOutput(args, opts) {
|
|
54
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
55
|
+
return pulumi.runtime.invokeOutput("azuredevops:index/getWorkitemtrackingprocessWorkitemtypes:getWorkitemtrackingprocessWorkitemtypes", {
|
|
56
|
+
"processId": args.processId,
|
|
57
|
+
}, opts);
|
|
58
|
+
}
|
|
59
|
+
exports.getWorkitemtrackingprocessWorkitemtypesOutput = getWorkitemtrackingprocessWorkitemtypesOutput;
|
|
60
|
+
//# sourceMappingURL=getWorkitemtrackingprocessWorkitemtypes.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getWorkitemtrackingprocessWorkitemtypes.js","sourceRoot":"","sources":["../getWorkitemtrackingprocessWorkitemtypes.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,uCAAuC,CAAC,IAAiD,EAAE,IAA2B;IAClI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mGAAmG,EAAE;QAC9H,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0FAKC;AA0BD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,6CAA6C,CAAC,IAAuD,EAAE,IAAiC;IACpJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,mGAAmG,EAAE;QACpI,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sGAKC"}
|
package/index.d.ts
CHANGED
|
@@ -193,6 +193,12 @@ export declare const getWorkitemtrackingprocessProcessOutput: typeof import("./g
|
|
|
193
193
|
export { GetWorkitemtrackingprocessProcessesArgs, GetWorkitemtrackingprocessProcessesResult, GetWorkitemtrackingprocessProcessesOutputArgs } from "./getWorkitemtrackingprocessProcesses";
|
|
194
194
|
export declare const getWorkitemtrackingprocessProcesses: typeof import("./getWorkitemtrackingprocessProcesses").getWorkitemtrackingprocessProcesses;
|
|
195
195
|
export declare const getWorkitemtrackingprocessProcessesOutput: typeof import("./getWorkitemtrackingprocessProcesses").getWorkitemtrackingprocessProcessesOutput;
|
|
196
|
+
export { GetWorkitemtrackingprocessWorkitemtypeArgs, GetWorkitemtrackingprocessWorkitemtypeResult, GetWorkitemtrackingprocessWorkitemtypeOutputArgs } from "./getWorkitemtrackingprocessWorkitemtype";
|
|
197
|
+
export declare const getWorkitemtrackingprocessWorkitemtype: typeof import("./getWorkitemtrackingprocessWorkitemtype").getWorkitemtrackingprocessWorkitemtype;
|
|
198
|
+
export declare const getWorkitemtrackingprocessWorkitemtypeOutput: typeof import("./getWorkitemtrackingprocessWorkitemtype").getWorkitemtrackingprocessWorkitemtypeOutput;
|
|
199
|
+
export { GetWorkitemtrackingprocessWorkitemtypesArgs, GetWorkitemtrackingprocessWorkitemtypesResult, GetWorkitemtrackingprocessWorkitemtypesOutputArgs } from "./getWorkitemtrackingprocessWorkitemtypes";
|
|
200
|
+
export declare const getWorkitemtrackingprocessWorkitemtypes: typeof import("./getWorkitemtrackingprocessWorkitemtypes").getWorkitemtrackingprocessWorkitemtypes;
|
|
201
|
+
export declare const getWorkitemtrackingprocessWorkitemtypesOutput: typeof import("./getWorkitemtrackingprocessWorkitemtypes").getWorkitemtrackingprocessWorkitemtypesOutput;
|
|
196
202
|
export { GitArgs, GitState } from "./git";
|
|
197
203
|
export type Git = import("./git").Git;
|
|
198
204
|
export declare const Git: typeof import("./git").Git;
|
|
@@ -434,6 +440,9 @@ export declare const VariableGroup: typeof import("./variableGroup").VariableGro
|
|
|
434
440
|
export { VariableGroupPermissionsArgs, VariableGroupPermissionsState } from "./variableGroupPermissions";
|
|
435
441
|
export type VariableGroupPermissions = import("./variableGroupPermissions").VariableGroupPermissions;
|
|
436
442
|
export declare const VariableGroupPermissions: typeof import("./variableGroupPermissions").VariableGroupPermissions;
|
|
443
|
+
export { VariableGroupVariableArgs, VariableGroupVariableState } from "./variableGroupVariable";
|
|
444
|
+
export type VariableGroupVariable = import("./variableGroupVariable").VariableGroupVariable;
|
|
445
|
+
export declare const VariableGroupVariable: typeof import("./variableGroupVariable").VariableGroupVariable;
|
|
437
446
|
export { WikiArgs, WikiState } from "./wiki";
|
|
438
447
|
export type Wiki = import("./wiki").Wiki;
|
|
439
448
|
export declare const Wiki: typeof import("./wiki").Wiki;
|
|
@@ -452,9 +461,21 @@ export declare const Workitemquery: typeof import("./workitemquery").Workitemque
|
|
|
452
461
|
export { WorkitemqueryFolderArgs, WorkitemqueryFolderState } from "./workitemqueryFolder";
|
|
453
462
|
export type WorkitemqueryFolder = import("./workitemqueryFolder").WorkitemqueryFolder;
|
|
454
463
|
export declare const WorkitemqueryFolder: typeof import("./workitemqueryFolder").WorkitemqueryFolder;
|
|
464
|
+
export { WorkitemtrackingprocessControlArgs, WorkitemtrackingprocessControlState } from "./workitemtrackingprocessControl";
|
|
465
|
+
export type WorkitemtrackingprocessControl = import("./workitemtrackingprocessControl").WorkitemtrackingprocessControl;
|
|
466
|
+
export declare const WorkitemtrackingprocessControl: typeof import("./workitemtrackingprocessControl").WorkitemtrackingprocessControl;
|
|
467
|
+
export { WorkitemtrackingprocessGroupArgs, WorkitemtrackingprocessGroupState } from "./workitemtrackingprocessGroup";
|
|
468
|
+
export type WorkitemtrackingprocessGroup = import("./workitemtrackingprocessGroup").WorkitemtrackingprocessGroup;
|
|
469
|
+
export declare const WorkitemtrackingprocessGroup: typeof import("./workitemtrackingprocessGroup").WorkitemtrackingprocessGroup;
|
|
455
470
|
export { WorkitemtrackingprocessProcessArgs, WorkitemtrackingprocessProcessState } from "./workitemtrackingprocessProcess";
|
|
456
471
|
export type WorkitemtrackingprocessProcess = import("./workitemtrackingprocessProcess").WorkitemtrackingprocessProcess;
|
|
457
472
|
export declare const WorkitemtrackingprocessProcess: typeof import("./workitemtrackingprocessProcess").WorkitemtrackingprocessProcess;
|
|
473
|
+
export { WorkitemtrackingprocessProcessPermissionsArgs, WorkitemtrackingprocessProcessPermissionsState } from "./workitemtrackingprocessProcessPermissions";
|
|
474
|
+
export type WorkitemtrackingprocessProcessPermissions = import("./workitemtrackingprocessProcessPermissions").WorkitemtrackingprocessProcessPermissions;
|
|
475
|
+
export declare const WorkitemtrackingprocessProcessPermissions: typeof import("./workitemtrackingprocessProcessPermissions").WorkitemtrackingprocessProcessPermissions;
|
|
476
|
+
export { WorkitemtrackingprocessWorkitemtypeArgs, WorkitemtrackingprocessWorkitemtypeState } from "./workitemtrackingprocessWorkitemtype";
|
|
477
|
+
export type WorkitemtrackingprocessWorkitemtype = import("./workitemtrackingprocessWorkitemtype").WorkitemtrackingprocessWorkitemtype;
|
|
478
|
+
export declare const WorkitemtrackingprocessWorkitemtype: typeof import("./workitemtrackingprocessWorkitemtype").WorkitemtrackingprocessWorkitemtype;
|
|
458
479
|
import * as config from "./config";
|
|
459
480
|
import * as types from "./types";
|
|
460
481
|
export { config, types, };
|
package/index.js
CHANGED
|
@@ -18,8 +18,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.getGroupsOutput = exports.getGroups = exports.getGroupMembershipOutput = exports.getGroupMembership = exports.getGroupOutput = exports.getGroup = exports.getGitRepositoryFileOutput = exports.getGitRepositoryFile = exports.getGitRepositoryOutput = exports.getGitRepository = exports.getFeedOutput = exports.getFeed = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDescriptorOutput = exports.getDescriptor = exports.getClientConfigOutput = exports.getClientConfig = exports.getBuildDefinitionOutput = exports.getBuildDefinition = exports.getAreaOutput = exports.getArea = exports.getAgentQueueOutput = exports.getAgentQueue = exports.FeedRetentionPolicy = exports.FeedPermission = exports.Feed = exports.Extension = exports.EnvironmentResourceKubernetes = exports.Environment = exports.ElasticPool = exports.Dashboard = exports.CheckRestApi = exports.CheckRequiredTemplate = exports.CheckExclusiveLock = exports.CheckBusinessHours = exports.CheckBranchControl = exports.CheckApproval = exports.BuildFolderPermissions = exports.BuildFolder = exports.BuildDefinitionPermissions = exports.BuildDefinition = exports.BranchPolicyWorkItemLinking = exports.BranchPolicyStatusCheck = exports.BranchPolicyMinReviewers = exports.BranchPolicyMergeTypes = exports.BranchPolicyCommentResolution = exports.BranchPolicyBuildValidation = exports.BranchPolicyAutoReviewers = exports.AreaPermissions = void 0;
|
|
20
20
|
exports.getVariableGroupOutput = exports.getVariableGroup = exports.getUsersOutput = exports.getUsers = exports.getUserOutput = exports.getUser = exports.getTeamsOutput = exports.getTeams = exports.getTeamOutput = exports.getTeam = exports.getStorageKeyOutput = exports.getStorageKey = exports.getServiceendpointSonarcloudOutput = exports.getServiceendpointSonarcloud = exports.getServiceendpointNpmOutput = exports.getServiceendpointNpm = exports.getServiceendpointGenericV2Output = exports.getServiceendpointGenericV2 = exports.getServiceendpointDockerregistryOutput = exports.getServiceendpointDockerregistry = exports.getServiceendpointBitbucketOutput = exports.getServiceendpointBitbucket = exports.getServiceendpointAzurecrOutput = exports.getServiceendpointAzurecr = exports.getServicePrincipalOutput = exports.getServicePrincipal = exports.getServiceEndpointGithubOutput = exports.getServiceEndpointGithub = exports.getServiceEndpointAzureRMOutput = exports.getServiceEndpointAzureRM = exports.getSecurityroleDefinitionsOutput = exports.getSecurityroleDefinitions = exports.getRepositoriesOutput = exports.getRepositories = exports.getProjectsOutput = exports.getProjects = exports.getProjectOutput = exports.getProject = exports.getPoolsOutput = exports.getPools = exports.getPoolOutput = exports.getPool = exports.getIterationOutput = exports.getIteration = exports.getIdentityUsersOutput = exports.getIdentityUsers = exports.getIdentityGroupsOutput = exports.getIdentityGroups = exports.getIdentityGroupOutput = exports.getIdentityGroup = void 0;
|
|
21
|
-
exports.
|
|
22
|
-
exports.
|
|
21
|
+
exports.ServiceEndpointServiceFabric = exports.ServiceEndpointPipeline = exports.ServiceEndpointNpm = exports.ServiceEndpointKubernetes = exports.ServiceEndpointGitLab = exports.ServiceEndpointGitHubEnterprise = exports.ServiceEndpointGitHub = exports.ServiceEndpointGenericGit = exports.ServiceEndpointGeneric = exports.ServiceEndpointDockerRegistry = exports.ServiceEndpointBitBucket = exports.ServiceEndpointAzureRM = exports.ServiceEndpointAzureEcr = exports.ServiceEndpointAzureDevOps = exports.ServiceEndpointAws = exports.ServiceEndpointArtifactory = exports.SecurityroleAssignment = exports.ResourceAuthorization = exports.RepositoryPolicyReservedNames = exports.RepositoryPolicyMaxPathLength = exports.RepositoryPolicyMaxFileSize = exports.RepositoryPolicyFilePathPattern = exports.RepositoryPolicyCheckCredentials = exports.RepositoryPolicyCaseEnforcement = exports.RepositoryPolicyAuthorEmailPattern = exports.Queue = exports.ProjectTags = exports.ProjectPipelineSettings = exports.ProjectPermissions = exports.ProjectFeatures = exports.Project = exports.Pool = exports.PipelineAuthorization = exports.LibraryPermissions = exports.IterativePermissions = exports.GroupMembership = exports.GroupEntitlement = exports.Group = exports.GitRepositoryFile = exports.GitRepositoryBranch = exports.GitPermissions = exports.Git = exports.getWorkitemtrackingprocessWorkitemtypesOutput = exports.getWorkitemtrackingprocessWorkitemtypes = exports.getWorkitemtrackingprocessWorkitemtypeOutput = exports.getWorkitemtrackingprocessWorkitemtype = exports.getWorkitemtrackingprocessProcessesOutput = exports.getWorkitemtrackingprocessProcesses = exports.getWorkitemtrackingprocessProcessOutput = exports.getWorkitemtrackingprocessProcess = void 0;
|
|
22
|
+
exports.WorkitemtrackingprocessWorkitemtype = exports.WorkitemtrackingprocessProcessPermissions = exports.WorkitemtrackingprocessProcess = exports.WorkitemtrackingprocessGroup = exports.WorkitemtrackingprocessControl = exports.WorkitemqueryFolder = exports.Workitemquery = exports.Workitem = exports.WorkItemQueryPermissions = exports.WikiPage = exports.Wiki = exports.VariableGroupVariable = exports.VariableGroupPermissions = exports.VariableGroup = exports.User = exports.TeamMembers = exports.TeamAdministrators = exports.Team = exports.TaggingPermissions = exports.ServicehookWebhookTfs = exports.ServicehookStorageQueuePipelines = exports.ServicehookPermissions = exports.ServiceendpointVisualstudiomarketplace = exports.ServiceendpointSnyk = exports.ServiceendpointPermissions = exports.ServiceendpointOpenshift = exports.ServiceendpointOctopusdeploy = exports.ServiceendpointNuget = exports.ServiceendpointNexus = exports.ServiceendpointMaven = exports.ServiceendpointJfrogXrayV2 = exports.ServiceendpointJfrogPlatformV2 = exports.ServiceendpointJfrogDistributionV2 = exports.ServiceendpointJfrogArtifactoryV2 = exports.ServiceendpointJenkins = exports.ServiceendpointIncomingwebhook = exports.ServiceendpointGenericV2 = exports.ServiceendpointGcpTerraform = exports.ServiceendpointExternaltfs = exports.ServiceendpointDynamicsLifecycleServices = exports.ServiceendpointCheckmarxSca = exports.ServiceendpointCheckmarxSast = exports.ServiceendpointCheckmarxOne = exports.ServiceendpointBlackDuck = exports.ServiceendpointAzureServiceBus = exports.ServiceendpointArgocd = exports.ServicePrincipalEntitlement = exports.ServiceEndpointSsh = exports.ServiceEndpointSonarQube = exports.ServiceEndpointSonarCloud = void 0;
|
|
23
|
+
exports.types = exports.config = void 0;
|
|
23
24
|
const pulumi = require("@pulumi/pulumi");
|
|
24
25
|
const utilities = require("./utilities");
|
|
25
26
|
exports.AreaPermissions = null;
|
|
@@ -191,6 +192,12 @@ utilities.lazyLoad(exports, ["getWorkitemtrackingprocessProcess", "getWorkitemtr
|
|
|
191
192
|
exports.getWorkitemtrackingprocessProcesses = null;
|
|
192
193
|
exports.getWorkitemtrackingprocessProcessesOutput = null;
|
|
193
194
|
utilities.lazyLoad(exports, ["getWorkitemtrackingprocessProcesses", "getWorkitemtrackingprocessProcessesOutput"], () => require("./getWorkitemtrackingprocessProcesses"));
|
|
195
|
+
exports.getWorkitemtrackingprocessWorkitemtype = null;
|
|
196
|
+
exports.getWorkitemtrackingprocessWorkitemtypeOutput = null;
|
|
197
|
+
utilities.lazyLoad(exports, ["getWorkitemtrackingprocessWorkitemtype", "getWorkitemtrackingprocessWorkitemtypeOutput"], () => require("./getWorkitemtrackingprocessWorkitemtype"));
|
|
198
|
+
exports.getWorkitemtrackingprocessWorkitemtypes = null;
|
|
199
|
+
exports.getWorkitemtrackingprocessWorkitemtypesOutput = null;
|
|
200
|
+
utilities.lazyLoad(exports, ["getWorkitemtrackingprocessWorkitemtypes", "getWorkitemtrackingprocessWorkitemtypesOutput"], () => require("./getWorkitemtrackingprocessWorkitemtypes"));
|
|
194
201
|
exports.Git = null;
|
|
195
202
|
utilities.lazyLoad(exports, ["Git"], () => require("./git"));
|
|
196
203
|
exports.GitPermissions = null;
|
|
@@ -353,6 +360,8 @@ exports.VariableGroup = null;
|
|
|
353
360
|
utilities.lazyLoad(exports, ["VariableGroup"], () => require("./variableGroup"));
|
|
354
361
|
exports.VariableGroupPermissions = null;
|
|
355
362
|
utilities.lazyLoad(exports, ["VariableGroupPermissions"], () => require("./variableGroupPermissions"));
|
|
363
|
+
exports.VariableGroupVariable = null;
|
|
364
|
+
utilities.lazyLoad(exports, ["VariableGroupVariable"], () => require("./variableGroupVariable"));
|
|
356
365
|
exports.Wiki = null;
|
|
357
366
|
utilities.lazyLoad(exports, ["Wiki"], () => require("./wiki"));
|
|
358
367
|
exports.WikiPage = null;
|
|
@@ -365,8 +374,16 @@ exports.Workitemquery = null;
|
|
|
365
374
|
utilities.lazyLoad(exports, ["Workitemquery"], () => require("./workitemquery"));
|
|
366
375
|
exports.WorkitemqueryFolder = null;
|
|
367
376
|
utilities.lazyLoad(exports, ["WorkitemqueryFolder"], () => require("./workitemqueryFolder"));
|
|
377
|
+
exports.WorkitemtrackingprocessControl = null;
|
|
378
|
+
utilities.lazyLoad(exports, ["WorkitemtrackingprocessControl"], () => require("./workitemtrackingprocessControl"));
|
|
379
|
+
exports.WorkitemtrackingprocessGroup = null;
|
|
380
|
+
utilities.lazyLoad(exports, ["WorkitemtrackingprocessGroup"], () => require("./workitemtrackingprocessGroup"));
|
|
368
381
|
exports.WorkitemtrackingprocessProcess = null;
|
|
369
382
|
utilities.lazyLoad(exports, ["WorkitemtrackingprocessProcess"], () => require("./workitemtrackingprocessProcess"));
|
|
383
|
+
exports.WorkitemtrackingprocessProcessPermissions = null;
|
|
384
|
+
utilities.lazyLoad(exports, ["WorkitemtrackingprocessProcessPermissions"], () => require("./workitemtrackingprocessProcessPermissions"));
|
|
385
|
+
exports.WorkitemtrackingprocessWorkitemtype = null;
|
|
386
|
+
utilities.lazyLoad(exports, ["WorkitemtrackingprocessWorkitemtype"], () => require("./workitemtrackingprocessWorkitemtype"));
|
|
370
387
|
// Export sub-modules:
|
|
371
388
|
const config = require("./config");
|
|
372
389
|
exports.config = config;
|
|
@@ -588,6 +605,8 @@ const _module = {
|
|
|
588
605
|
return new exports.VariableGroup(name, undefined, { urn });
|
|
589
606
|
case "azuredevops:index/variableGroupPermissions:VariableGroupPermissions":
|
|
590
607
|
return new exports.VariableGroupPermissions(name, undefined, { urn });
|
|
608
|
+
case "azuredevops:index/variableGroupVariable:VariableGroupVariable":
|
|
609
|
+
return new exports.VariableGroupVariable(name, undefined, { urn });
|
|
591
610
|
case "azuredevops:index/wiki:Wiki":
|
|
592
611
|
return new exports.Wiki(name, undefined, { urn });
|
|
593
612
|
case "azuredevops:index/wikiPage:WikiPage":
|
|
@@ -600,8 +619,16 @@ const _module = {
|
|
|
600
619
|
return new exports.Workitemquery(name, undefined, { urn });
|
|
601
620
|
case "azuredevops:index/workitemqueryFolder:WorkitemqueryFolder":
|
|
602
621
|
return new exports.WorkitemqueryFolder(name, undefined, { urn });
|
|
622
|
+
case "azuredevops:index/workitemtrackingprocessControl:WorkitemtrackingprocessControl":
|
|
623
|
+
return new exports.WorkitemtrackingprocessControl(name, undefined, { urn });
|
|
624
|
+
case "azuredevops:index/workitemtrackingprocessGroup:WorkitemtrackingprocessGroup":
|
|
625
|
+
return new exports.WorkitemtrackingprocessGroup(name, undefined, { urn });
|
|
603
626
|
case "azuredevops:index/workitemtrackingprocessProcess:WorkitemtrackingprocessProcess":
|
|
604
627
|
return new exports.WorkitemtrackingprocessProcess(name, undefined, { urn });
|
|
628
|
+
case "azuredevops:index/workitemtrackingprocessProcessPermissions:WorkitemtrackingprocessProcessPermissions":
|
|
629
|
+
return new exports.WorkitemtrackingprocessProcessPermissions(name, undefined, { urn });
|
|
630
|
+
case "azuredevops:index/workitemtrackingprocessWorkitemtype:WorkitemtrackingprocessWorkitemtype":
|
|
631
|
+
return new exports.WorkitemtrackingprocessWorkitemtype(name, undefined, { urn });
|
|
605
632
|
default:
|
|
606
633
|
throw new Error(`unknown resource type ${type}`);
|
|
607
634
|
}
|
|
@@ -713,13 +740,18 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/teamMembers", _modul
|
|
|
713
740
|
pulumi.runtime.registerResourceModule("azuredevops", "index/user", _module);
|
|
714
741
|
pulumi.runtime.registerResourceModule("azuredevops", "index/variableGroup", _module);
|
|
715
742
|
pulumi.runtime.registerResourceModule("azuredevops", "index/variableGroupPermissions", _module);
|
|
743
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/variableGroupVariable", _module);
|
|
716
744
|
pulumi.runtime.registerResourceModule("azuredevops", "index/wiki", _module);
|
|
717
745
|
pulumi.runtime.registerResourceModule("azuredevops", "index/wikiPage", _module);
|
|
718
746
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workItemQueryPermissions", _module);
|
|
719
747
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workitem", _module);
|
|
720
748
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemquery", _module);
|
|
721
749
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemqueryFolder", _module);
|
|
750
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessControl", _module);
|
|
751
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessGroup", _module);
|
|
722
752
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessProcess", _module);
|
|
753
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessProcessPermissions", _module);
|
|
754
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessWorkitemtype", _module);
|
|
723
755
|
pulumi.runtime.registerResourcePackage("azuredevops", {
|
|
724
756
|
version: utilities.getVersion(),
|
|
725
757
|
constructProvider: (name, type, urn) => {
|