@pulumi/azuredevops 3.11.0-alpha.1766173758 → 3.11.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/getServiceendpointGenericV2.d.ts +86 -0
- package/getServiceendpointGenericV2.js +32 -0
- package/getServiceendpointGenericV2.js.map +1 -0
- package/getWorkitemtrackingprocessProcess.d.ts +110 -0
- package/getWorkitemtrackingprocessProcess.js +62 -0
- package/getWorkitemtrackingprocessProcess.js.map +1 -0
- package/getWorkitemtrackingprocessProcesses.d.ts +70 -0
- package/getWorkitemtrackingprocessProcesses.js +58 -0
- package/getWorkitemtrackingprocessProcesses.js.map +1 -0
- package/index.d.ts +24 -0
- package/index.js +37 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/securityroleAssignment.d.ts +2 -2
- package/securityroleAssignment.js +2 -2
- package/serviceendpointGenericV2.d.ts +209 -0
- package/serviceendpointGenericV2.js +132 -0
- package/serviceendpointGenericV2.js.map +1 -0
- package/servicehookWebhookTfs.d.ts +311 -0
- package/servicehookWebhookTfs.js +213 -0
- package/servicehookWebhookTfs.js.map +1 -0
- package/types/input.d.ts +230 -0
- package/types/output.d.ts +304 -0
- package/workitemquery.d.ts +225 -0
- package/workitemquery.js +192 -0
- package/workitemquery.js.map +1 -0
- package/workitemqueryFolder.d.ts +142 -0
- package/workitemqueryFolder.js +116 -0
- package/workitemqueryFolder.js.map +1 -0
- package/workitemtrackingprocessProcess.d.ts +143 -0
- package/workitemtrackingprocessProcess.js +91 -0
- package/workitemtrackingprocessProcess.js.map +1 -0
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Use this data source to access information about an existing Generic Service Endpoint (v2) within Azure DevOps.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getServiceendpointGenericV2(args: GetServiceendpointGenericV2Args, opts?: pulumi.InvokeOptions): Promise<GetServiceendpointGenericV2Result>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getServiceendpointGenericV2.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetServiceendpointGenericV2Args {
|
|
10
|
+
/**
|
|
11
|
+
* The ID of the service endpoint to retrieve. One of `serviceEndpointId` or `serviceEndpointName` must be specified.
|
|
12
|
+
*/
|
|
13
|
+
id?: string;
|
|
14
|
+
/**
|
|
15
|
+
* The name of the service endpoint to retrieve. One of `serviceEndpointId` or `serviceEndpointName` must be specified.
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
/**
|
|
19
|
+
* The ID of the project to which the service endpoint belongs.
|
|
20
|
+
*/
|
|
21
|
+
projectId: string;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* A collection of values returned by getServiceendpointGenericV2.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetServiceendpointGenericV2Result {
|
|
27
|
+
/**
|
|
28
|
+
* The authorization parameters of the service endpoint.
|
|
29
|
+
*/
|
|
30
|
+
readonly authorizationParameters: {
|
|
31
|
+
[key: string]: string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* The authorization type of the service endpoint.
|
|
35
|
+
*/
|
|
36
|
+
readonly authorizationScheme: string;
|
|
37
|
+
/**
|
|
38
|
+
* Additional data of the service endpoint.
|
|
39
|
+
*/
|
|
40
|
+
readonly data: {
|
|
41
|
+
[key: string]: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* The description of the service endpoint.
|
|
45
|
+
*/
|
|
46
|
+
readonly description: string;
|
|
47
|
+
/**
|
|
48
|
+
* The ID of the service endpoint.
|
|
49
|
+
*/
|
|
50
|
+
readonly id: string;
|
|
51
|
+
readonly name: string;
|
|
52
|
+
readonly projectId: string;
|
|
53
|
+
/**
|
|
54
|
+
* The URL of the server associated with the service endpoint.
|
|
55
|
+
*/
|
|
56
|
+
readonly serverUrl: string;
|
|
57
|
+
/**
|
|
58
|
+
* The list of project IDs where the service endpoint is shared.
|
|
59
|
+
*/
|
|
60
|
+
readonly sharedProjectIds: string[];
|
|
61
|
+
/**
|
|
62
|
+
* The type of the service endpoint.
|
|
63
|
+
*/
|
|
64
|
+
readonly type: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Use this data source to access information about an existing Generic Service Endpoint (v2) within Azure DevOps.
|
|
68
|
+
*/
|
|
69
|
+
export declare function getServiceendpointGenericV2Output(args: GetServiceendpointGenericV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceendpointGenericV2Result>;
|
|
70
|
+
/**
|
|
71
|
+
* A collection of arguments for invoking getServiceendpointGenericV2.
|
|
72
|
+
*/
|
|
73
|
+
export interface GetServiceendpointGenericV2OutputArgs {
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the service endpoint to retrieve. One of `serviceEndpointId` or `serviceEndpointName` must be specified.
|
|
76
|
+
*/
|
|
77
|
+
id?: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* The name of the service endpoint to retrieve. One of `serviceEndpointId` or `serviceEndpointName` must be specified.
|
|
80
|
+
*/
|
|
81
|
+
name?: pulumi.Input<string>;
|
|
82
|
+
/**
|
|
83
|
+
* The ID of the project to which the service endpoint belongs.
|
|
84
|
+
*/
|
|
85
|
+
projectId: pulumi.Input<string>;
|
|
86
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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.getServiceendpointGenericV2Output = exports.getServiceendpointGenericV2 = 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 Generic Service Endpoint (v2) within Azure DevOps.
|
|
10
|
+
*/
|
|
11
|
+
function getServiceendpointGenericV2(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("azuredevops:index/getServiceendpointGenericV2:getServiceendpointGenericV2", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
"name": args.name,
|
|
16
|
+
"projectId": args.projectId,
|
|
17
|
+
}, opts);
|
|
18
|
+
}
|
|
19
|
+
exports.getServiceendpointGenericV2 = getServiceendpointGenericV2;
|
|
20
|
+
/**
|
|
21
|
+
* Use this data source to access information about an existing Generic Service Endpoint (v2) within Azure DevOps.
|
|
22
|
+
*/
|
|
23
|
+
function getServiceendpointGenericV2Output(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invokeOutput("azuredevops:index/getServiceendpointGenericV2:getServiceendpointGenericV2", {
|
|
26
|
+
"id": args.id,
|
|
27
|
+
"name": args.name,
|
|
28
|
+
"projectId": args.projectId,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getServiceendpointGenericV2Output = getServiceendpointGenericV2Output;
|
|
32
|
+
//# sourceMappingURL=getServiceendpointGenericV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getServiceendpointGenericV2.js","sourceRoot":"","sources":["../getServiceendpointGenericV2.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kEAOC;AA2DD;;GAEG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAAiC;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2EAA2E,EAAE;QAC5G,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8EAOC"}
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to access information about an existing 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 example = azuredevops.getWorkitemtrackingprocessProcess({
|
|
13
|
+
* id: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
14
|
+
* });
|
|
15
|
+
* export const id = example.then(example => example.id);
|
|
16
|
+
* ```
|
|
17
|
+
*
|
|
18
|
+
* ## Relevant Links
|
|
19
|
+
*
|
|
20
|
+
* - [Azure DevOps Service REST API 7.1 - Process - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/get?view=azure-devops-rest-7.1)
|
|
21
|
+
*/
|
|
22
|
+
export declare function getWorkitemtrackingprocessProcess(args: GetWorkitemtrackingprocessProcessArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkitemtrackingprocessProcessResult>;
|
|
23
|
+
/**
|
|
24
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessProcess.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetWorkitemtrackingprocessProcessArgs {
|
|
27
|
+
/**
|
|
28
|
+
* Specifies the expand option when getting the processes. Default: "none"
|
|
29
|
+
*/
|
|
30
|
+
expand?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The ID of the process.
|
|
33
|
+
*/
|
|
34
|
+
id: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getWorkitemtrackingprocessProcess.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetWorkitemtrackingprocessProcessResult {
|
|
40
|
+
/**
|
|
41
|
+
* Indicates the type of customization on this process. System Process is default process. Inherited Process is modified process that was System process before.
|
|
42
|
+
*/
|
|
43
|
+
readonly customizationType: string;
|
|
44
|
+
/**
|
|
45
|
+
* Description of the project.
|
|
46
|
+
*/
|
|
47
|
+
readonly description: string;
|
|
48
|
+
readonly expand?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The ID of the project.
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
/**
|
|
54
|
+
* Is the process default?
|
|
55
|
+
*/
|
|
56
|
+
readonly isDefault: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Is the process enabled?
|
|
59
|
+
*/
|
|
60
|
+
readonly isEnabled: boolean;
|
|
61
|
+
/**
|
|
62
|
+
* Name of the project.
|
|
63
|
+
*/
|
|
64
|
+
readonly name: string;
|
|
65
|
+
/**
|
|
66
|
+
* ID of the parent process.
|
|
67
|
+
*/
|
|
68
|
+
readonly parentProcessTypeId: string;
|
|
69
|
+
/**
|
|
70
|
+
* A `projects` block as defined below. Returns associated projects when using the 'projects' expand option.
|
|
71
|
+
*/
|
|
72
|
+
readonly projects: outputs.GetWorkitemtrackingprocessProcessProject[];
|
|
73
|
+
/**
|
|
74
|
+
* Reference name of process being created. If not specified, server will assign a unique reference name.
|
|
75
|
+
*/
|
|
76
|
+
readonly referenceName: string;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Use this data source to access information about an existing process.
|
|
80
|
+
*
|
|
81
|
+
* ## Example Usage
|
|
82
|
+
*
|
|
83
|
+
* ```typescript
|
|
84
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
85
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
86
|
+
*
|
|
87
|
+
* const example = azuredevops.getWorkitemtrackingprocessProcess({
|
|
88
|
+
* id: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
89
|
+
* });
|
|
90
|
+
* export const id = example.then(example => example.id);
|
|
91
|
+
* ```
|
|
92
|
+
*
|
|
93
|
+
* ## Relevant Links
|
|
94
|
+
*
|
|
95
|
+
* - [Azure DevOps Service REST API 7.1 - Process - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/get?view=azure-devops-rest-7.1)
|
|
96
|
+
*/
|
|
97
|
+
export declare function getWorkitemtrackingprocessProcessOutput(args: GetWorkitemtrackingprocessProcessOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkitemtrackingprocessProcessResult>;
|
|
98
|
+
/**
|
|
99
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessProcess.
|
|
100
|
+
*/
|
|
101
|
+
export interface GetWorkitemtrackingprocessProcessOutputArgs {
|
|
102
|
+
/**
|
|
103
|
+
* Specifies the expand option when getting the processes. Default: "none"
|
|
104
|
+
*/
|
|
105
|
+
expand?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The ID of the process.
|
|
108
|
+
*/
|
|
109
|
+
id: pulumi.Input<string>;
|
|
110
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
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.getWorkitemtrackingprocessProcessOutput = exports.getWorkitemtrackingprocessProcess = 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 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.getWorkitemtrackingprocessProcess({
|
|
18
|
+
* id: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
19
|
+
* });
|
|
20
|
+
* export const id = example.then(example => example.id);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* ## Relevant Links
|
|
24
|
+
*
|
|
25
|
+
* - [Azure DevOps Service REST API 7.1 - Process - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/get?view=azure-devops-rest-7.1)
|
|
26
|
+
*/
|
|
27
|
+
function getWorkitemtrackingprocessProcess(args, opts) {
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("azuredevops:index/getWorkitemtrackingprocessProcess:getWorkitemtrackingprocessProcess", {
|
|
30
|
+
"expand": args.expand,
|
|
31
|
+
"id": args.id,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getWorkitemtrackingprocessProcess = getWorkitemtrackingprocessProcess;
|
|
35
|
+
/**
|
|
36
|
+
* Use this data source to access information about an existing process.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ```typescript
|
|
41
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
42
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
43
|
+
*
|
|
44
|
+
* const example = azuredevops.getWorkitemtrackingprocessProcess({
|
|
45
|
+
* id: "adcc42ab-9882-485e-a3ed-7678f01f66bc",
|
|
46
|
+
* });
|
|
47
|
+
* export const id = example.then(example => example.id);
|
|
48
|
+
* ```
|
|
49
|
+
*
|
|
50
|
+
* ## Relevant Links
|
|
51
|
+
*
|
|
52
|
+
* - [Azure DevOps Service REST API 7.1 - Process - Get](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/get?view=azure-devops-rest-7.1)
|
|
53
|
+
*/
|
|
54
|
+
function getWorkitemtrackingprocessProcessOutput(args, opts) {
|
|
55
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
56
|
+
return pulumi.runtime.invokeOutput("azuredevops:index/getWorkitemtrackingprocessProcess:getWorkitemtrackingprocessProcess", {
|
|
57
|
+
"expand": args.expand,
|
|
58
|
+
"id": args.id,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getWorkitemtrackingprocessProcessOutput = getWorkitemtrackingprocessProcessOutput;
|
|
62
|
+
//# sourceMappingURL=getWorkitemtrackingprocessProcess.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getWorkitemtrackingprocessProcess.js","sourceRoot":"","sources":["../getWorkitemtrackingprocessProcess.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAA2B;IACtH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uFAAuF,EAAE;QAClH,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8EAMC;AA0DD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,uCAAuC,CAAC,IAAiD,EAAE,IAAiC;IACxI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uFAAuF,EAAE;QACxH,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0FAMC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Use this data source to access information about existing processes.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
11
|
+
*
|
|
12
|
+
* const all = azuredevops.getWorkitemtrackingprocessProcesses({});
|
|
13
|
+
* export const id = all.then(all => all.id);
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* ## Relevant Links
|
|
17
|
+
*
|
|
18
|
+
* - [Azure DevOps Service REST API 7.1 - Processes - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/list?view=azure-devops-rest-7.1)
|
|
19
|
+
*/
|
|
20
|
+
export declare function getWorkitemtrackingprocessProcesses(args?: GetWorkitemtrackingprocessProcessesArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkitemtrackingprocessProcessesResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessProcesses.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetWorkitemtrackingprocessProcessesArgs {
|
|
25
|
+
/**
|
|
26
|
+
* Specifies the expand option when getting the processes. Default: "none"
|
|
27
|
+
*/
|
|
28
|
+
expand?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A collection of values returned by getWorkitemtrackingprocessProcesses.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetWorkitemtrackingprocessProcessesResult {
|
|
34
|
+
readonly expand?: string;
|
|
35
|
+
/**
|
|
36
|
+
* The provider-assigned unique ID for this managed resource.
|
|
37
|
+
*/
|
|
38
|
+
readonly id: string;
|
|
39
|
+
/**
|
|
40
|
+
* A `processes` block as defined below. A list of all processes including system and inherited.
|
|
41
|
+
*/
|
|
42
|
+
readonly processes: outputs.GetWorkitemtrackingprocessProcessesProcess[];
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Use this data source to access information about existing processes.
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
52
|
+
*
|
|
53
|
+
* const all = azuredevops.getWorkitemtrackingprocessProcesses({});
|
|
54
|
+
* export const id = all.then(all => all.id);
|
|
55
|
+
* ```
|
|
56
|
+
*
|
|
57
|
+
* ## Relevant Links
|
|
58
|
+
*
|
|
59
|
+
* - [Azure DevOps Service REST API 7.1 - Processes - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/list?view=azure-devops-rest-7.1)
|
|
60
|
+
*/
|
|
61
|
+
export declare function getWorkitemtrackingprocessProcessesOutput(args?: GetWorkitemtrackingprocessProcessesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkitemtrackingprocessProcessesResult>;
|
|
62
|
+
/**
|
|
63
|
+
* A collection of arguments for invoking getWorkitemtrackingprocessProcesses.
|
|
64
|
+
*/
|
|
65
|
+
export interface GetWorkitemtrackingprocessProcessesOutputArgs {
|
|
66
|
+
/**
|
|
67
|
+
* Specifies the expand option when getting the processes. Default: "none"
|
|
68
|
+
*/
|
|
69
|
+
expand?: pulumi.Input<string>;
|
|
70
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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.getWorkitemtrackingprocessProcessesOutput = exports.getWorkitemtrackingprocessProcesses = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Use this data source to access information about existing processes.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
16
|
+
*
|
|
17
|
+
* const all = azuredevops.getWorkitemtrackingprocessProcesses({});
|
|
18
|
+
* export const id = all.then(all => all.id);
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* ## Relevant Links
|
|
22
|
+
*
|
|
23
|
+
* - [Azure DevOps Service REST API 7.1 - Processes - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/list?view=azure-devops-rest-7.1)
|
|
24
|
+
*/
|
|
25
|
+
function getWorkitemtrackingprocessProcesses(args, opts) {
|
|
26
|
+
args = args || {};
|
|
27
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
+
return pulumi.runtime.invoke("azuredevops:index/getWorkitemtrackingprocessProcesses:getWorkitemtrackingprocessProcesses", {
|
|
29
|
+
"expand": args.expand,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getWorkitemtrackingprocessProcesses = getWorkitemtrackingprocessProcesses;
|
|
33
|
+
/**
|
|
34
|
+
* Use this data source to access information about existing processes.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as azuredevops from "@pulumi/azuredevops";
|
|
41
|
+
*
|
|
42
|
+
* const all = azuredevops.getWorkitemtrackingprocessProcesses({});
|
|
43
|
+
* export const id = all.then(all => all.id);
|
|
44
|
+
* ```
|
|
45
|
+
*
|
|
46
|
+
* ## Relevant Links
|
|
47
|
+
*
|
|
48
|
+
* - [Azure DevOps Service REST API 7.1 - Processes - List](https://learn.microsoft.com/en-us/rest/api/azure/devops/processes/processes/list?view=azure-devops-rest-7.1)
|
|
49
|
+
*/
|
|
50
|
+
function getWorkitemtrackingprocessProcessesOutput(args, opts) {
|
|
51
|
+
args = args || {};
|
|
52
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
53
|
+
return pulumi.runtime.invokeOutput("azuredevops:index/getWorkitemtrackingprocessProcesses:getWorkitemtrackingprocessProcesses", {
|
|
54
|
+
"expand": args.expand,
|
|
55
|
+
}, opts);
|
|
56
|
+
}
|
|
57
|
+
exports.getWorkitemtrackingprocessProcessesOutput = getWorkitemtrackingprocessProcessesOutput;
|
|
58
|
+
//# sourceMappingURL=getWorkitemtrackingprocessProcesses.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getWorkitemtrackingprocessProcesses.js","sourceRoot":"","sources":["../getWorkitemtrackingprocessProcesses.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,mCAAmC,CAAC,IAA8C,EAAE,IAA2B;IAC3H,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2FAA2F,EAAE;QACtH,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kFAMC;AA0BD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,yCAAyC,CAAC,IAAoD,EAAE,IAAiC;IAC7I,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,2FAA2F,EAAE;QAC5H,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8FAMC"}
|
package/index.d.ts
CHANGED
|
@@ -160,6 +160,9 @@ export declare const getServiceendpointBitbucketOutput: typeof import("./getServ
|
|
|
160
160
|
export { GetServiceendpointDockerregistryArgs, GetServiceendpointDockerregistryResult, GetServiceendpointDockerregistryOutputArgs } from "./getServiceendpointDockerregistry";
|
|
161
161
|
export declare const getServiceendpointDockerregistry: typeof import("./getServiceendpointDockerregistry").getServiceendpointDockerregistry;
|
|
162
162
|
export declare const getServiceendpointDockerregistryOutput: typeof import("./getServiceendpointDockerregistry").getServiceendpointDockerregistryOutput;
|
|
163
|
+
export { GetServiceendpointGenericV2Args, GetServiceendpointGenericV2Result, GetServiceendpointGenericV2OutputArgs } from "./getServiceendpointGenericV2";
|
|
164
|
+
export declare const getServiceendpointGenericV2: typeof import("./getServiceendpointGenericV2").getServiceendpointGenericV2;
|
|
165
|
+
export declare const getServiceendpointGenericV2Output: typeof import("./getServiceendpointGenericV2").getServiceendpointGenericV2Output;
|
|
163
166
|
export { GetServiceendpointNpmArgs, GetServiceendpointNpmResult, GetServiceendpointNpmOutputArgs } from "./getServiceendpointNpm";
|
|
164
167
|
export declare const getServiceendpointNpm: typeof import("./getServiceendpointNpm").getServiceendpointNpm;
|
|
165
168
|
export declare const getServiceendpointNpmOutput: typeof import("./getServiceendpointNpm").getServiceendpointNpmOutput;
|
|
@@ -184,6 +187,12 @@ export declare const getUsersOutput: typeof import("./getUsers").getUsersOutput;
|
|
|
184
187
|
export { GetVariableGroupArgs, GetVariableGroupResult, GetVariableGroupOutputArgs } from "./getVariableGroup";
|
|
185
188
|
export declare const getVariableGroup: typeof import("./getVariableGroup").getVariableGroup;
|
|
186
189
|
export declare const getVariableGroupOutput: typeof import("./getVariableGroup").getVariableGroupOutput;
|
|
190
|
+
export { GetWorkitemtrackingprocessProcessArgs, GetWorkitemtrackingprocessProcessResult, GetWorkitemtrackingprocessProcessOutputArgs } from "./getWorkitemtrackingprocessProcess";
|
|
191
|
+
export declare const getWorkitemtrackingprocessProcess: typeof import("./getWorkitemtrackingprocessProcess").getWorkitemtrackingprocessProcess;
|
|
192
|
+
export declare const getWorkitemtrackingprocessProcessOutput: typeof import("./getWorkitemtrackingprocessProcess").getWorkitemtrackingprocessProcessOutput;
|
|
193
|
+
export { GetWorkitemtrackingprocessProcessesArgs, GetWorkitemtrackingprocessProcessesResult, GetWorkitemtrackingprocessProcessesOutputArgs } from "./getWorkitemtrackingprocessProcesses";
|
|
194
|
+
export declare const getWorkitemtrackingprocessProcesses: typeof import("./getWorkitemtrackingprocessProcesses").getWorkitemtrackingprocessProcesses;
|
|
195
|
+
export declare const getWorkitemtrackingprocessProcessesOutput: typeof import("./getWorkitemtrackingprocessProcesses").getWorkitemtrackingprocessProcessesOutput;
|
|
187
196
|
export { GitArgs, GitState } from "./git";
|
|
188
197
|
export type Git = import("./git").Git;
|
|
189
198
|
export declare const Git: typeof import("./git").Git;
|
|
@@ -350,6 +359,9 @@ export declare const ServiceendpointExternaltfs: typeof import("./serviceendpoin
|
|
|
350
359
|
export { ServiceendpointGcpTerraformArgs, ServiceendpointGcpTerraformState } from "./serviceendpointGcpTerraform";
|
|
351
360
|
export type ServiceendpointGcpTerraform = import("./serviceendpointGcpTerraform").ServiceendpointGcpTerraform;
|
|
352
361
|
export declare const ServiceendpointGcpTerraform: typeof import("./serviceendpointGcpTerraform").ServiceendpointGcpTerraform;
|
|
362
|
+
export { ServiceendpointGenericV2Args, ServiceendpointGenericV2State } from "./serviceendpointGenericV2";
|
|
363
|
+
export type ServiceendpointGenericV2 = import("./serviceendpointGenericV2").ServiceendpointGenericV2;
|
|
364
|
+
export declare const ServiceendpointGenericV2: typeof import("./serviceendpointGenericV2").ServiceendpointGenericV2;
|
|
353
365
|
export { ServiceendpointIncomingwebhookArgs, ServiceendpointIncomingwebhookState } from "./serviceendpointIncomingwebhook";
|
|
354
366
|
export type ServiceendpointIncomingwebhook = import("./serviceendpointIncomingwebhook").ServiceendpointIncomingwebhook;
|
|
355
367
|
export declare const ServiceendpointIncomingwebhook: typeof import("./serviceendpointIncomingwebhook").ServiceendpointIncomingwebhook;
|
|
@@ -398,6 +410,9 @@ export declare const ServicehookPermissions: typeof import("./servicehookPermiss
|
|
|
398
410
|
export { ServicehookStorageQueuePipelinesArgs, ServicehookStorageQueuePipelinesState } from "./servicehookStorageQueuePipelines";
|
|
399
411
|
export type ServicehookStorageQueuePipelines = import("./servicehookStorageQueuePipelines").ServicehookStorageQueuePipelines;
|
|
400
412
|
export declare const ServicehookStorageQueuePipelines: typeof import("./servicehookStorageQueuePipelines").ServicehookStorageQueuePipelines;
|
|
413
|
+
export { ServicehookWebhookTfsArgs, ServicehookWebhookTfsState } from "./servicehookWebhookTfs";
|
|
414
|
+
export type ServicehookWebhookTfs = import("./servicehookWebhookTfs").ServicehookWebhookTfs;
|
|
415
|
+
export declare const ServicehookWebhookTfs: typeof import("./servicehookWebhookTfs").ServicehookWebhookTfs;
|
|
401
416
|
export { TaggingPermissionsArgs, TaggingPermissionsState } from "./taggingPermissions";
|
|
402
417
|
export type TaggingPermissions = import("./taggingPermissions").TaggingPermissions;
|
|
403
418
|
export declare const TaggingPermissions: typeof import("./taggingPermissions").TaggingPermissions;
|
|
@@ -431,6 +446,15 @@ export declare const WorkItemQueryPermissions: typeof import("./workItemQueryPer
|
|
|
431
446
|
export { WorkitemArgs, WorkitemState } from "./workitem";
|
|
432
447
|
export type Workitem = import("./workitem").Workitem;
|
|
433
448
|
export declare const Workitem: typeof import("./workitem").Workitem;
|
|
449
|
+
export { WorkitemqueryArgs, WorkitemqueryState } from "./workitemquery";
|
|
450
|
+
export type Workitemquery = import("./workitemquery").Workitemquery;
|
|
451
|
+
export declare const Workitemquery: typeof import("./workitemquery").Workitemquery;
|
|
452
|
+
export { WorkitemqueryFolderArgs, WorkitemqueryFolderState } from "./workitemqueryFolder";
|
|
453
|
+
export type WorkitemqueryFolder = import("./workitemqueryFolder").WorkitemqueryFolder;
|
|
454
|
+
export declare const WorkitemqueryFolder: typeof import("./workitemqueryFolder").WorkitemqueryFolder;
|
|
455
|
+
export { WorkitemtrackingprocessProcessArgs, WorkitemtrackingprocessProcessState } from "./workitemtrackingprocessProcess";
|
|
456
|
+
export type WorkitemtrackingprocessProcess = import("./workitemtrackingprocessProcess").WorkitemtrackingprocessProcess;
|
|
457
|
+
export declare const WorkitemtrackingprocessProcess: typeof import("./workitemtrackingprocessProcess").WorkitemtrackingprocessProcess;
|
|
434
458
|
import * as config from "./config";
|
|
435
459
|
import * as types from "./types";
|
|
436
460
|
export { config, types, };
|
package/index.js
CHANGED
|
@@ -17,9 +17,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
17
17
|
};
|
|
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
|
-
exports.
|
|
21
|
-
exports.
|
|
22
|
-
exports.types = exports.config = exports.Workitem = exports.WorkItemQueryPermissions = exports.WikiPage = exports.Wiki = exports.VariableGroupPermissions = exports.VariableGroup = exports.User = exports.TeamMembers = exports.TeamAdministrators = exports.Team = exports.TaggingPermissions = 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.ServiceendpointGcpTerraform = exports.ServiceendpointExternaltfs = exports.ServiceendpointDynamicsLifecycleServices = void 0;
|
|
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.ServicePrincipalEntitlement = exports.ServiceEndpointSsh = exports.ServiceEndpointSonarQube = exports.ServiceEndpointSonarCloud = 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.getWorkitemtrackingprocessProcessesOutput = exports.getWorkitemtrackingprocessProcesses = exports.getWorkitemtrackingprocessProcessOutput = exports.getWorkitemtrackingprocessProcess = void 0;
|
|
22
|
+
exports.types = exports.config = exports.WorkitemtrackingprocessProcess = exports.WorkitemqueryFolder = exports.Workitemquery = exports.Workitem = exports.WorkItemQueryPermissions = exports.WikiPage = exports.Wiki = 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 = void 0;
|
|
23
23
|
const pulumi = require("@pulumi/pulumi");
|
|
24
24
|
const utilities = require("./utilities");
|
|
25
25
|
exports.AreaPermissions = null;
|
|
@@ -158,6 +158,9 @@ utilities.lazyLoad(exports, ["getServiceendpointBitbucket", "getServiceendpointB
|
|
|
158
158
|
exports.getServiceendpointDockerregistry = null;
|
|
159
159
|
exports.getServiceendpointDockerregistryOutput = null;
|
|
160
160
|
utilities.lazyLoad(exports, ["getServiceendpointDockerregistry", "getServiceendpointDockerregistryOutput"], () => require("./getServiceendpointDockerregistry"));
|
|
161
|
+
exports.getServiceendpointGenericV2 = null;
|
|
162
|
+
exports.getServiceendpointGenericV2Output = null;
|
|
163
|
+
utilities.lazyLoad(exports, ["getServiceendpointGenericV2", "getServiceendpointGenericV2Output"], () => require("./getServiceendpointGenericV2"));
|
|
161
164
|
exports.getServiceendpointNpm = null;
|
|
162
165
|
exports.getServiceendpointNpmOutput = null;
|
|
163
166
|
utilities.lazyLoad(exports, ["getServiceendpointNpm", "getServiceendpointNpmOutput"], () => require("./getServiceendpointNpm"));
|
|
@@ -182,6 +185,12 @@ utilities.lazyLoad(exports, ["getUsers", "getUsersOutput"], () => require("./get
|
|
|
182
185
|
exports.getVariableGroup = null;
|
|
183
186
|
exports.getVariableGroupOutput = null;
|
|
184
187
|
utilities.lazyLoad(exports, ["getVariableGroup", "getVariableGroupOutput"], () => require("./getVariableGroup"));
|
|
188
|
+
exports.getWorkitemtrackingprocessProcess = null;
|
|
189
|
+
exports.getWorkitemtrackingprocessProcessOutput = null;
|
|
190
|
+
utilities.lazyLoad(exports, ["getWorkitemtrackingprocessProcess", "getWorkitemtrackingprocessProcessOutput"], () => require("./getWorkitemtrackingprocessProcess"));
|
|
191
|
+
exports.getWorkitemtrackingprocessProcesses = null;
|
|
192
|
+
exports.getWorkitemtrackingprocessProcessesOutput = null;
|
|
193
|
+
utilities.lazyLoad(exports, ["getWorkitemtrackingprocessProcesses", "getWorkitemtrackingprocessProcessesOutput"], () => require("./getWorkitemtrackingprocessProcesses"));
|
|
185
194
|
exports.Git = null;
|
|
186
195
|
utilities.lazyLoad(exports, ["Git"], () => require("./git"));
|
|
187
196
|
exports.GitPermissions = null;
|
|
@@ -294,6 +303,8 @@ exports.ServiceendpointExternaltfs = null;
|
|
|
294
303
|
utilities.lazyLoad(exports, ["ServiceendpointExternaltfs"], () => require("./serviceendpointExternaltfs"));
|
|
295
304
|
exports.ServiceendpointGcpTerraform = null;
|
|
296
305
|
utilities.lazyLoad(exports, ["ServiceendpointGcpTerraform"], () => require("./serviceendpointGcpTerraform"));
|
|
306
|
+
exports.ServiceendpointGenericV2 = null;
|
|
307
|
+
utilities.lazyLoad(exports, ["ServiceendpointGenericV2"], () => require("./serviceendpointGenericV2"));
|
|
297
308
|
exports.ServiceendpointIncomingwebhook = null;
|
|
298
309
|
utilities.lazyLoad(exports, ["ServiceendpointIncomingwebhook"], () => require("./serviceendpointIncomingwebhook"));
|
|
299
310
|
exports.ServiceendpointJenkins = null;
|
|
@@ -326,6 +337,8 @@ exports.ServicehookPermissions = null;
|
|
|
326
337
|
utilities.lazyLoad(exports, ["ServicehookPermissions"], () => require("./servicehookPermissions"));
|
|
327
338
|
exports.ServicehookStorageQueuePipelines = null;
|
|
328
339
|
utilities.lazyLoad(exports, ["ServicehookStorageQueuePipelines"], () => require("./servicehookStorageQueuePipelines"));
|
|
340
|
+
exports.ServicehookWebhookTfs = null;
|
|
341
|
+
utilities.lazyLoad(exports, ["ServicehookWebhookTfs"], () => require("./servicehookWebhookTfs"));
|
|
329
342
|
exports.TaggingPermissions = null;
|
|
330
343
|
utilities.lazyLoad(exports, ["TaggingPermissions"], () => require("./taggingPermissions"));
|
|
331
344
|
exports.Team = null;
|
|
@@ -348,6 +361,12 @@ exports.WorkItemQueryPermissions = null;
|
|
|
348
361
|
utilities.lazyLoad(exports, ["WorkItemQueryPermissions"], () => require("./workItemQueryPermissions"));
|
|
349
362
|
exports.Workitem = null;
|
|
350
363
|
utilities.lazyLoad(exports, ["Workitem"], () => require("./workitem"));
|
|
364
|
+
exports.Workitemquery = null;
|
|
365
|
+
utilities.lazyLoad(exports, ["Workitemquery"], () => require("./workitemquery"));
|
|
366
|
+
exports.WorkitemqueryFolder = null;
|
|
367
|
+
utilities.lazyLoad(exports, ["WorkitemqueryFolder"], () => require("./workitemqueryFolder"));
|
|
368
|
+
exports.WorkitemtrackingprocessProcess = null;
|
|
369
|
+
utilities.lazyLoad(exports, ["WorkitemtrackingprocessProcess"], () => require("./workitemtrackingprocessProcess"));
|
|
351
370
|
// Export sub-modules:
|
|
352
371
|
const config = require("./config");
|
|
353
372
|
exports.config = config;
|
|
@@ -519,6 +538,8 @@ const _module = {
|
|
|
519
538
|
return new exports.ServiceendpointExternaltfs(name, undefined, { urn });
|
|
520
539
|
case "azuredevops:index/serviceendpointGcpTerraform:ServiceendpointGcpTerraform":
|
|
521
540
|
return new exports.ServiceendpointGcpTerraform(name, undefined, { urn });
|
|
541
|
+
case "azuredevops:index/serviceendpointGenericV2:ServiceendpointGenericV2":
|
|
542
|
+
return new exports.ServiceendpointGenericV2(name, undefined, { urn });
|
|
522
543
|
case "azuredevops:index/serviceendpointIncomingwebhook:ServiceendpointIncomingwebhook":
|
|
523
544
|
return new exports.ServiceendpointIncomingwebhook(name, undefined, { urn });
|
|
524
545
|
case "azuredevops:index/serviceendpointJenkins:ServiceendpointJenkins":
|
|
@@ -551,6 +572,8 @@ const _module = {
|
|
|
551
572
|
return new exports.ServicehookPermissions(name, undefined, { urn });
|
|
552
573
|
case "azuredevops:index/servicehookStorageQueuePipelines:ServicehookStorageQueuePipelines":
|
|
553
574
|
return new exports.ServicehookStorageQueuePipelines(name, undefined, { urn });
|
|
575
|
+
case "azuredevops:index/servicehookWebhookTfs:ServicehookWebhookTfs":
|
|
576
|
+
return new exports.ServicehookWebhookTfs(name, undefined, { urn });
|
|
554
577
|
case "azuredevops:index/taggingPermissions:TaggingPermissions":
|
|
555
578
|
return new exports.TaggingPermissions(name, undefined, { urn });
|
|
556
579
|
case "azuredevops:index/team:Team":
|
|
@@ -573,6 +596,12 @@ const _module = {
|
|
|
573
596
|
return new exports.WorkItemQueryPermissions(name, undefined, { urn });
|
|
574
597
|
case "azuredevops:index/workitem:Workitem":
|
|
575
598
|
return new exports.Workitem(name, undefined, { urn });
|
|
599
|
+
case "azuredevops:index/workitemquery:Workitemquery":
|
|
600
|
+
return new exports.Workitemquery(name, undefined, { urn });
|
|
601
|
+
case "azuredevops:index/workitemqueryFolder:WorkitemqueryFolder":
|
|
602
|
+
return new exports.WorkitemqueryFolder(name, undefined, { urn });
|
|
603
|
+
case "azuredevops:index/workitemtrackingprocessProcess:WorkitemtrackingprocessProcess":
|
|
604
|
+
return new exports.WorkitemtrackingprocessProcess(name, undefined, { urn });
|
|
576
605
|
default:
|
|
577
606
|
throw new Error(`unknown resource type ${type}`);
|
|
578
607
|
}
|
|
@@ -659,6 +688,7 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointCheck
|
|
|
659
688
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointDynamicsLifecycleServices", _module);
|
|
660
689
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointExternaltfs", _module);
|
|
661
690
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointGcpTerraform", _module);
|
|
691
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointGenericV2", _module);
|
|
662
692
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointIncomingwebhook", _module);
|
|
663
693
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJenkins", _module);
|
|
664
694
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointJfrogArtifactoryV2", _module);
|
|
@@ -675,6 +705,7 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointSnyk"
|
|
|
675
705
|
pulumi.runtime.registerResourceModule("azuredevops", "index/serviceendpointVisualstudiomarketplace", _module);
|
|
676
706
|
pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookPermissions", _module);
|
|
677
707
|
pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookStorageQueuePipelines", _module);
|
|
708
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/servicehookWebhookTfs", _module);
|
|
678
709
|
pulumi.runtime.registerResourceModule("azuredevops", "index/taggingPermissions", _module);
|
|
679
710
|
pulumi.runtime.registerResourceModule("azuredevops", "index/team", _module);
|
|
680
711
|
pulumi.runtime.registerResourceModule("azuredevops", "index/teamAdministrators", _module);
|
|
@@ -686,6 +717,9 @@ pulumi.runtime.registerResourceModule("azuredevops", "index/wiki", _module);
|
|
|
686
717
|
pulumi.runtime.registerResourceModule("azuredevops", "index/wikiPage", _module);
|
|
687
718
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workItemQueryPermissions", _module);
|
|
688
719
|
pulumi.runtime.registerResourceModule("azuredevops", "index/workitem", _module);
|
|
720
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemquery", _module);
|
|
721
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemqueryFolder", _module);
|
|
722
|
+
pulumi.runtime.registerResourceModule("azuredevops", "index/workitemtrackingprocessProcess", _module);
|
|
689
723
|
pulumi.runtime.registerResourcePackage("azuredevops", {
|
|
690
724
|
version: utilities.getVersion(),
|
|
691
725
|
constructProvider: (name, type, urn) => {
|