@pulumi/azuredevops 3.15.0-alpha.1779432013 → 3.15.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/getArea.d.ts +6 -6
- package/getArea.js +6 -6
- package/getEnvironment.d.ts +8 -8
- package/getEnvironment.js +8 -8
- package/package.json +2 -2
package/getArea.d.ts
CHANGED
|
@@ -16,11 +16,11 @@ import * as outputs from "./types/output";
|
|
|
16
16
|
* visibility: "private",
|
|
17
17
|
* description: "Managed by Pulumi",
|
|
18
18
|
* });
|
|
19
|
-
* const example =
|
|
20
|
-
* projectId: id,
|
|
19
|
+
* const example = azuredevops.getAreaOutput({
|
|
20
|
+
* projectId: exampleProject.id,
|
|
21
21
|
* path: "/",
|
|
22
22
|
* fetchChildren: false,
|
|
23
|
-
* })
|
|
23
|
+
* });
|
|
24
24
|
* ```
|
|
25
25
|
*
|
|
26
26
|
* ## Relevant Links
|
|
@@ -95,11 +95,11 @@ export interface GetAreaResult {
|
|
|
95
95
|
* visibility: "private",
|
|
96
96
|
* description: "Managed by Pulumi",
|
|
97
97
|
* });
|
|
98
|
-
* const example =
|
|
99
|
-
* projectId: id,
|
|
98
|
+
* const example = azuredevops.getAreaOutput({
|
|
99
|
+
* projectId: exampleProject.id,
|
|
100
100
|
* path: "/",
|
|
101
101
|
* fetchChildren: false,
|
|
102
|
-
* })
|
|
102
|
+
* });
|
|
103
103
|
* ```
|
|
104
104
|
*
|
|
105
105
|
* ## Relevant Links
|
package/getArea.js
CHANGED
|
@@ -44,11 +44,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
44
44
|
* visibility: "private",
|
|
45
45
|
* description: "Managed by Pulumi",
|
|
46
46
|
* });
|
|
47
|
-
* const example =
|
|
48
|
-
* projectId: id,
|
|
47
|
+
* const example = azuredevops.getAreaOutput({
|
|
48
|
+
* projectId: exampleProject.id,
|
|
49
49
|
* path: "/",
|
|
50
50
|
* fetchChildren: false,
|
|
51
|
-
* })
|
|
51
|
+
* });
|
|
52
52
|
* ```
|
|
53
53
|
*
|
|
54
54
|
* ## Relevant Links
|
|
@@ -84,11 +84,11 @@ exports.getArea = getArea;
|
|
|
84
84
|
* visibility: "private",
|
|
85
85
|
* description: "Managed by Pulumi",
|
|
86
86
|
* });
|
|
87
|
-
* const example =
|
|
88
|
-
* projectId: id,
|
|
87
|
+
* const example = azuredevops.getAreaOutput({
|
|
88
|
+
* projectId: exampleProject.id,
|
|
89
89
|
* path: "/",
|
|
90
90
|
* fetchChildren: false,
|
|
91
|
-
* })
|
|
91
|
+
* });
|
|
92
92
|
* ```
|
|
93
93
|
*
|
|
94
94
|
* ## Relevant Links
|
package/getEnvironment.d.ts
CHANGED
|
@@ -20,10 +20,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
20
20
|
* name: "Example Environment",
|
|
21
21
|
* description: "Managed by Pulumi",
|
|
22
22
|
* });
|
|
23
|
-
* const example =
|
|
24
|
-
* projectId:
|
|
25
|
-
* environmentId: Number(
|
|
26
|
-
* })
|
|
23
|
+
* const example = azuredevops.getEnvironmentOutput({
|
|
24
|
+
* projectId: exampleProject.id,
|
|
25
|
+
* environmentId: exampleEnvironment.id.apply(x =>Number(x)),
|
|
26
|
+
* });
|
|
27
27
|
* ```
|
|
28
28
|
*
|
|
29
29
|
* ## Relevant Links
|
|
@@ -90,10 +90,10 @@ export interface GetEnvironmentResult {
|
|
|
90
90
|
* name: "Example Environment",
|
|
91
91
|
* description: "Managed by Pulumi",
|
|
92
92
|
* });
|
|
93
|
-
* const example =
|
|
94
|
-
* projectId:
|
|
95
|
-
* environmentId: Number(
|
|
96
|
-
* })
|
|
93
|
+
* const example = azuredevops.getEnvironmentOutput({
|
|
94
|
+
* projectId: exampleProject.id,
|
|
95
|
+
* environmentId: exampleEnvironment.id.apply(x =>Number(x)),
|
|
96
|
+
* });
|
|
97
97
|
* ```
|
|
98
98
|
*
|
|
99
99
|
* ## Relevant Links
|
package/getEnvironment.js
CHANGED
|
@@ -49,10 +49,10 @@ const utilities = __importStar(require("./utilities"));
|
|
|
49
49
|
* name: "Example Environment",
|
|
50
50
|
* description: "Managed by Pulumi",
|
|
51
51
|
* });
|
|
52
|
-
* const example =
|
|
53
|
-
* projectId:
|
|
54
|
-
* environmentId: Number(
|
|
55
|
-
* })
|
|
52
|
+
* const example = azuredevops.getEnvironmentOutput({
|
|
53
|
+
* projectId: exampleProject.id,
|
|
54
|
+
* environmentId: exampleEnvironment.id.apply(x =>Number(x)),
|
|
55
|
+
* });
|
|
56
56
|
* ```
|
|
57
57
|
*
|
|
58
58
|
* ## Relevant Links
|
|
@@ -89,10 +89,10 @@ exports.getEnvironment = getEnvironment;
|
|
|
89
89
|
* name: "Example Environment",
|
|
90
90
|
* description: "Managed by Pulumi",
|
|
91
91
|
* });
|
|
92
|
-
* const example =
|
|
93
|
-
* projectId:
|
|
94
|
-
* environmentId: Number(
|
|
95
|
-
* })
|
|
92
|
+
* const example = azuredevops.getEnvironmentOutput({
|
|
93
|
+
* projectId: exampleProject.id,
|
|
94
|
+
* environmentId: exampleEnvironment.id.apply(x =>Number(x)),
|
|
95
|
+
* });
|
|
96
96
|
* ```
|
|
97
97
|
*
|
|
98
98
|
* ## Relevant Links
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azuredevops",
|
|
3
|
-
"version": "3.15.0
|
|
3
|
+
"version": "3.15.0",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Azure DevOps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "azuredevops",
|
|
26
|
-
"version": "3.15.0
|
|
26
|
+
"version": "3.15.0"
|
|
27
27
|
}
|
|
28
28
|
}
|